/* First Order Discount – guest signup popup */

/* Keep the overlay fully out of the page (and non-interactive) until shown. */
.fod-popup-overlay[hidden] {
	display: none;
}

.fod-popup-overlay {
	position: fixed;
	inset: 0;
	z-index: 100000;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 20px;
	background: rgba( 0, 0, 0, 0.6 );
	opacity: 0;
	/* Never intercept clicks unless actively shown, even mid-transition. */
	pointer-events: none;
	transition: opacity 0.25s ease;
}

.fod-popup-overlay.fod-popup--visible {
	opacity: 1;
	pointer-events: auto;
}

.fod-popup {
	position: relative;
	box-sizing: border-box;
	width: 100%;
	max-width: 420px;
	padding: 32px 28px;
	border-radius: 10px;
	background: #fff;
	box-shadow: 0 12px 40px rgba( 0, 0, 0, 0.25 );
	text-align: center;
	transform: translateY( 12px );
	transition: transform 0.25s ease;
}

.fod-popup-overlay.fod-popup--visible .fod-popup {
	transform: translateY( 0 );
}

.fod-popup__close {
	position: absolute;
	top: 8px;
	right: 12px;
	padding: 4px;
	border: 0;
	background: none;
	color: #888;
	font-size: 26px;
	line-height: 1;
	cursor: pointer;
}

.fod-popup__close:hover {
	color: #222;
}

.fod-popup__title {
	margin: 0 0 12px;
	font-size: 1.5em;
}

.fod-popup__message {
	margin: 0 0 22px;
	font-size: 1.05em;
	line-height: 1.5;
}

.fod-popup__button {
	display: inline-block;
	padding: 12px 26px;
	border-radius: 6px;
	background: #82af35;
	color: #fff;
	font-weight: 600;
	text-decoration: none;
}

.fod-popup__button:hover,
.fod-popup__button:focus {
	background: #6c9129;
	color: #fff;
}
