.bihaan-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
    margin:40px 0;
}

.bihaan-card{
    background:#fff;
    border:1px solid #e5e7eb;
    border-radius:16px;
    overflow:hidden;
    display:flex;
    flex-direction:column;
    min-height:540px;
    box-shadow:0 4px 15px rgba(0,0,0,.05);
    transition:.3s;
}

.bihaan-card:hover{
    transform:translateY(-6px);
    box-shadow:0 12px 28px rgba(0,0,0,.12);
}

.bihaan-card a{
    text-decoration:none;
}

.bihaan-card img{
    width:100%;
    height:280px;
    object-fit:contain;
    padding:20px;
    background:#fff;
}

.bihaan-card h3{
    margin:0;
    padding:0 18px;
    min-height:80px;
    font-size:20px;
    line-height:30px;
    font-weight:700;
    text-align:center;
}

.bihaan-card h3 a{
    color:#1f2937;
    text-decoration:none;
}

.bihaan-card h3 a:hover{
    color:#ff6200;
}

.bihaan-card .price{
    margin-top:auto;
    text-align:center;
    padding:15px 0;
    font-size:18px;
    font-weight:700;
    color:#ff6200;
}

.bihaan-card ins{
    color:#ff6200;
    text-decoration:none;
}

.bihaan-card del{
    color:#9ca3af;
    margin-left:6px;
    font-size:16px;
}

.bihaan-card .button,
.bihaan-card .add_to_cart_button{
    display:block;
    margin:0 18px 18px;
    padding:14px;
    background:#ff6200;
    color:#fff !important;
    border-radius:10px;
    text-align:center;
    font-weight:700;
    transition:.3s;
}

.bihaan-card .button:hover,
.bihaan-card .add_to_cart_button:hover{
    background:#e65a00;
}

@media(max-width:1024px){

    .bihaan-grid{
        grid-template-columns:repeat(2,1fr);
    }

}

@media(max-width:767px){

    .bihaan-grid{
        grid-template-columns:1fr;
    }

    .bihaan-card{
        min-height:auto;
    }

    .bihaan-card img{
        height:220px;
    }

    .bihaan-card h3{
        font-size:18px;
        line-height:28px;
        min-height:70px;
    }

}
/* =========================
   HERO SECTION
========================= */

.bihaan-hero{
    display:grid;
    grid-template-columns:260px 1fr 280px;
    gap:20px;
    margin:20px auto;
    max-width:1400px;
    padding:0 20px;
}

.bihaan-categories{
    background:#fff;
    border-radius:12px;
    padding:20px;
    box-shadow:0 4px 15px rgba(0,0,0,.08);
}

.bihaan-categories h3{
    margin:0 0 15px;
    font-size:20px;
    color:#222;
}

.bihaan-categories ul{
    list-style:none;
    padding:0;
    margin:0;
}

.bihaan-categories li{
    margin:12px 0;
}

.bihaan-categories a{
    color:#333;
    text-decoration:none;
    font-size:15px;
    transition:.3s;
}

.bihaan-categories a:hover{
    color:#ff6200;
    padding-left:6px;
}

.bihaan-main-banner{
    position:relative;
    overflow:hidden;
    border-radius:14px;
}

.bihaan-main-banner img{
    width:100%;
    height:500px;
    object-fit:cover;
    display:block;
}

.hero-content{
    position:absolute;
    top:50%;
    left:50px;
    transform:translateY(-50%);
    max-width:520px;
    z-index:2;
}

.hero-content h1{
    margin:0 0 15px;
    font-size:48px;
    line-height:56px;
    font-weight:700;
    color:#fff;
}

.hero-content p{
    margin:0 0 30px;
    font-size:18px;
    line-height:30px;
    color:#fff;
}

.hero-btn{
    display:inline-block;
    background:#ff6200;
    color:#fff;
    padding:15px 32px;
    border-radius:8px;
    text-decoration:none;
    font-size:16px;
    font-weight:700;
    transition:.3s;
}

.hero-btn:hover{
    background:#e45600;
    color:#fff;
}



.bihaan-side-banner{
    display:flex;
    flex-direction:column;
    gap:20px;
}

.bihaan-side-banner img{
    width:100%;
    height:240px;
    object-fit:cover;
    border-radius:12px;
    display:block;
}

