/* ═══ WooCommerce shop: layout rules ═══ */

/* ─── Sidebar visibility ─── */
/* Cart/Checkout: no sidebar */
body.woocommerce-cart .is-right-sidebar,
body.woocommerce-checkout .is-right-sidebar,
body.woocommerce-cart .is-left-sidebar,
body.woocommerce-checkout .is-left-sidebar {
    display: none !important;
}

/* Shop/Category/Product: show right sidebar */
body.woocommerce-shop .is-right-sidebar,
body.tax-product_cat .is-right-sidebar,
body.single-product .is-right-sidebar,
body.woocommerce-shop .is-left-sidebar,
body.tax-product_cat .is-left-sidebar,
body.single-product .is-left-sidebar {
    display: block !important;
}

/* Content widths */
body.woocommerce-shop .site-content .content-area,
body.tax-product_cat .site-content .content-area,
body.single-product .site-content .content-area {
    width: 75% !important;
    float: left !important;
}

/* Products/cards in sidebar should look right */
@media (min-width: 769px) {
    body.woocommerce-shop .site-content .content-area,
    body.tax-product_cat .site-content .content-area,
    body.single-product .site-content .content-area {
        max-width: calc(100% - 260px) !important;
    }
}

/* Cart/Checkout: full width */
body.woocommerce-cart .site-content .content-area,
body.woocommerce-checkout .site-content .content-area,
body.woocommerce-cart .content-area,
body.woocommerce-checkout .content-area {
    width: 100% !important;
    max-width: none !important;
    float: none !important;
}

/* Right sidebar styling on shop pages */
body.woocommerce-shop .is-right-sidebar,
body.tax-product_cat .is-right-sidebar,
body.single-product .is-right-sidebar {
    width: 25% !important;
    min-width: 240px;
    padding-left: 20px;
    box-sizing: border-box;
}

/* Footer centering */
footer.gb-element-1ee8b663 .gb-element-836c96a5,
.site-footer .gb-element-836c96a5,
body.woocommerce .site-footer .gb-element-836c96a5,
body.woocommerce-page .site-footer .gb-element-836c96a5 {
    width: 100%;
    max-width: 1200px;
    margin-inline: auto;
}

footer.gb-element-1ee8b663 .gb-element-836c96a5 .gb-element-e0b5be42 {
    column-gap: 60px;
    row-gap: 40px;
}

/* Mobile: stack sidebar below content */
@media (max-width: 768px) {
    body.woocommerce-shop .site-content .content-area,
    body.tax-product_cat .site-content .content-area,
    body.single-product .site-content .content-area {
        width: 100% !important;
        max-width: none !important;
        float: none !important;
    }
    body.woocommerce-shop .is-right-sidebar,
    body.tax-product_cat .is-right-sidebar,
    body.single-product .is-right-sidebar {
        width: 100% !important;
        padding-left: 0;
        margin-top: 2rem;
    }
}
