.bg-dark.text-primary {
    display: none !important;
}
/* =========================================
   GENEL CSS - TEMİZ SÜRÜM
   Loader yok / Navbar müdahalesi yok
========================================= */

/* Genel kutu ayarı */
*{
    box-sizing:border-box;
}

html,
body{
    width:100%;
    margin:0;
    padding:0;
    overflow-x:hidden;
}

/* Görseller taşmasın */
img{
    max-width:100%;
    height:auto;
}

/* =========================================
   ÜRÜN KARTLARI — TAM KARE
   YEŞİL FİLTRE SADECE HOVER'DA
========================================= */

/* Grid */
.products .product-grid{
    display:grid !important;
    grid-template-columns:repeat(4, 1fr) !important;
    gap:35px !important;
    align-items:start !important;
}

/* Kart gerçek kare */
.products .product-card{
    position:relative !important;
    width:100% !important;
    height:auto !important;
    min-height:0 !important;
    max-height:none !important;
    aspect-ratio:1 / 1 !important;
    overflow:hidden !important;
    border-radius:0 !important;
    cursor:pointer !important;
}

/* Eski ::after varsa kapat */
.products .product-card::after{
    display:none !important;
    content:none !important;
}

/* Görsel kare alanı doldursun */
.products .product-card > img{
    position:absolute !important;
    inset:0 !important;
    width:100% !important;
    height:100% !important;
    object-fit:cover !important;
    display:block !important;
    border-radius:0 !important;
    z-index:1 !important;
    transition:transform .45s ease, filter .45s ease !important;
}

/* Normalde yeşil filtre yok */
.products .product-card::before{
    content:"" !important;
    position:absolute !important;
    inset:0 !important;
    background:rgba(9, 93, 54, 0) !important;
    z-index:2 !important;
    pointer-events:none !important;
    transition:background .35s ease !important;
}

/* Sadece hover'da yeşil filtre */
.products .product-card:hover::before{
    background:rgba(9, 93, 54, 0.28) !important;
}

/* Yazı için alt koyuluk */
.products .product-overlay{
    position:absolute !important;
    inset:0 !important;
    z-index:3 !important;

    background:linear-gradient(
        to top,
        rgba(0,0,0,.72) 0%,
        rgba(0,0,0,.35) 38%,
        rgba(0,0,0,0) 100%
    ) !important;

    display:flex !important;
    align-items:flex-end !important;
    padding:35px !important;
    border-radius:0 !important;
}

/* Hover'da alt degrade yeşile dönsün */
.products .product-card:hover .product-overlay{
    background:linear-gradient(
        to top,
        rgba(0,55,35,.78) 0%,
        rgba(9,93,54,.34) 45%,
        rgba(9,93,54,.04) 100%
    ) !important;
}

/* Yazı */
.products .product-overlay h3{
    color:#fff !important;
    font-size:30px !important;
    font-weight:800 !important;
    line-height:1.15 !important;
    text-shadow:0 4px 14px rgba(0,0,0,.45) !important;
    margin:0 !important;
}

/* Hover zoom */
.products .product-card:hover img{
    transform:scale(1.06) !important;
}

/* =========================================
   RESPONSIVE
========================================= */

/* PC */
@media(min-width:992px){

    .products .product-card{
        aspect-ratio:1 / 1 !important;
        height:auto !important;
        min-height:0 !important;
        max-height:none !important;
    }

}

/* Tablet */
@media(max-width:991px){

    .products .product-grid{
        grid-template-columns:repeat(2, 1fr) !important;
        gap:22px !important;
    }

    .products .product-card{
        aspect-ratio:1 / 1 !important;
        height:auto !important;
    }

}

/* Mobil slider */
@media(max-width:768px){

    .products .product-grid{
        display:flex !important;
        gap:16px !important;
        overflow-x:auto !important;
        scroll-snap-type:x mandatory !important;
        -webkit-overflow-scrolling:touch !important;
        padding-bottom:10px !important;
    }

    .products .product-grid::-webkit-scrollbar{
        display:none !important;
    }

    .products .product-card{
        min-width:82% !important;
        width:82% !important;
        aspect-ratio:1 / 1 !important;
        height:auto !important;
        flex-shrink:0 !important;
        scroll-snap-align:start !important;
    }

    .products .product-overlay{
        padding:26px !important;
    }

    .products .product-overlay h3{
        font-size:24px !important;
    }

}

/* Küçük mobil */
@media(max-width:480px){

    .products .product-card{
        min-width:86% !important;
        width:86% !important;
    }

    .products .product-overlay{
        padding:22px !important;
    }

    .products .product-overlay h3{
        font-size:22px !important;
    }

}

/* =========================================
   LOADER DENEMELERİNDEN KALANLARI PASİFLEŞTİR
========================================= */

#saram-page-loader,
#saram-loader-root{
    display:none !important;
    opacity:0 !important;
    visibility:hidden !important;
    pointer-events:none !important;
}

/* Loader classları navbarı etkilemesin */
html.saram-loading .navbar,
html.saram-site-ready .navbar,
.navbar{
    opacity:1 !important;
    visibility:visible !important;
    pointer-events:auto !important;
}
/* =========================================
   SAYFA GEÇİŞİ SONRASI GİZLİ KALAN YAZI FIX
========================================= */

.reveal,
.fade,
.fade-up,
.animate,
.animated{
    opacity:1 !important;
    visibility:visible !important;
    transform:none !important;
}