@media(max-width:992px){

    .bihaan-hero{
        grid-template-columns:1fr;
    }

    .bihaan-main-banner img{
        height:320px;
    }

    .bihaan-side-banner{
        flex-direction:row;
    }

    .bihaan-side-banner img{
        height:180px;
    }

}

.bihaan-homepage{
    max-width:1400px;
    margin:0 auto;
    padding:20px;
}

.bihaan-section{
    margin:60px 0;
}

.bihaan-section-title{
    font-size:34px;
    font-weight:700;
    margin-bottom:30px;
    color:#222;
    position:relative;
}

.bihaan-section-title::after{
    content:"";
    width:70px;
    height:4px;
    background:#ff6200;
    display:block;
    margin-top:12px;
    border-radius:10px;
}
.bihaan-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
}

.bihaan-card{
    background:#fff;
    border:1px solid #eee;
    border-radius:12px;
    overflow:hidden;
    padding:15px;
    text-align:center;
    transition:.3s;
    box-shadow:0 3px 12px rgba(0,0,0,.05);
}

.bihaan-card:hover{
    transform:translateY(-5px);
    box-shadow:0 10px 25px rgba(0,0,0,.12);
}

.bihaan-card img{
    width:100%;
    height:230px;
    object-fit:contain;
}

.bihaan-card h3{
    font-size:18px;
    line-height:1.5;
    height:82px;
    overflow:hidden;
    margin:15px 0;
}

.bihaan-card h3 a{
    color:#222;
    text-decoration:none;
}

.bihaan-card .price{
    font-size:20px;
    color:#ff6200;
    font-weight:700;
    margin-bottom:15px;
}

.bihaan-card .button{
    width:100%;
    border-radius:8px;
    background:#ff6200;
    color:#fff;
}

.bihaan-card .button:hover{
    background:#e95a00;
}
.bihaan-card{
    background:#fff;
    border-radius:12px;
    box-shadow:0 4px 15px rgba(0,0,0,.08);
    display:flex;
    flex-direction:column;
    justify-content:space-between;
    min-height:470px;
    padding:18px;
}
.bihaan-thumb img{
    width:100%;
    height:220px;
    object-fit:contain;
}
.bihaan-title{
    font-size:18px;
    line-height:1.45;
    min-height:78px;
    margin:15px 0;
}

.bihaan-title a{
    color:#222;
    text-decoration:none;
}
.bihaan-price{
    font-size:22px;
    font-weight:700;
    color:#ff6200;
    margin-top:auto;
}
.bihaan-cart .button{
    width:100%;
    background:#ff6200;
    border-radius:8px;
    color:#fff;
    border:none;
    padding:12px;
}
.bihaan-card{
    transition:all .3s ease;
}

.bihaan-card:hover{
    transform:translateY(-6px);
    box-shadow:0 12px 30px rgba(0,0,0,.15);
}
.bihaan-thumb{
    overflow:hidden;
}

.bihaan-thumb img{
    transition:.35s;
}

.bihaan-card:hover .bihaan-thumb img{
    transform:scale(1.05);
}
.bihaan-title{
    display:-webkit-box;
    -webkit-line-clamp:2;
    -webkit-box-orient:vertical;
    overflow:hidden;
    min-height:60px;
}
.bihaan-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
}

.bihaan-card{
    display:flex;
    flex-direction:column;
    justify-content:space-between;
    height:100%;
    background:#fff;
    border-radius:16px;
    padding:20px;
    box-shadow:0 8px 25px rgba(0,0,0,.08);
    transition:.3s;
}

.bihaan-card:hover{
    transform:translateY(-8px);
    box-shadow:0 20px 40px rgba(0,0,0,.15);
}

.bihaan-card img{
    width:100%;
    aspect-ratio:1/1;
    object-fit:contain;
}

.bihaan-card h2,
.bihaan-card h3,
.bihaan-card .woocommerce-loop-product__title{
    min-height:72px;
    font-size:22px;
    line-height:1.4;
}

.bihaan-card .price{
    margin:12px 0;
    font-size:28px;
    font-weight:700;
}

.bihaan-card .button{
    width:100%;
    text-align:center;
    border-radius:10px;
}
/* =========================
   SWIPER
========================= */

.bihaan-slider{
    position:relative;
    overflow:hidden;
    padding:10px 0 50px;
}

.bihaan-slider .swiper-slide{
    height:auto;
}

