/**
 * NJ Collectables — product bottom CMS band (mgs_product_detail_bottom_block)
 * Placed in .page-bottom (before footer). Full viewport bleed for the dark band background.
 * @see app/design/frontend/Mgs/claue_child/Magento_Catalog/layout/catalog_product_view.xml
 */
.njc-product-detail-bottom-wrap {
    clear: both;
    box-sizing: border-box;
    /* Break out of centered parent to full viewport width (avoids most horizontal scrollbar issues) */
    width: 100vw;
    max-width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    /* Gutters so CMS content does not stick to the screen edge */
    padding-left: 15px;
    padding-right: 15px;
}

@media (min-width: 768px) {
    .njc-product-detail-bottom-wrap {
        padding-left: 20px;
        padding-right: 20px;
    }
}

/* MGS “frame” caps width; keep inner grid full width of the bleed wrapper */
.njc-product-detail-bottom-wrap .frame,
.njc-product-detail-bottom-wrap .frame.no-padding {
    max-width: none;
    width: 100%;
}
