/**
 * Frontend Styles for WoodMart Dynamic Bulk Pricing
 * Compatible with WoodMart theme countdown timer styles
 */

.wd-timer-wrapper {
    margin: 15px 0;
    padding: 15px;
    background: #f5f5f5;
    border-radius: 4px;
    text-align: center;
}

.wd-timer {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.wd-timer-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 60px;
}

.wd-timer-value {
    font-size: 24px;
    font-weight: 700;
    color: #FF6B35;
    line-height: 1.2;
    margin-bottom: 5px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
}

.wd-timer-label {
    font-size: 12px;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.wd-timer-loop {
    margin: 10px 0;
    padding: 10px;
    background: rgba(255, 107, 53, 0.1);
}

.wd-timer-loop .wd-timer-value {
    font-size: 18px;
}

.wd-timer-loop .wd-timer-label {
    font-size: 11px;
}

/* Responsive */
@media (max-width: 768px) {
    .wd-timer {
        gap: 10px;
    }
    
    .wd-timer-item {
        min-width: 50px;
    }
    
    .wd-timer-value {
        font-size: 20px;
    }
    
    .wd-timer-label {
        font-size: 11px;
    }
}