.bihaan-slider ul.products{
    margin:0 !important;
    padding:0 !important;
}

.bihaan-slider ul.products li.product{
    width:100% !important;
    margin:0 !important;
    float:none !important;
}

.bihaan-slider .swiper-button-next,
.bihaan-slider .swiper-button-prev{
    width:42px;
    height:42px;
    border-radius:50%;
    background:#fff;
    box-shadow:0 5px 20px rgba(0,0,0,.15);
    color:#ff6600;
}

.bihaan-slider .swiper-button-next:after,
.bihaan-slider .swiper-button-prev:after{
    font-size:18px;
    font-weight:700;
}
/* ===== Product Slider ===== */

.bihaan-slider{
    padding:10px 5px 60px;
    overflow:hidden;
}

.bihaan-slider .swiper-slide{
    height:auto;
}

.bihaan-slider .swiper-button-next,
.bihaan-slider .swiper-button-prev{
    width:42px;
    height:42px;
    background:#fff;
    border-radius:50%;
    box-shadow:0 5px 20px rgba(0,0,0,.15);
    color:#ff6a00;
}

.bihaan-slider .swiper-button-next::after,
.bihaan-slider .swiper-button-prev::after{
    font-size:18px;
    font-weight:700;
}

.bihaan-card{
    background:#fff;
    border-radius:16px;
    overflow:hidden;
    box-shadow:0 5px 20px rgba(0,0,0,.08);
    transition:.3s;
    height:100%;
    display:flex;
    flex-direction:column;
}

.bihaan-card:hover{
    transform:translateY(-6px);
    box-shadow:0 12px 35px rgba(0,0,0,.15);
}

.bihaan-image{
    display:block;
    padding:20px;
}

.bihaan-image img{
    width:100%;
    height:220px;
    object-fit:contain;
}

.bihaan-content{
    padding:18px;
    display:flex;
    flex-direction:column;
    flex:1;
}

.bihaan-title{
    font-size:17px;
    line-height:1.5;
    min-height:52px;
    margin:0 0 15px;
}

.bihaan-title a{
    text-decoration:none;
    color:#222;
}

.bihaan-price{
    font-size:24px;
    font-weight:700;
    color:#ff6a00;
    margin-bottom:15px;
}

.bihaan-cart{
    margin-top:auto;
}

.bihaan-cart .button{
    width:100%;
    border-radius:8px;
}
/* ===========================
   TOP CATEGORIES
=========================== */

.bihaan-top-categories{
    margin:60px 0;
}

.bihaan-category-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
}

.bihaan-category-card{
    background:#fff;
    border-radius:16px;
    padding:30px 20px;
    text-align:center;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
    transition:.3s;
    cursor:pointer;
}

.bihaan-category-card:hover{
    transform:translateY(-8px);
    box-shadow:0 20px 40px rgba(0,0,0,.12);
}

.bihaan-category-card{
    font-size:42px;
}

.bihaan-category-card span{
    display:block;
    margin-top:15px;
    font-size:18px;
    font-weight:600;
    color:#222;
}

@media(max-width:991px){

.bihaan-category-grid{
grid-template-columns:repeat(2,1fr);
}

}

@media(max-width:576px){

.bihaan-category-grid{
grid-template-columns:1fr;
}

}
/* ===========================
   TODAY'S DEALS
=========================== */

