/* ===================== PROMO BANNER ===================== */
.promo-banner {
	position: relative;
	height: 380px;
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
}

.promo-banner-bg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-size: cover;
	background-position: center;
}

.promo-banner-bg img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.promo-banner-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(135deg, rgba(26, 26, 46, 0.8) 0%, rgba(176, 123, 172, 0.5) 100%);
}

.promo-content {
	position: relative;
	z-index: 2;
	text-align: center;
	color: #fff;
	padding: 24px;
	max-width: 700px;
}

.promo-badge {
	display: inline-block;
	background: linear-gradient(135deg, #e74c3c, #c0392b);
	color: #fff;
	font-size: 14px;
	font-weight: 700;
	padding: 6px 20px;
	border-radius: var(--radius-xl);
	margin-bottom: 20px;
	animation: promoPulse 2s ease-in-out infinite;
}

.promo-badge i {
	margin-left: 6px;
}

.promo-title {
	font-size: clamp(26px, 4vw, 40px);
	font-weight: 900;
	margin-bottom: 12px;
	color: #fff;
	line-height: 1.3;
}

.promo-desc {
	font-size: 16px;
	color: rgba(255, 255, 255, 0.85);
	margin-bottom: 24px;
}

.promo-countdown {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
	margin-bottom: 28px;
	direction: ltr;
	flex-wrap: wrap;
}

.countdown-item {
	background: rgba(255, 255, 255, 0.15);
	backdrop-filter: blur(10px);
	border: 1px solid rgba(255, 255, 255, 0.2);
	border-radius: var(--radius-md);
	padding: 12px 16px;
	min-width: 70px;
	text-align: center;
}

.countdown-value {
	font-size: 28px;
	font-weight: 900;
	color: #fff;
	line-height: 1;
}

.countdown-label {
	font-size: 11px;
	color: rgba(255, 255, 255, 0.7);
	margin-top: 4px;
}

.countdown-separator {
	font-size: 24px;
	font-weight: 700;
	color: rgba(255, 255, 255, 0.5);
	margin-top: -8px;
}

.countdown-expired {
	font-size: 18px;
	font-weight: 700;
	color: #fff;
	background: rgba(231, 76, 60, 0.5);
	padding: 14px 28px;
	border-radius: var(--radius-xl);
	display: inline-block;
	margin-bottom: 24px;
}
