.promo-timer-banner {
    background: linear-gradient(135deg, #FF6B6B 0%, #FF8E53 50%, #FFA94D 100%);
    color: white;
    padding: 20px 15px;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(255,107,107,0.3);
}

.promo-timer-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255,255,255,0.1), transparent);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

.timer-heading {
    margin: 0 0 10px 0;
    font-size: 28px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
    position: relative;
    z-index: 1;
}

.timer-subheading {
    font-size: 18px;
    margin: 0 0 15px 0;
    font-weight: 600;
    position: relative;
    z-index: 1;
}

.countdown-container {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    margin: 15px 0;
    position: relative;
    z-index: 1;
}

.countdown-box {
    background: rgba(255,255,255,0.95);
    color: #FF6B6B;
    padding: 15px 20px;
    border-radius: 12px;
    min-width: 80px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    animation: pulse-box 2s ease-in-out infinite;
}

@keyframes pulse-box {
    0%, 100% { transform: scale(1); box-shadow: 0 4px 12px rgba(0,0,0,0.15); }
    50% { transform: scale(1.05); box-shadow: 0 6px 20px rgba(255,107,107,0.4); }
}

.countdown-number {
    display: block;
    font-size: 36px;
    font-weight: 900;
    line-height: 1;
    font-family: 'Inter', sans-serif;
}

.countdown-label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    margin-top: 5px;
    color: #666;
}

.timer-cta {
    margin-top: 15px;
    font-size: 14px;
    font-weight: 500;
    position: relative;
    z-index: 1;
}

.timer-cta-btn {
    background: white;
    color: #FF6B6B;
    padding: 12px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 700;
    display: inline-block;
    margin: 10px 5px 0;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.timer-cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(0,0,0,0.3);
    color: #FF6B6B;
    text-decoration: none;
}

@media (max-width: 768px) {
    .timer-heading { font-size: 22px; }
    .timer-subheading { font-size: 16px; }
    .countdown-number { font-size: 28px; }
    .countdown-box { min-width: 65px; padding: 12px 15px; }
}