.bihaan-todays-deals{
    margin:40px 0;
    background:linear-gradient(135deg,#ff6a00,#ff9a00);
    border-radius:20px;
    padding:50px 40px;
    color:#fff;
    overflow:hidden;
    position:relative;
}

.bihaan-deals-content{
    max-width:700px;
}

.bihaan-deals-badge{
    display:inline-block;
    background:#fff;
    color:#ff6a00;
    padding:8px 18px;
    border-radius:50px;
    font-size:14px;
    font-weight:700;
    margin-bottom:20px;
}

.bihaan-todays-deals h2{
    font-size:48px;
    margin:0 0 15px;
    color:#fff;
}

.bihaan-todays-deals h2 strong{
    color:#ffe600;
}

.bihaan-todays-deals p{
    font-size:18px;
    margin-bottom:30px;
    opacity:.95;
}

.bihaan-deals-btn{
    display:inline-block;
    background:#fff;
    color:#ff6a00;
    text-decoration:none;
    padding:14px 32px;
    border-radius:10px;
    font-weight:700;
    transition:.3s;
}

.bihaan-deals-btn:hover{
    background:#222;
    color:#fff;
}

@media(max-width:768px){

    .bihaan-todays-deals{
        padding:30px 20px;
    }

    .bihaan-todays-deals h2{
        font-size:32px;
    }

    .bihaan-todays-deals p{
        font-size:16px;
    }

}
/* ===========================
   BECOME SELLER
=========================== */

.bihaan-seller{
    margin:60px 0;
    background:linear-gradient(135deg,#0f172a,#1e3a8a);
    color:#fff;
    border-radius:20px;
    padding:60px;
    position:relative;
    overflow:hidden;
}

.bihaan-seller-content{
    max-width:700px;
}

.bihaan-seller-badge{
    display:inline-block;
    background:#f97316;
    color:#fff;
    padding:8px 18px;
    border-radius:50px;
    font-size:14px;
    font-weight:700;
    margin-bottom:20px;
}

.bihaan-seller h2{
    font-size:42px;
    line-height:1.2;
    margin-bottom:20px;
    color:#fff;
}

.bihaan-seller p{
    font-size:18px;
    color:#e5e7eb;
    margin-bottom:35px;
    line-height:1.8;
}

.bihaan-seller-btn{
    display:inline-block;
    background:#f97316;
    color:#fff;
    padding:15px 35px;
    border-radius:10px;
    text-decoration:none;
    font-weight:700;
    transition:.3s;
}

.bihaan-seller-btn:hover{
    background:#fff;
    color:#f97316;
}

@media(max-width:768px){

    .bihaan-seller{
        padding:35px 25px;
    }

    .bihaan-seller h2{
        font-size:30px;
    }

    .bihaan-seller p{
        font-size:16px;
    }

}
/*==============================
MARKETPLACE TRUST
==============================*/

.bihaan-marketplace{
    margin:60px 0;
}

.bihaan-market-grid{
    display:grid;
    grid-template-columns:repeat(6,1fr);
    gap:20px;
}

.market-card{
    background:#fff;
    border-radius:16px;
    padding:35px 20px;
    text-align:center;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    transition:.35s;
    cursor:pointer;
}

.market-card:hover{
    transform:translateY(-8px);
    box-shadow:0 20px 40px rgba(0,0,0,.15);
}

.market-card{
    font-size:40px;
}

.market-card span{
    display:block;
    margin-top:15px;
    font-size:16px;
    font-weight:600;
    color:#222;
}

@media(max-width:1024px){

.bihaan-market-grid{
grid-template-columns:repeat(3,1fr);
}

}

@media(max-width:768px){

.bihaan-market-grid{
grid-template-columns:repeat(2,1fr);
}

}

@media(max-width:480px){

.bihaan-market-grid{
grid-template-columns:1fr;
}

}
/* =========================
   BGZ MOBILE PRODUCT GRID
========================= */

@media (max-width: 767px) {

    .bihaan-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
    }

    .bihaan-card {
        min-height: auto;
        padding: 12px;
        border-radius: 12px;
    }

    .bihaan-image {
        padding: 8px;
    }

    .bihaan-image img,
    .bihaan-thumb img,
    .bihaan-card img {
        height: 150px;
    }

    .bihaan-title {
        font-size: 14px;
        line-height: 1.4;
        min-height: 40px;
        margin: 8px 0;
    }

    .bihaan-price {
        font-size: 17px;
        margin-bottom: 10px;
    }

    .bihaan-cart .button,
    .bihaan-card .button {
        font-size: 13px;
        padding: 10px 6px;
        margin: 0;
    }

}
/* =========================
   BGZ STORE V2 HEADER
========================= */

.bgz-header{
    width:100%;
    background:#fff;
    border-bottom:1px solid #e5e7eb;
    position:relative;
    z-index:999;
}

.bgz-header-inner{
    max-width:1400px;
    margin:0 auto;
    min-height:82px;
    padding:12px 20px;
    display:flex;
    align-items:center;
    gap:28px;
}

/* Logo */

.bgz-logo{
    display:flex;
    align-items:center;
    gap:7px;
    min-width:220px;
    text-decoration:none !important;
    line-height:1;
}

.bgz-logo-main{
    font-size:34px;
    font-weight:900;
    color:#1769e0;
    letter-spacing:-1px;
}

.bgz-logo-store{
    font-size:20px;
    font-weight:800;
    color:#ff6200;
    letter-spacing:.5px;
}

.bgz-logo small{
    display:block;
    width:100%;
    margin-top:4px;
    font-size:9px;
    font-weight:600;
    color:#64748b;
    letter-spacing:.2px;
}

/* Search */

.bgz-search{
    flex:1;
    max-width:700px;
    height:48px;
    display:flex;
    align-items:stretch;
    margin:0;
    border:2px solid #1769e0;
    border-radius:10px;
    overflow:hidden;
    background:#fff;
}

.bgz-search input[type="search"]{
    flex:1;
    min-width:0;
    border:0 !important;
    outline:0 !important;
    box-shadow:none !important;
    padding:0 16px;
    font-size:15px;
    color:#222;
    background:#fff;
}

.bgz-search input[type="search"]::placeholder{
    color:#94a3b8;
}

.bgz-search button{
    width:58px;
    border:0;
    background:#1769e0;
    color:#fff;
    font-size:20px;
    cursor:pointer;
    transition:.2s;
}

.bgz-search button:hover{
    background:#0f56bd;
}

/* Header Actions */

.bgz-header-actions{
    display:flex;
    align-items:center;
    gap:20px;
}

.bgz-header-actions a{
    display:flex;
    flex-direction:column;
    align-items:center;
    gap:3px;
    color:#1f2937 !important;
    text-decoration:none !important;
    white-space:nowrap;
}

.bgz-header-actions a span{
    font-size:21px;
    line-height:1;
}

.bgz-header-actions a small{
    font-size:12px;
    font-weight:600;
}

/* Navigation */

.bgz-navigation{
    background:#1769e0;
}

.bgz-navigation-inner{
    max-width:1400px;
    min-height:44px;
    margin:0 auto;
    padding:0 20px;
    display:flex;
    align-items:center;
    gap:30px;
}

.bgz-navigation-inner a{
    color:#fff !important;
    text-decoration:none !important;
    font-size:14px;
    font-weight:600;
    padding:13px 0;
    white-space:nowrap;
}

.bgz-navigation-inner a:hover{
    color:#ffe600 !important;
}

/* Tablet */

@media(max-width:1024px){

    .bgz-header-inner{
        gap:16px;
    }

    .bgz-logo{
        min-width:180px;
    }

    .bgz-logo-main{
        font-size:29px;
    }

    .bgz-logo-store{
        font-size:17px;
    }

    .bgz-header-actions{
        gap:12px;
    }

    .bgz-navigation-inner{
        gap:20px;
        overflow-x:auto;
        scrollbar-width:none;
    }

    .bgz-navigation-inner::-webkit-scrollbar{
        display:none;
    }

}

/* Mobile */

@media(max-width:767px){

    .bgz-header-inner{
        min-height:auto;
        padding:10px 12px;
        display:grid;
        grid-template-columns:auto 1fr auto;
        gap:10px;
    }

    .bgz-logo{
        min-width:auto;
        gap:4px;
        flex-wrap:wrap;
    }

    .bgz-logo-main{
        font-size:24px;
    }

    .bgz-logo-store{
        font-size:14px;
    }

    .bgz-logo small{
        display:none;
    }

    .bgz-search{
        height:42px;
        width:100%;
        border-radius:8px;
    }

    .bgz-search input[type="search"]{
        font-size:13px;
        padding:0 10px;
    }

    .bgz-search button{
        width:45px;
        font-size:17px;
    }

    .bgz-header-actions{
        gap:8px;
    }

    .bgz-header-actions a{
        display:none;
    }

    .bgz-header-actions a:last-child{
        display:flex;
    }

    .bgz-header-actions a span{
        font-size:22px;
    }

    .bgz-header-actions a small{
        display:none;
    }

    .bgz-navigation-inner{
        min-height:42px;
        padding:0 12px;
        gap:24px;
    }

    .bgz-navigation-inner a{
        font-size:13px;
        padding:12px 0;
    }

}
/* =========================
   BGZ STORE V2
   HIDE BLOCKSY HEADER
========================= */

.ct-header{
    display:none !important;
}
/* =========================================
   BGZ STORE V2
   HIDE BLOCKSY HEADER ONLY ON BGZ STORE
========================================= */

.page-id-2524 #header,
.page-id-2524 .ct-header,
.page-id-2524 .ct-header-wrapper,
.page-id-2524 header#header {
    display: none !important;
}
 /* =========================================
    BGZ STORE V2
    REMOVE EXCESS TOP SPACE
 ========================================= */

