/**
 * Bigpixel_StockInfo – Storefront Styles
 *
 * Minimal, theme-agnostic styles for the stock-info block.
 * Override or extend in your theme's _module.less / custom CSS.
 */

/* ---- Wrapper ---- */
.bigpixel-stockinfo {
    margin: 10px 0;
}

/* ---- Out of Stock notice ---- */
.bigpixel-stockinfo__oos-notice {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    margin-bottom: 12px;
    border-radius: 4px;
    background-color: #fff3f3;
    border: 1px solid #FF812C;
    color: #FF812C;
    font-weight: 600;
    font-size: 0.9rem;
}

/* ---- Details list ---- */
.bigpixel-stockinfo__details {
    display: table;
    width: auto;
    border-collapse: collapse;
    margin: 0;
    padding: 0;
}

.bigpixel-stockinfo__row {
    display: table-row;
}

.bigpixel-stockinfo__label,
.bigpixel-stockinfo__value {
    display: table-cell;
    padding: 4px 8px 4px 0;
    font-size: 0.9rem;
    line-height: 1.5;
    vertical-align: top;
}

.bigpixel-stockinfo__label {
    font-weight: 600;
    color: #555;
    white-space: nowrap;
    padding-right: 16px;
    float: left;
}

.bigpixel-stockinfo__value {
    color: #333;
}

.product-info-stock-sku .stock.unavailable{
    display: none;
}

.bigpixel-stockinfo__variant-row.bigpixel-stockinfo__variant-row--oos { margin-bottom: 0px; }

.product.alert.stock a { color: #FF812C; }

.bigpixel-stockinfo__variants {
    list-style-type: none;
    padding-left: 0;
    margin-bottom: 1rem;
}

.available-qty-custom{
    display: none;
}

.bigpixel-stockinfo__variants li {
    margin-bottom: 0;
}

.bigpixel-stockinfo .min-qty-notice p { margin-top: 1.25rem;}