/* Home screening notice — matches legal/CTA modal spec (navy, sharp corners, centered) */

.specials-modal {
	position: fixed;
	inset: 0;
	/* Above consent overlays (Osano, etc.) */
	z-index: 2147483600;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 1.5rem;
	box-sizing: border-box;
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.35s ease;
}

.specials-modal.is-open {
	opacity: 1;
	pointer-events: auto;
}

.specials-modal__backdrop {
	position: absolute;
	inset: 0;
	background: rgba(15, 23, 42, 0.85);
	cursor: pointer;
}

.specials-modal__box {
	position: relative;
	z-index: 1;
	width: 100%;
	width: 526px;
    max-width: calc(100% - 70px);
	background: var(--beige);
	padding: 49px 70px;
	box-sizing: border-box;
	border-radius: 0;
	box-shadow: none;
}
@media only screen and (max-width: 961px){
	.specials-modal__box{
		padding: 30px 40px;
	}
}
.specials-modal__close {
	position: absolute;
	top: 1rem;
	right: 1rem;
	width: 36px;
	height: 36px;
	padding: 0;
	margin: 0;
	border: none;
	background: transparent;
	color: var(--dark-green);
	font-size: 24px;
	line-height: 1;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
}

.specials-modal__close:hover,
.specials-modal__close:focus {
	color: var(--dark-green);
}



.specials-modal__title {
	margin-bottom: 20px;
	text-align: center;
	font-weight: 700;
	font-size: 45px;
	text-transform: uppercase;
	color: var(--dark-green);
	font-family: var(--playfair-font);
}

.specials-modal__text,.specials-modal__box p {
	margin: 0 0 1.75rem;
	text-align: center;
	color: var(--dark-green);
	font-size: 16px;
	font-family: var(--meta-pro-font);
	font-weight: 500;
	line-height: 1.3;
	text-align: center;
}

.specials-modal__cta {
	display: block;
	width: 100%;
	box-sizing: border-box;
	padding: 1rem 1.25rem;
	text-align: center;
	font-family: var(--rubric-font);
	font-size: 16px;
	letter-spacing: .2em;
	font-weight: 400;
	text-transform: uppercase;
	text-decoration: none;
	background-color: var(--rust);
    color: var(--beige);
	border: 1px solid var(--rust);
	border-radius: 0;
	cursor: pointer;
	transition: background 0.15s ease, color 0.15s ease;
	margin-top: 20px;
}
.specials-modal__cta:hover,
.specials-modal__cta:focus {
		background: var(--beige);
		color: var(--rust);
}