.page-id-2524 main.site-main {
    padding-top: 0 !important;
    margin-top: 0 !important;
}

.page-id-2524 .bihaan-homepage {
    padding-top: 0 !important;
}

.page-id-2524 .bihaan-hero {
    margin-top: 20px !important;
}
/* =========================================
   BGZ STORE V2
   REMOVE THEME CONTENT TOP SPACE
========================================= */

.page-id-2524 .site-content,
.page-id-2524 .content-area,
.page-id-2524 #main,
.page-id-2524 main,
.page-id-2524 .ct-container,
.page-id-2524 .entry-content {
    margin-top: 0 !important;
    padding-top: 0 !important;
}
/* =========================================
   BGZ STORE V2
   REMOVE SHORTCODE WRAPPER GAP
========================================= */

.page-id-2524 .entry-content > p {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
}
/* =========================================
   BGZ STORE V2
   DYNAMIC CATEGORY MENU
========================================= */

.bgz-category-menu {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
}

.bgz-category-trigger {
    border: 0;
    background: transparent;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    padding: 13px 0;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 7px;
}

.bgz-category-trigger span {
    font-size: 12px;
}

.bgz-category-dropdown {
    position: absolute;
    top: calc(100% + 1px);
    left: 0;
    width: 300px;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 0 0 10px 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,.12);
    padding: 10px;
    display: none;
    z-index: 9999;
}

