/* Bizzio Product Metric Display Styles */

/* Inline display with price */
.bizzio-metric-inline {
    font-size: 0.85em;
    color: #666;
    font-weight: 500;
    margin-left: 3px;
}

/* Make inline metric more subtle */
.woocommerce-Price-amount .bizzio-metric-inline {
    opacity: 0.85;
}

/* Separate block display (default) */
.bizzio-product-metric {
    margin: 15px 0;
    padding: 8px 15px;
    background: #f8f9fa;
    border-left: 3px solid #2c3e50;
    display: inline-block;
    border-radius: 4px;
}

.bizzio-product-metric .metric-label {
    font-size: 14px;
    font-weight: 600;
    color: #2c3e50;
    letter-spacing: 0.3px;
}

/* Variant: After price positioning */
.woocommerce div.product .bizzio-product-metric {
    margin-top: 10px;
    margin-bottom: 20px;
}

/* Variant: Before/After quantity */
.woocommerce div.product form.cart .bizzio-product-metric {
    width: 100%;
    margin: 10px 0;
}

/* Theme compatibility: Betheme */
.single-product .product_meta_simple .bizzio-product-metric {
    margin: 10px 0;
}

/* Theme compatibility: Flatsome */
.product-info .bizzio-product-metric {
    margin: 15px 0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .bizzio-product-metric {
        width: 100%;
        text-align: center;
        margin: 15px 0;
    }
    
    .bizzio-product-metric .metric-label {
        font-size: 13px;
    }
}

/* Alternative style: Minimal */
.bizzio-product-metric.style-minimal {
    background: transparent;
    border: none;
    padding: 5px 0;
}

.bizzio-product-metric.style-minimal .metric-label {
    color: #666;
    font-weight: 500;
}

/* Alternative style: Badge */
.bizzio-product-metric.style-badge {
    background: #2c3e50;
    border: none;
    border-radius: 20px;
    padding: 6px 16px;
}

.bizzio-product-metric.style-badge .metric-label {
    color: #ffffff;
    font-size: 12px;
    text-transform: uppercase;
}

/* Alternative style: Outline */
.bizzio-product-metric.style-outline {
    background: transparent;
    border: 2px solid #2c3e50;
    border-radius: 4px;
}

.bizzio-product-metric.style-outline .metric-label {
    color: #2c3e50;
}
