/* =========================
   BASE LAYOUT
========================= */
.woo-shop-wrapper{
    display:flex;
    gap:5px;
    padding:18px;
    align-items:flex-start;
}

.woo-shop-sidebar{
    flex:0 0 260px;
}

.woo-shop-content{
    flex:1;
    min-width:0;
}
.wp-block-kadence-advanced-form1706-cpt-id {
    max-width: 800px;
    margin: 0 auto;
}

#kb-adv-form-1706-cpt-id {
    display: flex;
    flex-direction: column;
    gap: 15px;
}
/* =========================
   PRODUCT GRID FIX (IMPORTANT)
   Prevent WooCommerce float/grid conflicts
========================= */
.woocommerce ul.products{
    display:grid!important;
    grid-template-columns:repeat(6,minmax(0,1fr));
    gap: 5px;
    padding:0;
}

.woocommerce ul.products::before,
.woocommerce ul.products::after{
    content:none!important;
}

.woocommerce ul.products li.product{
    margin:0!important;
    width:auto!important;
    float:none!important;
    background:#1a1a1a;
    border-radius:16px;
    padding:12px;
    box-sizing:border-box;
}

/* =========================
   PRODUCT IMAGE
========================= */
.woocommerce ul.products li.product a img{
    width:100%;
    aspect-ratio:1/1;
    object-fit:cover;
    border-radius:12px;
	  margin: auto;

}

/* =========================
   BUTTON
========================= */
.woocommerce a.button{
    background:#00ff88!important;
    color:#000!important;
    border-radius:10px;
    border:none;
}

/* =========================
   MOBILE FILTER BUTTON
========================= */
.wc-block-product-filters__open-overlay{
    display:none;
}

/* =========================
   TABLET
========================= */
@media(max-width:1024px){
    .woocommerce ul.products{
        grid-template-columns:repeat(2,minmax(0,1fr));
    }
}

/* =========================
   MOBILE FIX (NO BLUR BUG)
========================= */
@media(max-width:768px){

    /* STACK LAYOUT PROPERLY */
    .woo-shop-wrapper{
        flex-direction:column;
    }

    .woo-shop-sidebar{
        width:100%;
        order:-1;
    }

    .woo-shop-content{
        width:100%;
    }

    /* SHOW FILTER BUTTON (safe version) */
    .wc-block-product-filters__open-overlay{
        display:flex!important;
        position:sticky;
        top:0;
        z-index:1000;
        width:100%;
        padding:14px;
        background:#111;
        color:#fff;
        justify-content:center;
        align-items:center;
        gap:10px;
        border-radius:10px;
        margin-bottom:10px;
    }

.wc-block-product-filters__overlay{
    background:rgba(0,0,0,.6);
}
/* FILTER PANEL BACKGROUND */
.wc-block-product-filters__overlay-dialog{
    width:100%;
    height:85vh;
    background:#1a1a1a!important;
    border-radius:18px 18px 0 0;
    overflow-y:hidden;
}
    /* MOBILE GRID FIX */
    .woocommerce ul.products{
        grid-template-columns:repeat(2,minmax(0,1fr))!important;
        gap:12px;
    }
}

/* =========================
   SMALL PHONE
========================= */
@media(max-width:480px){
    .woocommerce ul.products{
        grid-template-columns:1fr!important;
    }
}

/* =========================
   FILTER COLORS (HEADINGS)
========================= */
.wc-block-product-filters h2,
.wc-block-product-filters h3{
    color:#00ff88;
}