.bgz-category-menu:hover .bgz-category-dropdown {
    display: block;
}

.bgz-category-item {
    display: flex !important;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    box-sizing: border-box;
    padding: 11px 12px !important;
    color: #1f2937 !important;
    text-decoration: none !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    border-radius: 7px;
}

.bgz-category-item:hover {
    background: #f1f5f9;
    color: #1769e0 !important;
}

.bgz-category-item small {
    color: #94a3b8;
    font-size: 11px;
}

.bgz-category-empty {
    padding: 15px;
    color: #64748b;
    font-size: 13px;
}

.bgz-all-category-link {
    display: block !important;
    margin-top: 6px;
    padding: 12px !important;
    border-top: 1px solid #e5e7eb;
    color: #1769e0 !important;
    font-size: 13px !important;
    font-weight: 700 !important;
    text-decoration: none !important;
}

/* Mobile */

@media (max-width: 767px) {

    .bgz-category-menu {
        position: static;
    }

    .bgz-category-dropdown {
        position: fixed;
        top: auto;
        left: 12px;
        right: 12px;
        width: auto;
        max-height: 70vh;
        overflow-y: auto;
    }

    .bgz-category-menu:hover .bgz-category-dropdown {
        display: none;
    }

    .bgz-category-menu:focus-within .bgz-category-dropdown {
        display: block;
    }

    .bgz-category-trigger {
        font-size: 13px;
    }

}
/* =========================================
   BGZ STORE V2
   CATEGORY DROPDOWN VISIBILITY FIX
========================================= */

.bgz-navigation,
.bgz-navigation-inner,
.bgz-category-menu {
    overflow: visible !important;
}

.bgz-category-dropdown {
    z-index: 99999 !important;
}
/* =========================================
   BGZ STORE V2
   CATEGORY DROPDOWN LAYER FIX
========================================= */

.bgz-header,
.bgz-navigation,
.bgz-navigation-inner,
.bgz-category-menu {
    position: relative;
    overflow: visible !important;
}

.bgz-header {
    z-index: 100000 !important;
}

.bgz-navigation {
    z-index: 100001 !important;
}

.bgz-category-dropdown {
    top: 100% !important;
    left: 0 !important;
    z-index: 100002 !important;
    display: none;
}

.bgz-category-menu:hover .bgz-category-dropdown {
    display: block !important;
}
/* =========================================
   BGZ STORE V2
   CATEGORY DROPDOWN TEXT VISIBILITY
========================================= */

.bgz-category-dropdown,
.bgz-category-dropdown * {
    color: #222 !important;
}

.bgz-category-dropdown a {
    color: #222 !important;
    text-decoration: none !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
}

.bgz-category-dropdown a:hover {
    color: #1769e0 !important;
}

.bgz-category-dropdown span {
    color: #222 !important;
}
/* =========================================
   BGZ STORE V2
   MEGA MENU
========================================= */

