/* Responsive countdown timer styles */
.gft-countdown-container {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: clamp(10px, 3vw, 20px);
    background-color: #f9f9f9;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.gft-countdown {
    display: flex;
    gap: clamp(8px, 2vw, 20px);
    text-align: center;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
}

.gft-countdown-item {
    background-color: #C61620;
    color: #fff;
    padding: clamp(10px, 2vw, 20px);
    border-radius: 10px;
    flex: 1;
    min-width: min(calc(25% - 15px), 150px);
    max-width: 200px;
}

.gft-countdown-number {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    font-weight: bold;
    display: block;
    line-height: 1.2;
}

.gft-countdown-label {
    font-size: clamp(0.75rem, 2vw, 1rem);
    text-transform: uppercase;
    display: block;
    margin-top: 5px;
}

/* Mobile-specific adjustments */
@media screen and (max-width: 600px) {
    .gft-countdown {
        gap: 10px;
    }
    
    .gft-countdown-item {
        min-width: calc(50% - 10px);
        padding: 15px 10px;
    }
}

/* Extra small screens */
@media screen and (max-width: 320px) {
    .gft-countdown-item {
        min-width: 100%;
        margin-bottom: 10px;
    }
}