/* =============================================================================
 * Tőzsér Optika — különleges nyitvatartás / közlemény sáv
 * =============================================================================
 *
 * A Beállítások → Nyitvatartás fülön felvett, épp érvényes közlemények
 * jelennek meg minden oldalon a fejléc alatt, amíg a látogató be nem zárja
 * (theme/js/notice.js). A Bootstrap alert-danger alapjaira épül, csak a téma
 * szerinti finomhangolást adja.
 * ========================================================================== */

.site-notice-wrapper {
	padding-top: 18px;
}

.site-notice[hidden] {
	display: none !important;
}

.site-notice {
	position: relative;
	display: flex;
	align-items: flex-start;
	gap: 14px;
	padding: 18px 52px 18px 20px;
	border: 0;
	border-left: 5px solid #b62b3c;
	border-radius: 18px;
	background-color: #fdecee;
	color: #6d1420;
	box-shadow: 0 16px 36px -22px rgba(109, 20, 32, 0.55);
	transition: opacity 0.2s ease, transform 0.2s ease;
}

.site-notice--closing {
	opacity: 0;
	transform: translateY(-6px);
}

.site-notice__icon {
	flex: 0 0 auto;
	margin-top: 2px;
	font-size: 22px;
	color: #b62b3c;
}

.site-notice__body {
	flex: 1 1 auto;
	min-width: 0;
}

.site-notice__title {
	display: block;
	font-size: 18px;
	font-weight: 700;
}

.site-notice__text {
	font-size: 16px;
	line-height: 1.5;
}

.site-notice__close {
	position: absolute;
	top: 10px;
	right: 14px;
	padding: 6px 10px;
	font-size: 26px;
	line-height: 1;
	color: #6d1420;
	opacity: 0.55;
	background: none;
	border: 0;
	cursor: pointer;
	transition: opacity 0.2s ease;
}

.site-notice__close:hover,
.site-notice__close:focus-visible {
	opacity: 1;
}

@media (max-width: 575.98px) {
	.site-notice {
		padding: 16px 46px 16px 16px;
		border-radius: 14px;
	}

	.site-notice__title {
		font-size: 17px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.site-notice {
		transition: none;
	}
}