.bgz-category-dropdown {
    width: min(1100px, calc(100vw - 40px)) !important;
    padding: 24px !important;
    border-radius: 0 0 14px 14px !important;
}

.bgz-mega-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(180px, 1fr));
    gap: 28px 24px;
    max-height: 520px;
    overflow-y: auto;
}

.bgz-mega-column {
    min-width: 0;
}

.bgz-mega-title {
    display: flex !important;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 0 0 10px !important;
    margin-bottom: 8px;
    border-bottom: 2px solid #f1f5f9;
    color: #1769e0 !important;
    font-size: 15px !important;
    font-weight: 800 !important;
    text-decoration: none !important;
}

.bgz-mega-title span {
    color: #1769e0 !important;
}

.bgz-mega-title small {
    color: #94a3b8 !important;
    font-size: 11px;
}

.bgz-mega-children {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.bgz-mega-child {
    display: flex !important;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    padding: 7px 6px !important;
    border-radius: 6px;
    color: #374151 !important;
    font-size: 13px !important;
    font-weight: 500 !important;
    text-decoration: none !important;
}

.bgz-mega-child:hover {
    background: #f8fafc;
    color: #1769e0 !important;
}

.bgz-mega-child span {
    color: inherit !important;
}

.bgz-mega-child small {
    color: #9ca3af !important;
    font-size: 10px;
}

.bgz-mega-footer {
    margin-top: 20px;
    padding-top: 14px;
    border-top: 1px solid #e5e7eb;
}

.bgz-mega-footer .bgz-all-category-link {
    display: inline-block !important;
    padding: 0 !important;
    margin: 0 !important;
    border: 0 !important;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 1024px) {

    .bgz-category-dropdown {
        width: min(850px, calc(100vw - 30px)) !important;
    }

    .bgz-mega-grid {
        grid-template-columns: repeat(3, minmax(160px, 1fr));
        gap: 22px 18px;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 767px) {

    .bgz-category-dropdown {
        left: 12px !important;
        right: 12px !important;
        width: auto !important;
        padding: 18px !important;
        max-height: 75vh !important;
        overflow-y: auto !important;
    }

    .bgz-mega-grid {
        grid-template-columns: 1fr !important;
        gap: 18px;
        max-height: none;
        overflow: visible;
    }

    .bgz-mega-title {
        font-size: 14px !important;
    }

    .bgz-mega-child {
        font-size: 13px !important;
    }

}
/* =========================================
   BGZ PRODUCT CARD V2
========================================= */

.bgz-product-card {
    position: relative;
    height: 100%;
    background: #fff;
    border: 1px solid #edf0f4;
    border-radius: 12px;
    overflow: hidden;
    transition: transform .2s ease, box-shadow .2s ease;
}

.bgz-product-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0,0,0,.08);
}


/* IMAGE */

.bgz-product-image {
    position: relative;
    padding: 14px;
    background: #fff;
}

.bgz-product-image a {
    display: block;
}

.bgz-product-image img {
    display: block;
    width: 100%;
    height: 190px;
    object-fit: contain;
}


/* SALE BADGE */

.bgz-sale-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 2;
    padding: 5px 8px;
    background: #ff5a00;
    color: #fff;
    border-radius: 5px;
    font-size: 10px;
    font-weight: 700;
}


/* CONTENT */

.bgz-product-content {
    padding: 0 14px 14px;
}


/* TITLE */

.bgz-product-title {
    margin: 8px 0 6px;
    min-height: 38px;
    font-size: 13px;
    line-height: 1.45;
    font-weight: 600;
}

.bgz-product-title a {
    color: #202124;
    text-decoration: none;
}

.bgz-product-title a:hover {
    color: #1769e0;
}


/* RATING */

.bgz-product-rating {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 6px;
    font-size: 11px;
    color: #777;
}

.bgz-stars {
    color: #f5a623;
    letter-spacing: -1px;
}


/* SELLER */

.bgz-product-seller {
    margin-bottom: 8px;
    font-size: 10px;
    color: #777;
}

.bgz-product-seller strong {
    color: #333;
}


/* PRICE */

.bgz-product-price {
    min-height: 25px;
    margin-bottom: 10px;
}

.bgz-product-price .amount {
    color: #ff5a00;
    font-size: 15px;
    font-weight: 700;
}

