/* =====================================================
   FORCE REMOVE SIDEBAR – BLOSSOM WOOCOMMERCE
===================================================== */

/* Hide sidebar everywhere */
#secondary,
.sidebar,
.widget-area,
aside#secondary {
    display: none !important;
    visibility: hidden !important;
    width: 0 !important;
    height: 0 !important;
    overflow: hidden !important;
}

/* Make content full width */
#primary,
.content-area,
.site-main {
    width: 100% !important;
    max-width: 100% !important;
    float: none !important;
    margin: 0 auto !important;
}

/* Fix grid / flex layouts used by theme */
.site-content,
.site-content .container,
.site-content .row {
    display: block !important;
    max-width: 100% !important;
}

/* Home page specific */
.home #primary {
    width: 100% !important;
}

/* Blog page */
.blog #primary {
    width: 100% !important;
}

/* WooCommerce pages */
.woocommerce-page #primary,
.woocommerce #primary {
    width: 100% !important;
}

.woocommerce-page #secondary,
.woocommerce #secondary {
    display: none !important;
}

/* Remove left/right spacing created by sidebar */
.has-sidebar .content-area,
.right-sidebar .content-area,
.left-sidebar .content-area {
    width: 100% !important;
    margin: 0 !important;
}

/* Mobile safety */
@media (max-width: 1024px) {
    #secondary {
        display: none !important;
    }
    #primary {
        width: 100% !important;
    }
}
