/* WooCommerce Attractive Countdown Styles */

#wac-countdown-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 20px 0;
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

.wac-timer {
    display: flex;
    gap: 15px;
    background: #ffffff;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.wac-time-unit {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 70px;
}

.wac-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    line-height: 1;
    margin-bottom: 5px;
}

.wac-label {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #777;
    font-weight: 500;
}

/* Responsive adjustments */
@media (max-width: 600px) {
    .wac-timer {
        gap: 10px;
        padding: 15px;
    }

    .wac-number {
        font-size: 1.8rem;
    }

    .wac-label {
        font-size: 0.7rem;
    }

    .wac-time-unit {
        min-width: 50px;
    }
}

/* Optional: Add a subtle animation to the numbers */
@keyframes pulse-soft {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.02);
    }

    100% {
        transform: scale(1);
    }
}

.wac-number {
    animation: pulse-soft 2s infinite ease-in-out;
}

#wac-expired-message {
    font-size: 1.5rem;
    font-weight: bold;
    color: #d9534f;
    /* Red color for expired state */
    margin-top: 10px;
}