/**
 * CycleSoftware realtime voorraadstatus stijlen.
 */

.rh-cs-stock-status {
    margin: 8px 0 12px;
    font-size: 0.9em;
    font-weight: 600;
    min-height: 1.4em;
    display: flex;
    align-items: center;
    gap: 6px;
}

.rh-cs-stock-status:empty {
    display: none;
}

.rh-cs-stock-instock {
    color: #2e7d32;
}

.rh-cs-stock-instock::before {
    content: '';
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #2e7d32;
    flex-shrink: 0;
}

.rh-cs-stock-outofstock {
    color: #c62828;
}

.rh-cs-stock-outofstock::before {
    content: '';
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #c62828;
    flex-shrink: 0;
}

.rh-cs-loading {
    color: #666;
    font-weight: 400;
}

.rh-cs-loading::before {
    content: '';
    display: inline-block;
    width: 12px;
    height: 12px;
    border: 2px solid #ddd;
    border-top-color: #666;
    border-radius: 50%;
    animation: rh-cs-spin 0.7s linear infinite;
    flex-shrink: 0;
}

@keyframes rh-cs-spin {
    to { transform: rotate(360deg); }
}
