/**
 * Public-facing styles for FlashTick Discount Expiry Timer for WooCommerce.
 * All selectors are strictly prefixed to prevent theme conflicts.
 */

.ddct-timer-wrapper {
    margin: 20px 0;
    padding: 15px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    background-color: #fafafa;
    max-width: 400px;
}

.ddct-timer-title {
    font-weight: bold;
    font-size: 14px;
    color: #d9534f; /* Urgent Red color */
    margin: 0 0 10px 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.ddct-countdown {
    display: flex;
    gap: 10px;
}

.ddct-time-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #ffffff;
    border: 1px solid #dcdcdc;
    border-radius: 6px;
    padding: 8px;
    min-width: 60px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.03);
}

.ddct-time-block span {
    font-size: 22px;
    font-weight: 700;
    color: #333333;
    line-height: 1;
}

.ddct-time-block small {
    font-size: 10px;
    color: #777777;
    text-transform: uppercase;
    margin-top: 4px;
    font-weight: 600;
}

.ddct-expired-msg {
    color: #d9534f;
    font-weight: bold;
    margin: 0;
    font-size: 16px;
}