/*
 * Bulk-selling card layout
 * Load this stylesheet after the website's main stylesheet.
 */

/* Regular products keep one full-width cart button. */
.new-product-card:not(.bulk-product-card) .bulk-order-form {
    display: block !important;
    width: 100% !important;
    /* Reserve the Pack-control height used by bulk product cards. */
    margin-top: 30px !important;
}

.new-product-card:not(.bulk-product-card) .new-product-actions,
.new-product-card:not(.bulk-product-card) .new-add-cart {
    display: block !important;
    width: 100% !important;
    max-width: none !important;
    min-width: 0 !important;
    box-sizing: border-box !important;
}

.new-product-card:not(.bulk-product-card) .new-product-actions {
    margin-top: 8px !important;
}

/* Price and stock status share one row on every product card. */
.new-product-card .new-product-footer {
    display: block !important;
}

.new-product-card .new-product-footer > div:first-child {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 10px !important;
    width: 100% !important;
}

.new-product-card .new-product-price {
    margin: 0 !important;
}

.new-product-card .new-product-stock {
    margin: 0 !important;
    white-space: nowrap;
    text-align: right;
}

.new-product-card .new-product-view {
    display: block !important;
    width: max-content !important;
    margin: 5px 0 0 auto !important;
}

/* Bulk products: Pack selector on the left; cart button on the right. */
.bulk-product-card .bulk-order-form {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) !important;
    gap: 8px !important;
    align-items: end !important;
    width: 100% !important;
    box-sizing: border-box !important;
}

.bulk-product-card .bulk-product-controls,
.bulk-product-card .new-product-actions {
    width: 100% !important;
    min-width: 0 !important;
    max-width: none !important;
    margin: 7px 0 0 !important;
    box-sizing: border-box !important;
}

.bulk-product-card .bulk-product-controls {
    grid-column: 1 !important;
    grid-row: 1 !important;
}

.bulk-product-card .new-product-actions {
    grid-column: 2 !important;
    grid-row: 1 !important;
    align-self: end !important;
}

.bulk-product-card .new-add-cart {
    display: block !important;
    width: 100% !important;
    min-width: 0 !important;
    min-height: 36px;
    box-sizing: border-box !important;
}

@media (max-width: 767px) {
    .bulk-product-card .bulk-order-form {
        display: grid !important;
        grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) !important;
        gap: 7px !important;
    }

    .bulk-product-card .bulk-pack-trigger,
    .bulk-product-card .new-add-cart {
        min-height: 38px;
    }
}
