/*
 * HANIWA Store Enhancements — announcement bar only.
 *
 * This is the one stylesheet that loads site-wide, so it is kept to the bar
 * itself and the custom properties it needs. Everything else (modal, product
 * info block, category navigation) lives in frontend.css and loads only on the
 * pages that use it.
 */

:root {
	--hse-announce-height: 34px;
}

/* ------------------------------------------------------------------
 * Announcement bar
 * --------------------------------------------------------------- */

.hse-announce {
	box-sizing: border-box;
	width: 100%;
	max-width: 100%;
	margin: 0;
	padding: 9px 16px;
	background: var(--hse-announce-bg, #111111);
	color: var(--hse-announce-ink, #ffffff);
	text-align: center;
	position: relative;
	z-index: 1;
}

.hse-announce__text {
	margin: 0;
	padding: 0;
	font-family: inherit;
	font-size: 11px;
	font-weight: 400;
	line-height: 1.4;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: inherit;
}

.hse-announce--pending[hidden] {
	display: none;
}

@media (max-width: 480px) {
	:root {
		--hse-announce-height: 32px;
	}

	.hse-announce {
		padding: 8px 12px;
	}

	.hse-announce__text {
		font-size: 10px;
		letter-spacing: 0.11em;
	}
}
