@keyframes norx-marketing-fade-in {
	from { opacity: 0; }
	to { opacity: 1; }
}

@keyframes norx-marketing-slide-down {
	from { opacity: 0; transform: translateY(-100%); }
	to { opacity: 1; transform: none; }
}

.norx-announcement[hidden],
.norx-interstitial[hidden] {
	display: none;
}

.norx-announcement {
	position: relative;
	background: var(--norx-footer);
	color: rgba(255, 255, 255, 0.88);
	font-size: 13px;
	animation: norx-marketing-slide-down 0.35s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.norx-announcement__inner {
	position: relative;
	display: flex;
	flex-wrap: wrap;
	gap: 6px 10px;
	align-items: center;
	justify-content: center;
	padding: 11px 42px;
	text-align: center;
}

.norx-announcement a {
	color: var(--norx-accent);
	font-weight: 600;
	text-decoration: none;
	white-space: nowrap;
}

.norx-announcement a:hover,
.norx-announcement a:focus-visible {
	color: var(--norx-promotion-link-hover);
	text-decoration: underline;
	text-underline-offset: 3px;
}

.norx-announcement__dismiss {
	position: absolute;
	right: 16px;
	width: 28px;
	height: 28px;
	padding: 0;
	border: 0;
	background: transparent;
	color: currentColor;
	font: inherit;
	font-size: 17px;
	line-height: 1;
	cursor: pointer;
	opacity: 0.65;
}

.norx-announcement__dismiss:hover,
.norx-announcement__dismiss:focus-visible {
	opacity: 1;
}

.norx-announcement--sale {
	background: var(--norx-promotion);
	color: var(--norx-surface);
}

.norx-announcement--sale .norx-announcement__message {
	font-weight: 700;
	letter-spacing: 0.06em;
}

.norx-announcement--sale a {
	color: var(--norx-surface);
	text-decoration: underline;
	text-underline-offset: 3px;
}

.norx-announcement--fulfillment {
	background: var(--norx-fulfillment-bg);
	color: var(--norx-fulfillment-text);
}

.norx-announcement--fulfillment a,
.norx-announcement--fulfillment a:hover,
.norx-announcement--fulfillment a:focus-visible {
	color: var(--norx-fulfillment-text);
}

.norx-announcement__status {
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: var(--norx-fulfillment-status);
}

.norx-announcement--loyalty {
	background: var(--norx-loyalty-bg);
	color: var(--norx-loyalty-text);
}

.norx-announcement--loyalty a,
.norx-announcement--loyalty a:hover,
.norx-announcement--loyalty a:focus-visible {
	color: var(--norx-loyalty-text);
}

body.norx-interstitial-open {
	overflow: hidden;
}

.norx-interstitial {
	position: fixed;
	inset: 0;
	z-index: 10000;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: auto;
	padding: clamp(44px, 9vw, 64px) clamp(18px, 5vw, 28px) clamp(40px, 8vw, 48px);
	background: var(--norx-promotion);
	color: var(--norx-surface);
	animation: norx-marketing-fade-in 0.3s ease;
}

.norx-interstitial__close {
	position: absolute;
	top: 22px;
	right: 26px;
	display: flex;
	gap: 8px;
	align-items: center;
	padding: 6px;
	border: 0;
	background: transparent;
	color: rgba(255, 255, 255, 0.78);
	font: inherit;
	font-size: 13px;
	font-weight: 600;
	cursor: pointer;
}

.norx-interstitial__close span {
	font-size: 18px;
	line-height: 1;
}

.norx-interstitial__content {
	display: flex;
	width: min(100%, 620px);
	flex-direction: column;
	gap: 20px;
	text-align: center;
}

.norx-interstitial__eyebrow {
	align-self: center;
	margin: 0;
	padding: 6px 14px;
	border: 1px solid rgba(255, 255, 255, 0.4);
	border-radius: 20px;
	font-size: 11.5px;
	font-weight: 700;
	letter-spacing: 0.2em;
}

.norx-interstitial h2 {
	margin: 0;
	font-family: var(--norx-font-display);
	font-size: clamp(38px, 10vw, 74px);
	font-weight: 800;
	letter-spacing: -3.2px;
	line-height: 0.94;
}

.norx-interstitial__body {
	align-self: center;
	max-width: 46ch;
	margin: 0;
	color: rgba(255, 255, 255, 0.86);
	font-size: clamp(15px, 2.2vw, 17px);
	line-height: 1.55;
}

.norx-interstitial__countdown {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	align-self: center;
	justify-content: center;
}

.norx-interstitial__countdown > div {
	display: flex;
	min-width: 68px;
	flex-direction: column;
	align-items: center;
	padding: 12px 18px;
	border-radius: 10px;
	background: rgba(0, 0, 0, 0.18);
}

.norx-interstitial__countdown span {
	font-family: var(--norx-font-display);
	font-size: 26px;
	font-weight: 800;
	letter-spacing: -0.5px;
}

.norx-interstitial__countdown small {
	margin-top: 2px;
	font-size: 10.5px;
	letter-spacing: 0.12em;
	opacity: 0.7;
}

.norx-interstitial__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	align-self: center;
	justify-content: center;
	margin-top: 8px;
}

.norx-interstitial__primary,
.norx-interstitial__secondary {
	padding: 15px 28px;
	border-radius: 9px;
	font: inherit;
	font-size: 15px;
	font-weight: 700;
	text-decoration: none;
	cursor: pointer;
}

.norx-interstitial__primary {
	padding-inline: 32px;
	border: 1px solid var(--norx-surface);
	background: var(--norx-surface);
	color: var(--norx-promotion);
}

.norx-interstitial__secondary {
	border: 1px solid rgba(255, 255, 255, 0.45);
	background: transparent;
	color: var(--norx-surface);
	font-weight: 600;
}

.norx-interstitial__primary:hover,
.norx-interstitial__primary:focus-visible,
.norx-interstitial__secondary:hover,
.norx-interstitial__secondary:focus-visible {
	transform: translateY(-1px);
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.16);
}

.norx-interstitial__legal {
	margin: 6px 0 0;
	color: rgba(255, 255, 255, 0.6);
	font-size: 11.5px;
}

@media (max-width: 700px) {
	.norx-announcement__inner {
		padding-block: 11px;
	}

	.norx-interstitial__close {
		top: 12px;
		right: 12px;
	}

	.norx-interstitial h2 {
		font-size: clamp(38px, 15vw, 58px);
		letter-spacing: -2.2px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.norx-announcement,
	.norx-interstitial {
		animation: none;
	}
}
