.bfs-feedback-wrapper {
	margin: 40px 0 20px;
	padding: 30px;
	background: #f9f9fb;
	border: 1px solid #e5e5ea;
	border-radius: 10px;
	max-width: 700px;
}

.bfs-title {
	margin: 0 0 20px;
	font-size: 20px;
	text-align: center;
}

.bfs-emoji-group {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 12px;
	margin-bottom: 25px;
}

.bfs-emoji-option {
	display: flex;
	flex-direction: column;
	align-items: center;
	cursor: pointer;
	padding: 10px 14px;
	border-radius: 8px;
	border: 2px solid transparent;
	transition: all 0.2s ease;
}

.bfs-emoji-option:hover {
	background: #eee;
}

.bfs-emoji-option input[type="radio"] {
	position: absolute;
	opacity: 0;
	width: 0;
	height: 0;
}

.bfs-emoji-option input[type="radio"]:checked + .bfs-emoji {
	transform: scale(1.3);
}

.bfs-emoji-option:has(input[type="radio"]:checked) {
	border-color: #6c63ff;
	background: #eeeeff;
}

.bfs-emoji {
	font-size: 32px;
	transition: transform 0.2s ease;
}

.bfs-emoji-label {
	margin-top: 6px;
	font-size: 12px;
	color: #555;
}

.bfs-questions {
	margin-bottom: 20px;
}

.bfs-question {
	margin-bottom: 16px;
}

.bfs-question-text {
	font-weight: 600;
	margin: 0 0 8px;
	font-size: 14px;
}

.bfs-radio-row {
	display: flex;
	gap: 20px;
	flex-wrap: wrap;
	font-size: 14px;
}

.bfs-radio-row label {
	display: flex;
	align-items: center;
	gap: 6px;
	cursor: pointer;
}

.bfs-message-group {
	margin-bottom: 16px;
	display: flex;
	flex-direction: column;
}

.bfs-message-group label {
	font-weight: 600;
	margin-bottom: 8px;
	font-size: 14px;
}

.bfs-message-group textarea {
	width: 100%;
	padding: 10px;
	border-radius: 6px;
	border: 1px solid #ccc;
	font-family: inherit;
	font-size: 14px;
	resize: vertical;
	box-sizing: border-box;
}

.bfs-contact-group {
	display: flex;
	gap: 12px;
	margin-bottom: 20px;
	flex-wrap: wrap;
}

.bfs-contact-group input {
	flex: 1;
	min-width: 200px;
	padding: 10px;
	border-radius: 6px;
	border: 1px solid #ccc;
	font-size: 14px;
	box-sizing: border-box;
}

.bfs-submit-btn {
	background: #6c63ff;
	color: #fff;
	border: none;
	padding: 12px 28px;
	border-radius: 6px;
	font-size: 15px;
	cursor: pointer;
	transition: background 0.2s ease;
}

.bfs-submit-btn:hover {
	background: #574fd6;
}

.bfs-submit-btn:disabled {
	background: #aaa;
	cursor: not-allowed;
}

.bfs-response-message {
	margin-top: 15px;
	padding: 12px;
	border-radius: 6px;
	font-size: 14px;
}

.bfs-response-message.bfs-success {
	background: #e6f7ec;
	color: #1a7f37;
	border: 1px solid #b7e4c7;
}

.bfs-response-message.bfs-error {
	background: #fdecea;
	color: #c62828;
	border: 1px solid #f5b7b1;
}

@media (max-width: 600px) {
	.bfs-feedback-wrapper {
		padding: 18px;
	}
	.bfs-emoji {
		font-size: 26px;
	}
}
