/* Free Delivery Popup Styles */
.fdp-container {
	position: fixed;
	inset: 0;
	display: none;
	align-items: center;
	justify-content: center;
	z-index: 10000;
}
.fdp-container[aria-hidden="false"] {
	display: flex;
}
.fdp-overlay {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.5);
	backdrop-filter: saturate(120%) blur(2px);
}
.fdp-modal {
	position: relative;
	z-index: 1;
	background: #fff;
	max-width: 520px;
	width: 92vw;
	border-radius: 10px;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
	overflow: hidden;
}
.fdp-content {
	padding: 26px 22px;
}
.fdp-title {
	margin: 0 0 6px 0;
	font-size: 1.5rem;
	font-weight: 800;
	color: #1a2533;
	text-align: center;
}
.fdp-subtitle {
	margin: 0 0 16px 0;
	text-align: center;
	color: #4b5563;
	font-size: 0.98rem;
}
.fdp-form {
	display: flex;
	gap: 10px;
	align-items: center;
}
.fdp-form input[type="email"] {
	flex: 1;
	padding: 12px 14px;
	border: 1px solid #cbd5e1;
	border-radius: 6px;
	font-size: 15px;
}
.fdp-form input[type="email"]:focus {
	outline: none;
	border-color: #2563eb;
	box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15);
}
.fdp-submit {
	padding: 12px 14px;
	background: #1a2533;
	color: #fff;
	border: 0;
	border-radius: 6px;
	font-weight: 700;
	cursor: pointer;
	white-space: nowrap;
}
.fdp-submit:hover {
	background: #0f1a26;
}
.fdp-error {
	color: #b91c1c;
	font-size: 0.9rem;
	margin: 8px 0 0 0;
}
.fdp-success {
	margin-top: 8px;
	text-align: center;
}
.fdp-success-text {
	margin: 4px 0 10px 0;
	color: #1f2937;
}
.fdp-code-row {
	display: flex;
	gap: 10px;
	align-items: center;
	justify-content: center;
}
.fdp-code {
	display: inline-block;
	padding: 10px 12px;
	background: #f1f5f9;
	border: 1px dashed #64748b;
	border-radius: 6px;
	font-weight: 800;
	letter-spacing: 0.5px;
	color: #0f172a;
}
.fdp-copy {
	padding: 10px 12px;
	border: 1px solid #1a2533;
	background: #fff;
	color: #1a2533;
	border-radius: 6px;
	font-weight: 700;
	cursor: pointer;
}
.fdp-copy:hover {
	background: #f8fafc;
}
.fdp-note {
	margin-top: 8px;
	color: #4b5563;
	font-size: 0.9rem;
}
.fdp-close {
	position: absolute;
	top: 8px;
	right: 8px;
	border: 0;
	background: transparent;
	font-size: 26px;
	line-height: 1;
	color: #475569;
	cursor: pointer;
}

@media (max-width: 480px) {
	.fdp-form {
		flex-direction: column;
		align-items: stretch;
	}
	.fdp-submit {
		width: 100%;
	}
}
