/**
 * CC Stock Display - CSS Styles
 * Stock quantity display next to quantity selector
 */

/* Container for stock display */
.cc-stock-display {
    display: flex;
    align-items: center;
    margin-top: 10px;
    margin-bottom: 10px;
    padding: 8px 0;
    text-align: left;
}

/* Stock info wrapper positioned next to quantity */
.cc-stock-info {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 14px;
    color: #333;
    text-align: left;
}

/* Stock label */
.cc-stock-label {
    font-weight: 500;
    color: #666;
}

/* Stock quantity number */
.cc-stock-quantity {
    font-weight: 700;
    color: #4caf50;
}

/* Low stock warning */
.cc-stock-quantity.cc-low-stock {
    color: #ff9800;
}

/* Very low stock (critical) */
.cc-stock-quantity.cc-critical-stock {
    color: #f44336;
}

/* Out of stock */
.cc-stock-quantity.cc-out-of-stock {
    color: #9e9e9e;
}

/* Units label */
.cc-stock-units {
    color: #666;
    font-weight: 400;
}

/* Make it work inline with quantity selector */
.product-quantity .cc-stock-display {
    margin-left: 15px;
    margin-top: 0;
    margin-bottom: 0;
}

/* Responsive adjustments */
@media (max-width: 767px) {
    .cc-stock-display {
        margin-top: 8px;
        margin-left: 0;
        justify-content: flex-start;
    }
    
    .cc-stock-info {
        font-size: 13px;
    }
}