.bgz-product-price del {
    margin-left: 5px;
    color: #aaa;
    font-size: 10px;
}


/* ADD TO CART */

.bgz-product-action a {
    display: block;
    width: 100%;
    padding: 9px 8px !important;
    margin: 0 !important;
    background: #ff5a00 !important;
    color: #fff !important;
    border-radius: 5px;
    text-align: center;
    font-size: 11px;
    font-weight: 700;
    text-decoration: none !important;
}

.bgz-product-action a:hover {
    background: #e84f00 !important;
}


/* MOBILE */

@media (max-width: 767px) {

    .bgz-product-image img {
        height: 145px;
    }

    .bgz-product-content {
        padding: 0 10px 10px;
    }

    .bgz-product-title {
        font-size: 11px;
    }

    .bgz-product-price .amount {
        font-size: 13px;
    }

}
/* =========================================================
   BGZ STORE HEADER ROUND LOGO
========================================================= */

.bgz-header .bgz-logo {
    display: flex !important;
    align-items: center !important;
    width: 72px !important;
    height: 72px !important;
    flex: 0 0 72px !important;
    padding: 0 !important;
    margin: 0 !important;
    overflow: hidden !important;
    text-decoration: none !important;
}

.bgz-header .bgz-logo .bgz-store-logo-image {
    display: block !important;
    width: 72px !important;
    height: 72px !important;
    max-width: 72px !important;
    max-height: 72px !important;
    object-fit: cover !important;
    border-radius: 50% !important;
    margin: 0 !important;
    padding: 0 !important;
}
/* =========================================================
   BGZ CATEGORY CARDS - AMAZON / FLIPKART STYLE
========================================================= */

.bgz-category-card {
    text-align: center !important;
}

.bgz-category-card h3,
.bgz-category-card .bgz-category-title {
    font-size: 16px !important;
    line-height: 1.3 !important;
    font-weight: 600 !important;
    margin: 10px 8px 4px !important;
    color: #1f2937 !important;
}

.bgz-category-card p,
.bgz-category-card .bgz-category-count {
    font-size: 12px !important;
    line-height: 1.4 !important;
    margin: 0 0 12px !important;
    color: #64748b !important;
}

.bgz-category-card img {
    width: 100% !important;
    aspect-ratio: 1 / 1 !important;
    object-fit: cover !important;
    display: block !important;
}

@media (max-width: 767px) {

    .bgz-category-card h3,
    .bgz-category-card .bgz-category-title {
        font-size: 13px !important;
        line-height: 1.3 !important;
        margin: 7px 5px 3px !important;
    }

    .bgz-category-card p,
    .bgz-category-card .bgz-category-count {
        font-size: 11px !important;
        margin-bottom: 8px !important;
    }
}
/* =========================================================
   BGZ V2 - CATEGORY CARD TYPOGRAPHY FIX
   Amazon / Flipkart Style
========================================================= */

.bihaan-top-categories .bihaan-category-card {
    text-decoration: none !important;
    text-align: center !important;
}

.bihaan-top-categories .bihaan-category-name {
    display: -webkit-box !important;
    -webkit-box-orient: vertical !important;
    -webkit-line-clamp: 2 !important;
    overflow: hidden !important;

    margin: 10px 8px 4px !important;

    color: #1f2937 !important;
    font-size: 16px !important;
    font-weight: 600 !important;
    line-height: 1.35 !important;

    min-height: 43px !important;
}

.bihaan-top-categories .bihaan-category-count {
    display: block !important;

    margin: 0 0 12px !important;

    color: #64748b !important;
    font-size: 12px !important;
    font-weight: 400 !important;
    line-height: 1.4 !important;
}

.bihaan-top-categories .bihaan-category-image-wrap {
    overflow: hidden !important;
}

.bihaan-top-categories .bihaan-category-image-wrap img.bihaan-category-image {
    display: block !important;
    width: 100% !important;
    height: auto !important;
    object-fit: cover !important;
}


/* MOBILE */

@media (max-width: 767px) {

    .bihaan-top-categories .bihaan-category-name {
        font-size: 13px !important;
        line-height: 1.3 !important;
        margin: 7px 4px 3px !important;
        min-height: 34px !important;
    }

    .bihaan-top-categories .bihaan-category-count {
        font-size: 11px !important;
        margin-bottom: 8px !important;
    }
}