/* Countdown Timer Styles */
.countdown-wrapper {
    background: linear-gradient(45deg, #EF4B25, #FDB016);
    max-width: 550px;
    width: 90%;
    margin: 0 auto;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    position: absolute;
    bottom: -120px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 20;
    text-align: center;
}

.countdown-header {
    margin-bottom: 1.5rem;
}

.countdown-header h2 {
    color: white;
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.countdown-timer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.countdown-item {
    flex: 1;
    padding: 0.5rem;
}

.countdown-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.countdown-label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase;
    font-weight: 500;
}

.countdown-separator {
    font-size: 2rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1;
    margin-top: -1rem;
}

@media (max-width: 767px) {
    .countdown-wrapper {
        padding: 1.5rem;
        bottom: -100px;
    }
    
    .countdown-header h2 {
        font-size: 1.2rem;
    }
    
    .countdown-number {
        font-size: 2rem;
    }
    
    .countdown-label {
        font-size: 0.75rem;
    }
    
    .countdown-separator {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .countdown-wrapper {
        padding: 1rem;
        bottom: -90px;
    }
    
    .countdown-header h2 {
        font-size: 1.1rem;
        margin-bottom: 0.5rem;
    }
    
    .countdown-header {
        margin-bottom: 1rem;
    }
    
    .countdown-number {
        font-size: 1.7rem;
        margin-bottom: 0.3rem;
    }
    
    .countdown-label {
        font-size: 0.7rem;
    }
    
    .countdown-separator {
        font-size: 1.3rem;
        margin-top: -0.5rem;
    }
} 