/**
 * Evergreen Countdown - Frontend Styles
 *
 * @package SKS_Evergreen_Countdown
 */

/* Container */
.sks-countdown-container {
    width: 100%;
}

.sks-countdown-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

/* Individual countdown item (box) */
.sks-countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-width: 60px;
}

/* Digits styling */
.sks-countdown-digits {
    display: block;
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    color: #333;
}

/* Label styling */
.sks-countdown-label {
    display: block;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.4;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 5px;
}

/* Expire Message */
.sks-countdown-message {
    width: 100%;
    padding: 20px;
    font-size: 18px;
    font-weight: 500;
}

/* Responsive adjustments */
@media (max-width: 767px) {
    .sks-countdown-digits {
        font-size: 32px;
    }

    .sks-countdown-label {
        font-size: 12px;
    }

    .sks-countdown-item {
        min-width: 50px;
    }
}

@media (max-width: 480px) {
    .sks-countdown-digits {
        font-size: 24px;
    }

    .sks-countdown-label {
        font-size: 10px;
    }

    .sks-countdown-item {
        min-width: 40px;
    }
}