/* Cuenta Atrás Vintage - Stylesheet */

.cuenta-vintage-container {
	font-family: 'Lora', Georgia, serif;
	margin: 0 auto;
	width: 100% !important;
	box-sizing: border-box;
	text-align: center;
	color: #1a1a1a;
}

.cuenta-vintage-container * {
	box-sizing: border-box;
}

/* Outer frame - Standard mode */
.cuenta-vintage-newspaper-frame {
	background-color: #f4efe6;
	color: #1a1a1a;
	border: 6px double #1a1a1a;
	padding: 25px 30px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
	position: relative;
	transition: all 0.3s ease;
	width: 100% !important;
}

/* Transparent mode */
.cuenta-vintage-transparent {
	background-color: transparent !important;
}

.cuenta-vintage-transparent .cuenta-vintage-newspaper-frame {
	background-color: transparent !important;
	border: none !important;
	padding: 0 !important;
	box-shadow: none !important;
}

/* Header & Dividers */
.cuenta-vintage-header {
	text-align: center;
	margin-bottom: 20px;
	width: 100%;
}

.cuenta-vintage-divider-thick {
	height: 4px;
	background-color: #1a1a1a;
	margin: 8px auto;
	width: 100%;
	max-width: 600px;
}

.cuenta-vintage-divider-thin {
	height: 1px;
	background-color: #1a1a1a;
	margin: 6px auto;
	width: 100%;
	max-width: 600px;
}

.cuenta-vintage-title {
	font-family: 'Playfair Display', serif;
	font-size: 1.6rem;
	font-weight: 900;
	margin: 0;
	letter-spacing: 1px;
	text-transform: uppercase;
	line-height: 1.2;
}

.cuenta-vintage-subtitle {
	font-family: 'Lora', Georgia, serif;
	font-size: 0.95rem;
	font-weight: 700;
	margin: 5px 0;
	letter-spacing: 2px;
	text-transform: uppercase;
}

/* Countdown Display (Boxed layout - default) */
.cuenta-vintage-display {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 15px;
	flex-wrap: wrap; /* Auto apilado en columnas muy estrechas */
	width: 100%;
	margin: 15px 0;
}

/* Boxed Layout Style */
.cuenta-vintage-layout-boxed .cuenta-vintage-unit-box {
	border: 2px solid #1a1a1a;
	padding: 12px 18px;
	min-width: 90px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	background-color: transparent;
	transition: all 0.2s ease;
}

.cuenta-vintage-layout-boxed .cuenta-vintage-number {
	font-family: 'Playfair Display', serif;
	font-size: 2.5rem;
	font-weight: 900;
	line-height: 1;
	letter-spacing: 1px;
	color: #1a1a1a;
}

.cuenta-vintage-layout-boxed .cuenta-vintage-divider-unit {
	height: 1px;
	background-color: #1a1a1a;
	width: 100%;
	margin: 6px 0;
}

.cuenta-vintage-layout-boxed .cuenta-vintage-label {
	font-family: 'Lora', Georgia, serif;
	font-size: 0.75rem;
	font-weight: bold;
	text-transform: uppercase;
	letter-spacing: 1px;
	color: #1a1a1a;
}

/* Inline Layout Style */
.cuenta-vintage-layout-inline .cuenta-vintage-display {
	display: inline-flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
	gap: 8px 12px;
	font-family: 'Playfair Display', serif;
	font-size: 1.8rem;
	font-weight: 900;
	text-transform: uppercase;
}

.cuenta-vintage-layout-inline .cuenta-vintage-unit-box {
	display: flex;
	align-items: baseline;
	gap: 6px;
	border: none !important;
	background: transparent !important;
	padding: 0 !important;
}

.cuenta-vintage-layout-inline .cuenta-vintage-number {
	color: #1a1a1a;
}

.cuenta-vintage-layout-inline .cuenta-vintage-divider-unit {
	display: none !important;
}

.cuenta-vintage-layout-inline .cuenta-vintage-label {
	font-family: 'Lora', Georgia, serif;
	font-size: 0.95rem;
	font-weight: bold;
	color: #1a1a1a;
}

/* Separator between elements in inline layout */
.cuenta-vintage-layout-inline .cuenta-vintage-unit-box:not(:last-child)::after {
	content: '•';
	margin-left: 12px;
	opacity: 0.6;
	color: #1a1a1a;
}

/* Footer Section */
.cuenta-vintage-footer-line {
	margin-top: 15px;
	text-align: center;
	width: 100%;
}

.cuenta-vintage-footer-text {
	font-size: 0.75rem;
	font-style: italic;
	letter-spacing: 1px;
	opacity: 0.7;
}

/* Expired Message */
.cuenta-vintage-expired-msg {
	width: 100%;
	padding: 15px 0;
}

.cuenta-vintage-expired-title {
	font-family: 'Playfair Display', serif;
	font-size: 1.6rem;
	font-weight: 900;
	margin: 0;
	color: #1a1a1a;
	text-transform: uppercase;
	letter-spacing: 1px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
	.cuenta-vintage-title {
		font-size: 1.4rem;
	}

	.cuenta-vintage-layout-boxed .cuenta-vintage-number {
		font-size: 2.2rem;
	}
	
	.cuenta-vintage-layout-inline .cuenta-vintage-display {
		font-size: 1.5rem;
	}
}

@media (max-width: 480px) {
	.cuenta-vintage-display {
		gap: 10px;
	}

	.cuenta-vintage-layout-boxed .cuenta-vintage-unit-box {
		padding: 8px 12px;
		min-width: 75px;
	}

	.cuenta-vintage-layout-boxed .cuenta-vintage-number {
		font-size: 1.8rem;
	}

	.cuenta-vintage-layout-boxed .cuenta-vintage-label {
		font-size: 0.65rem;
	}
	
	.cuenta-vintage-layout-inline .cuenta-vintage-display {
		font-size: 1.2rem;
	}
}
