/* Aviso de vacaciones */
.vacation-banner-overlay {
	display: none;
	position: fixed;
	inset: 0;
	z-index: 99999;
	align-items: center;
	justify-content: center;
	padding: 1rem;
}

.vacation-banner-overlay--visible {
	display: flex;
}

body.vacation-banner-open {
	overflow: hidden;
}

.vacation-banner-backdrop {
	position: absolute;
	inset: 0;
	z-index: 1;
	background: rgba(0, 0, 0, 0.82);
}

.vacation-banner-dialog {
	position: relative;
	z-index: 2;
	max-width: min(520px, 92vw);
	max-height: 90vh;
}

.vacation-banner-image {
	display: block;
	position: relative;
	z-index: 2;
	width: 100%;
	height: auto;
	max-height: 85vh;
	object-fit: contain;
	border-radius: 6px;
	box-shadow: 0 12px 40px rgba(0, 0, 0, 0.45);
}

.vacation-banner-close {
	position: absolute;
	top: -0.75rem;
	right: -0.75rem;
	z-index: 3;
	width: 2.5rem;
	height: 2.5rem;
	border: 0;
	border-radius: 50%;
	background: #85ab00;
	color: #fff;
	font-size: 1.75rem;
	line-height: 1;
	cursor: pointer;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.35);
}

.vacation-banner-close:hover {
	background: #9bc400;
}

@media (max-width: 768px) {
	.vacation-banner-dialog {
		max-width: 95vw;
	}

	.vacation-banner-close {
		top: 0.25rem;
		right: 0.25rem;
	}
}
