/* Full-width layout for Rock Creek Memorabilia Pro */
body.rcm-full-width-enabled .page-shell,
body.rcm-full-width-enabled .content-layout,
body.rcm-full-width-enabled main.wrap,
body.rcm-full-width-enabled .woocommerce .content-layout,
body.rcm-full-width-enabled .woocommerce-page .content-layout {
    width: calc(100% - 40px) !important;
    max-width: none !important;
    margin-left: auto !important;
    margin-right: auto !important;
}

/* Keep the original card styling while allowing the page to use the screen width. */
body.rcm-full-width-enabled .page-shell > .entry,
body.rcm-full-width-enabled .content-layout > .content,
body.rcm-full-width-enabled .single-affiliate-product {
    width: 100% !important;
    max-width: none !important;
}

/* Page content, blocks, embeds, tables and imported catalog content. */
body.rcm-full-width-enabled .entry-content,
body.rcm-full-width-enabled .entry-content > *,
body.rcm-full-width-enabled .wp-block-group,
body.rcm-full-width-enabled .wp-block-cover,
body.rcm-full-width-enabled .wp-block-columns,
body.rcm-full-width-enabled .woocommerce,
body.rcm-full-width-enabled .woocommerce-notices-wrapper {
    max-width: none;
}

body.rcm-full-width-enabled .entry-content img,
body.rcm-full-width-enabled .entry-content video,
body.rcm-full-width-enabled .entry-content iframe {
    max-width: 100%;
    height: auto;
}

body.rcm-full-width-enabled .entry-content table,
body.rcm-full-width-enabled .woocommerce table {
    width: 100%;
}

/* Preserve catalog sidebar on desktop and stack it below content on tablets/mobile. */
body.rcm-full-width-enabled .content-layout {
    grid-template-columns: minmax(0, 1fr) 320px !important;
}

/* Use more catalog columns on wide displays without changing product-card styling. */
@media (min-width: 1400px) {
    body.rcm-full-width-enabled .woocommerce ul.products {
        grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
    }
}

@media (max-width: 980px) {
    body.rcm-full-width-enabled .page-shell,
    body.rcm-full-width-enabled .content-layout,
    body.rcm-full-width-enabled main.wrap {
        width: calc(100% - 24px) !important;
    }

    body.rcm-full-width-enabled .content-layout {
        grid-template-columns: 1fr !important;
    }
}

@media (max-width: 640px) {
    body.rcm-full-width-enabled .page-shell,
    body.rcm-full-width-enabled .content-layout,
    body.rcm-full-width-enabled main.wrap {
        width: calc(100% - 16px) !important;
    }

    body.rcm-full-width-enabled .entry,
    body.rcm-full-width-enabled .widget,
    body.rcm-full-width-enabled .single-affiliate-product {
        border-radius: 14px;
        padding: 18px !important;
    }

    body.rcm-full-width-enabled .entry-content table,
    body.rcm-full-width-enabled .woocommerce table {
        display: block;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
}
