/**
 * WooCommerce Cart Stock Reserve - Styles
 */

.wc-csr-timer {
    font-size: 0.9em;
    color: #ff6b6b;
    margin-top: 5px;
    font-weight: 500;
    line-height: 1.4;
}

.wc-csr-label {
    font-weight: 600;
}

.wc-csr-countdown {
    font-family: 'Courier New', Courier, monospace;
    font-weight: bold;
    font-size: 1.1em;
    letter-spacing: 1px;
}

/* Different states */
.wc-csr-timer.warning {
    color: #ff8c00;
}

.wc-csr-timer.danger {
    color: #d63638;
    animation: pulse 1s infinite;
}

/* Pulse animation for final minutes */
@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.6;
    }
}

/* Mobile responsive */
@media (max-width: 768px) {
    .wc-csr-timer {
        font-size: 0.85em;
        margin-top: 3px;
    }
    
    .wc-csr-countdown {
        font-size: 1em;
    }
}

