﻿/* ===============================
   PRODUCT CARD HEIGHT FIX (SLICK)
   =============================== */

/* slick slide içindeki kolonlar */
.product-carousel-one .slick-slide > div {
    height: 100%;
}

/* slick + bootstrap uyumu */
.product-carousel-one .col {
    height: 100%;
    display: flex;
}

/* kart */
.product-item {
    display: flex;
    flex-direction: column;
    height: 100%;
}

    /* ===============================
   PRODUCT IMAGE (NO CROP – STABLE)
   =============================== */

    .product-item .product-thumb {
        height: 260px; /* kartlar eşit */
        display: flex;
        align-items: center;
        justify-content: center;
        overflow: hidden;
        background: #fff; /* boşluk olursa beyaz */
    }

        /* RESMİN KENDİSİ – ASLA KESMEZ */
        .product-item .product-thumb img {
            max-width: 100%;
            max-height: 100%;
            width: auto;
            height: auto;
            object-fit: contain; /* !important kaldırıldı */
        }

/* ===============================
   BRAND SCROLL (SADE)
   =============================== */

.brand-scroll {
    max-height: 260px; /* 220–300 arası ideal */
    overflow-y: auto;
    padding-right: 5px;
}

    /* Scrollbar (opsiyonel ama temiz) */
    .brand-scroll::-webkit-scrollbar {
        width: 6px;
    }

    .brand-scroll::-webkit-scrollbar-thumb {
        background-color: #ccc;
        border-radius: 3px;
    }

    .brand-scroll::-webkit-scrollbar-track {
        background: transparent;
    }
.page-wrapper {
    max-width: 1320px; /* 1200–1400 arası ideal */
    margin: 0 auto;
    padding: 0 16px;
}
