/**
 * Tegral Shop Bulk Display - Shop page styles
 *
 * @package TegralShopBulkDisplay
 */

/* Bulk price container */
.tsbd-bulk-price {
    display: inline-block;
    font-weight: 600;
    color: #333;
    line-height: 1.4;
}

.tsbd-bulk-price .woocommerce-Price-amount {
    color: #333;
    font-size: 16px;
    font-weight: 700;
}

/* "From" label */
.tsbd-from {
    display: inline-block;
    background: #fc5c04;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    padding: 1px 6px;
    border-radius: 3px;
    letter-spacing: 0.5px;
    vertical-align: middle;
    margin-right: 2px;
}

/* "ex GST" label */
.tsbd-gst {
    color: #888;
    font-size: 12px;
    font-weight: 400;
}

/* "Inc GST" line */
.tsbd-inc-gst {
    display: block;
    font-size: 12px;
    font-weight: 400;
    color: #666;
    margin-top: 2px;
}

.tsbd-inc-gst .woocommerce-Price-amount {
    font-size: 12px;
    font-weight: 400;
    color: #666;
}

/* Compatibility with theme product grid */
.product-list .price .tsbd-bulk-price {
    display: inline-block;
}

.woocommerce ul.products li.product .price .tsbd-bulk-price,
.woocommerce-page ul.products li.product .price .tsbd-bulk-price {
    display: inline-block;
}

/* Responsive */
@media screen and (max-width: 768px) {
    .tsbd-bulk-price .woocommerce-Price-amount {
        font-size: 14px;
    }

    .tsbd-from {
        font-size: 10px;
        padding: 1px 4px;
    }
}
