/**
 * Stock Importer Frontend Styles
 * 
 * Styles for stock indicators on product pages and listings
 */

/* Stock Indicator Container */
.stock-indicator {
    display: inline-flex;
    align-items: center;
    margin: 10px 0;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.4;
}

.product-small .stock-indicator {
    margin: 10px 0 0 0 !important;
}

/* Stock Indicator Icon */
.stock-indicator-icon {
    display: inline-block;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    margin-right: 8px;
    flex-shrink: 0;
}

.stock-indicator-icon.green {
    background-color: #28a745;
}

/* Custom XML Stock Icon: Green circle with white circle and green dot */
.stock-indicator-icon.xml-icon {
    background-color: #28a745;
    position: relative;
    width: 16px;
    height: 16px;
}

.stock-indicator-icon.xml-icon::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 13px;
    height: 13px;
    background-color: white;
    border-radius: 50%;
}

.stock-indicator-icon.xml-icon::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 9px;
    height: 9px;
    background-color: #28a745;
    border-radius: 50%;
}

.stock-indicator-icon.gray {
    background-color: #6c757d;
}

/* Stock Indicator Text */
.stock-indicator-text {
    color: #333;
    font-family: inherit;
}
.product-small .stock-indicator-text {
    font-size: 12px;
    margin-top: 1px;
}

.stock-indicator.erply-stock .stock-indicator-text {
    color: #28a745;
    font-weight: 600;
}

.stock-indicator.xml-stock .stock-indicator-text {
    color: #28a745;
    font-weight: 600;
}

/* Out of Stock Indicator */
.stock-indicator.out-of-stock .stock-indicator-text {
    font-weight: 600;
    color: #5b5b5b;
}

/* Product Listing Page Styles */
.woocommerce-loop-product__title + .stock-indicator {
    margin-top: 5px;
    margin-bottom: 10px;
}

/* Product Detail Page Styles */
.woocommerce-product-details__short-description + .stock-indicator {
    margin-top: 15px;
    margin-bottom: 15px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .stock-indicator {
        font-size: 13px;
        /* padding: 6px 10px; */
    }
    
    .stock-indicator-icon {
        width: 10px;
        height: 10px;
        margin-right: 6px;
    }
}

/* Stock Breakdown Styles (for admin/debugging) */
.stock-breakdown {
    background: #f8f9fa;
    border: 1px solid #dee2e6;
    border-radius: 4px;
    padding: 15px;
    margin: 15px 0;
}

.stock-breakdown h4 {
    margin-top: 0;
    margin-bottom: 10px;
    color: #495057;
}

.stock-breakdown ul {
    margin: 0;
    padding-left: 20px;
}

.stock-breakdown li {
    margin-bottom: 5px;
    color: #6c757d;
}

.stock-breakdown li:last-child {
    margin-bottom: 0;
    font-weight: bold;
    color: #495057;
}

/* Shortcode Styles */
.stock-indicator-shortcode {
    display: inline-block;
    margin: 5px 0;
}

/* Flatsome Theme Compatibility */
.woocommerce .stock-indicator {
    margin: 10px 0;
}

.woocommerce .stock-indicator-icon {
    vertical-align: middle;
}
