/* DFX Halloween Shipping Banner — top-of-page urgency strip. */

.dfx-hb {
	position: relative;
	background: #7B2727; /* Oxblood — the one bold/urgency color in the palette */
	color: #EEE7DA; /* Paper */
	z-index: 9999;
}

.dfx-hb__inner,
a.dfx-hb__inner {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: .4em;
	max-width: 1240px;
	margin: 0 auto;
	padding: .7em 2.4em; /* right padding clears the close button */
	color: #EEE7DA;
	text-decoration: none;
	font-family: 'Montserrat', sans-serif;
	font-size: .85rem;
	font-weight: 500;
	letter-spacing: .01em;
	text-align: center;
	flex-wrap: wrap;
}

a.dfx-hb__inner:hover,
a.dfx-hb__inner:focus-visible {
	text-decoration: underline;
}

.dfx-hb__sub {
	opacity: .8;
	font-weight: 400;
}

.dfx-hb__close {
	position: absolute;
	top: 50%;
	right: .6em;
	transform: translateY(-50%);
	background: transparent;
	border: 0;
	color: #EEE7DA;
	opacity: .75;
	font-size: 1.3rem;
	line-height: 1;
	cursor: pointer;
	padding: .2em .4em;
}

.dfx-hb__close:hover,
.dfx-hb__close:focus-visible {
	opacity: 1;
}

@media (max-width: 600px) {
	.dfx-hb__inner {
		font-size: .78rem;
		padding: .65em 2em;
	}
	.dfx-hb__sub {
		display: block;
		width: 100%;
	}
}
