#mf-feedback-btn {
	position: fixed;
	bottom: 24px;
	right: 24px;
	z-index: 9999;
	padding: 12px 20px;
	background: #0073aa;
	color: #fff;
	border: none;
	border-radius: 24px;
	font-size: 14px;
	font-weight: 600;
	cursor: pointer;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
	transition: transform 150ms ease, box-shadow 150ms ease;

	@media ( max-width: 400px ) {
		right: 16px;
		bottom: 16px;
	}
}

#mf-feedback-btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

#mf-modal-overlay {
	position: fixed;
	inset: 0;
	background: rgba(0, 0, 0, 0.45);
	z-index: 10000;
	opacity: 0;
	pointer-events: none;
	transition: opacity 200ms ease;
}

#mf-modal-overlay.is-open {
	opacity: 1;
	pointer-events: all;
}

#mf-modal {
	position: fixed;
	bottom: 80px;
	right: 24px;
	width: 460px;
	max-height: 80vh;
	overflow-y: auto;
	background: #fff;
	border-radius: 8px;
	padding: 28px 24px 24px;
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
	transform: translateY(16px);
	transition: transform 200ms ease;

	@media ( max-width: 400px ) {
		bottom: 0;
		right: 0;
		width: 100%;
		border-radius: 8px 8px 0 0;
	}
}

#mf-modal-overlay.is-open #mf-modal {
	transform: translateY(0);
}

#mf-modal-close {
	position: absolute;
	top: 12px;
	right: 14px;
	background: none;
	border: none;
	font-size: 22px;
	line-height: 1;
	cursor: pointer;
	color: #666;
	padding: 0;
}

#mf-modal-close:hover {
	color: #000;
}

#mf-modal-title {
	margin: 0 0 12px;
	font-size: 18px;
}