 .topbar-lang { gap:12px; line-height:1; }
        .topbar-lang .lang-flag{
            display:inline-flex; align-items:center; justify-content:center;
            width:28px; height:18px; border-radius:3px; overflow:hidden;
            opacity:1 !important;
        }
        .topbar-lang .lang-flag img{ width:100%; height:100%; object-fit:cover; display:block; }

        @media (max-width: 991px){
            .navbar-brand img.default-logo,
            .navbar-brand img.alt-logo { display:none !important; }
            .navbar-brand img.mobile-logo { display:inline-block !important; max-height:38px; width:auto; }
        }
        @media (min-width: 992px){
            .navbar-brand img.mobile-logo { display:none !important; }
        }

.page-title-big-typography {
    padding-top: 40px !important;
    padding-bottom: 40px !important;
}

@media (max-width: 767px) {
    .page-title-big-typography {
        padding-top: 25px !important;
        padding-bottom: 25px !important;
    }
}

.ipad-top-space-margin {
    margin-top: 0 !important;
}

.page-title-big-typography .page-title-extra-small {
    padding-top: 100px;
}

/* Slider başlıklarını küçült */
.slider-title {
    font-size: 60px !important;
    line-height: 1.1 !important;
}

@media (max-width: 767px) {
    .slider-title {
        font-size: 36px !important;
    }
}

/* Home 3'lü bilgi ikonları */
.home-three-info .feature-box-icon img {
    max-width: 60px !important;
    max-height: 60px !important;
    height: auto;
    width: auto;
    display: block;
    margin: 0 auto 15px;
}

/* HEADER SEARCH BUTTON – PERFECT CIRCLE */
.header-search-btn {
    width: 44px;
    height: 44px;
    min-width: 44px;
    min-height: 44px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(255,255,255,0.35);
    border-radius: 50%;

    padding: 0;           /* ÇOK ÖNEMLİ */
    line-height: 1;       /* ÇOK ÖNEMLİ */
    box-sizing: border-box;

    transition: all .25s ease;
}

.header-search-btn i {
    font-size: 16px;
    line-height: 1;
}

.header-search-btn:hover {
    border-color: #ff7a00; /* markanın turuncusu */
}
/* Topbar language flags */
.topbar-lang {
    gap: 12px; /* aralarındaki boşluk */
    line-height: 1;
}

.topbar-lang .lang-flag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 18px;
    overflow: hidden;
}

.topbar-lang .lang-flag img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}




/* Dil switch */
.lang-switch{display:flex;align-items:center;gap:12px}
.lang-switch a span{font-size:18px;line-height:1;transition:.2s;display:inline-block}
.lang-switch a:hover span{transform:scale(1.15);opacity:.9}
.lang-switch a.active span{transform:scale(1.15);opacity:1}
.lang-switch a:not(.active) span{opacity:.65}

.products-carousel-section .product-carousel-slider {
    height: auto !important;
}

.products-carousel-section .product-carousel-slider img {
    height: 320px;
    object-fit: cover;
}

.category-seo-content h2 {
    font-size: 20px;
    line-height: 1.35;
    margin-top: 25px;
    margin-bottom: 10px;
    font-weight: 600;
}

.category-seo-content h3 {
    font-size: 17px;
    line-height: 1.4;
    margin-top: 18px;
    margin-bottom: 8px;
    font-weight: 500;
}

.category-seo-content h4 {
    font-size: 16px;
    line-height: 1.4;
    margin-top: 18px;
    margin-bottom: 8px;
    font-weight: 500;
}


.category-seo-content p,
.category-seo-content li {
    font-size: 15px;
    line-height: 1.6;
}

/* HOME CATEGORIES - FORCE OVERRIDE */
body .home-categories{
  background:#f6f7f9 !important;
}

body .home-categories .home-categories-grid{
  display:grid !important;
  grid-template-columns:repeat(4, minmax(0, 1fr)) !important;
  gap:20px !important;
  width:100% !important;
}

body .home-categories .home-category-card{
  display:flex !important;
  align-items:center !important;
  justify-content:space-between !important;
  gap:14px !important;
  padding:20px 22px !important;
  border:1px solid rgba(0,0,0,.08) !important;
  border-radius:16px !important;
  background:#fff !important;
  text-decoration:none !important;
  transition:transform .18s ease, box-shadow .18s ease, border-color .18s ease !important;
}

body .home-categories .home-category-card:hover{
  transform:translateY(-3px) !important;
  box-shadow:0 14px 34px rgba(0,0,0,.12) !important;
  border-color:rgba(0,0,0,.14) !important;
}

body .home-categories .home-category-arrow{
  font-size:18px !important;
  opacity:.55 !important;
  transition:opacity .18s ease, transform .18s ease !important;
}

body .home-categories .home-category-card:hover .home-category-arrow{
  opacity:.85 !important;
  transform:translateX(3px) !important;
}

/* Responsive */
@media (max-width:1199px){
  body .home-categories .home-categories-grid{ grid-template-columns:repeat(3, minmax(0, 1fr)) !important; }
}
@media (max-width:991px){
  body .home-categories .home-categories-grid{ grid-template-columns:repeat(2, minmax(0, 1fr)) !important; }
}
@media (max-width:575px){
  body .home-categories .home-categories-grid{ grid-template-columns:1fr !important; }
}

/* Kategori başlıklarını biraz küçült + clamp */
body .home-categories .home-category-card h3{
  font-size:16px !important;       /* önce 18px idi */
  line-height:1.25 !important;
  margin-bottom:4px !important;

  display:-webkit-box !important;
  -webkit-line-clamp:2 !important; /* max 2 satır */
  -webkit-box-orient:vertical !important;
  overflow:hidden !important;
}

/* Kart iç padding’i azıcık sıkılaştır */
body .home-categories .home-category-card{
  padding:18px 20px !important;  /* önce 20px 22px idi */
}

/* Ok biraz küçülsün */
body .home-categories .home-category-arrow{
  font-size:16px !important;     /* önce 18px idi */
}

/* Breadcrumb başlık */
.page-title-big-typography .page-bc-title{
  font-size: clamp(34px, 4.2vw, 60px) !important;
  line-height: 1.12 !important;
  margin-bottom: 8px !important;
}

/* =========================================================
   BREADCRUMB / PAGE TITLE
   Daha kısa section + metin aşağıdan başlasın
   ========================================================= */

/* Desktop */
body .page-title-big-typography.page-breadcrumb{
  padding-top: 60px !important;     /* önce: 95px */
  padding-bottom: 55px !important; /* önce: 65px */
}

body .page-title-big-typography .page-bc-inner{
  padding-top: 100px !important;     /* önce: 42px */
}

/* H1 */
body .page-title-big-typography .page-bc-title{
  font-size: clamp(34px, 4.2vw, 60px) !important;
  line-height: 1.12 !important;
  margin: 0 0 8px 0 !important;
}

/* H2: max 2 satır */
body .page-title-big-typography .page-bc-subtitle{
  font-size: clamp(16px, 2vw, 24px) !important;
  line-height: 1.35 !important;

  display: -webkit-box !important;
  -webkit-line-clamp: 2 !important;
  -webkit-box-orient: vertical !important;
  overflow: hidden !important;

  max-width: 900px !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

/* Tablet */
@media (max-width: 991px){
  body .page-title-big-typography.page-breadcrumb{
    padding-top: 70px !important;   /* önce: 78px */
    padding-bottom: 48px !important;/* önce: 55px */
  }

  body .page-title-big-typography .page-bc-inner{
    padding-top: 34px !important;   /* önce: 36px */
  }

  body .page-title-big-typography .page-bc-title{
    font-size: clamp(30px, 5.2vw, 48px) !important;
  }

  body .page-title-big-typography .page-bc-subtitle{
    max-width: 92% !important;
    font-size: clamp(15px, 2.8vw, 20px) !important;
    -webkit-line-clamp: 2 !important;
  }
}

/* Mobile */
@media (max-width: 575px){
  body .page-title-big-typography.page-breadcrumb{
    padding-top: 60px !important;   /* önce: 68px */
    padding-bottom: 42px !important;/* önce: 48px */
  }

  body .page-title-big-typography .page-bc-inner{
    padding-top: 30px !important;   /* önce: 32px */
  }

  body .page-title-big-typography .page-bc-title{
    font-size: clamp(26px, 7vw, 38px) !important;
  }

  body .page-title-big-typography .page-bc-subtitle{
    font-size: 15px !important;
    -webkit-line-clamp: 3 !important;
  }
}


/* BLOG POST breadcrumb H1 küçült + 2 satıra kilitle */
/* BLOG POST breadcrumb H1: küçült ama KESME (wrap olsun) */
body .blog-post-breadcrumb .page-bc-title{
  font-size: clamp(28px, 3.2vw, 46px) !important;
  line-height: 1.18 !important;

  /* KESMEYİ KALDIR */
  display: block !important;
  overflow: visible !important;
  -webkit-line-clamp: unset !important;
  -webkit-box-orient: unset !important;

  /* Güvenli wrap */
  white-space: normal !important;
  word-break: break-word !important;
  text-wrap: balance; /* destekleyen tarayıcılarda daha güzel */
}

/* Mobilde biraz daha küçük + max 3 satır gibi görünsün diye line-height dengesi */
@media (max-width: 575px){
  body .blog-post-breadcrumb .page-bc-title{
    font-size: clamp(24px, 6vw, 34px) !important;
    line-height: 1.2 !important;
  }
}

/* Marka kart açıklamasını kısalt */
.brand-card-desc{
  font-size: 15px;
  line-height: 1.45;
  color: #6b7280;

  display: -webkit-box;
  -webkit-line-clamp: 2;   /* max 2 satır */
  -webkit-box-orient: vertical;
  overflow: hidden;

  margin-bottom: 18px;
}


/* BRAND.PHP ürün kart açıklaması - kesin clamp */
body .bg-very-light-gray .feature-box .product-card-desc{
  font-size: 15px !important;
  line-height: 1.45 !important;
  color: #6b7280 !important;

  display: -webkit-box !important;
  -webkit-box-orient: vertical !important;
  -webkit-line-clamp: 3 !important;   /* 2 istersen 2 yap */
  overflow: hidden !important;

  margin: 8px 0 14px 0 !important;
}

/* Mobilde daha kompakt */
@media (max-width: 575px){
  body .bg-very-light-gray .feature-box .product-card-desc{
    -webkit-line-clamp: 2 !important;
    font-size: 14px !important;
  }
}

/* PRODUCTS.PHP kategori açıklaması clamp */
body .products-cat-desc{
  font-size: 15px !important;
  line-height: 1.5 !important;

  display: -webkit-box !important;
  -webkit-box-orient: vertical !important;
  -webkit-line-clamp: 3 !important;  /* 2 istersen 2 */
  overflow: hidden !important;

  margin: 10px 0 0 0 !important;
}

@media (max-width: 575px){
  body .products-cat-desc{
    -webkit-line-clamp: 2 !important;
    font-size: 14px !important;
  }
}

/* BLOG POST içerik rengi koyulaştır */
body .blog-content{
  color: #111827 !important; /* near-black */
}

/* İçerik içindeki tüm metinler */
body .blog-content p,
body .blog-content li,
body .blog-content span,
body .blog-content blockquote,
body .blog-content td,
body .blog-content th{
  color: #111827 !important;
}

/* Linkler biraz mavi kalsın */
body .blog-content a{
  color: #2563eb !important;
  text-decoration: underline;
}

/* Heading’ler zaten koyu ama garanti */
body .blog-content h1,
body .blog-content h2,
body .blog-content h3,
body .blog-content h4,
body .blog-content h5,
body .blog-content h6{
  color: #111827 !important;
}

/* BLOG POST satır aralığı ve paragraf spacing iyileştirme */
body .blog-content{
  line-height: 1.55 !important;   /* önce: ~1.75 civarıydı */
  font-size: 16px;                /* masaüstü temel metin */
}

/* Paragraf araları biraz kısalsın */
body .blog-content p{
  margin-bottom: 14px !important; /* önce: ~20–24px */
}

/* Liste maddeleri */
body .blog-content ul,
body .blog-content ol{
  margin-bottom: 14px !important;
  padding-left: 20px;
}

body .blog-content li{
  margin-bottom: 6px !important;
  line-height: 1.5 !important;
}

/* Blockquote daha kompakt */
body .blog-content blockquote{
  margin: 16px 0 !important;
  padding: 12px 18px !important;
  line-height: 1.55 !important;
}

/* Tablolar daha sıkı */
body .blog-content table{
  margin: 16px 0 !important;
}

body .blog-content td,
body .blog-content th{
  padding: 8px 12px !important;
  line-height: 1.45 !important;
}

/* Heading alt boşlukları da biraz kısalsın */
body .blog-content h2,
body .blog-content h3,
body .blog-content h4{
  margin-top: 22px !important;
  margin-bottom: 10px !important;
}

/* Mobilde biraz daha sıkı */
@media (max-width: 575px){
  body .blog-content{
    line-height: 1.5 !important;
    font-size: 15px;
  }

  body .blog-content p{
    margin-bottom: 12px !important;
  }

  body .blog-content h2,
  body .blog-content h3,
  body .blog-content h4{
    margin-top: 18px !important;
    margin-bottom: 8px !important;
  }
}
/* BLOG POST linkleri turuncu yap */
body .blog-content a{
  color: #f97316 !important;      /* Par Makine turuncusu */
  text-decoration: underline;
  font-weight: 500;
  transition: color 0.2s ease;
}

/* Hover: biraz koyulaşsın */
body .blog-content a:hover{
  color: #ea580c !important;      /* daha koyu turuncu */
}

/* =========================================================
   BRAND.PHP Pagination - tema uyum (turuncu + siyah)
   ========================================================= */

body .brand-pagination .pagination{
  gap: 8px;
}

body .brand-pagination .page-link{
  color: #111827 !important;               /* siyah */
  background: #ffffff !important;
  border: 1px solid #e5e7eb !important;
  border-radius: 10px !important;
  padding: 10px 14px !important;
  min-width: 44px;
  text-align: center;
  font-weight: 600;
  box-shadow: none !important;
  transition: all .2s ease;
}

/* Hover */
body .brand-pagination .page-link:hover{
  color: #ffffff !important;
  background: #f97316 !important;          /* turuncu */
  border-color: #f97316 !important;
}

/* Active */
body .brand-pagination .page-item.active .page-link{
  color: #ffffff !important;
  background: #f97316 !important;
  border-color: #f97316 !important;
}

/* Disabled */
body .brand-pagination .page-item.disabled .page-link{
  color: #9ca3af !important;
  background: #f3f4f6 !important;
  border-color: #e5e7eb !important;
  opacity: 1 !important;
}

/* =========================================================
   PAGINATION – BRAND + CATEGORY (tema uyum)
   ========================================================= */

body .brand-pagination .pagination,
body .category-pagination .pagination{
  gap: 8px;
}

body .brand-pagination .page-link,
body .category-pagination .page-link{
  color: #111827 !important;               /* siyah */
  background: #ffffff !important;
  border: 1px solid #e5e7eb !important;
  border-radius: 10px !important;
  padding: 10px 14px !important;
  min-width: 44px;
  text-align: center;
  font-weight: 600;
  box-shadow: none !important;
  transition: all .2s ease;
}

/* Hover */
body .brand-pagination .page-link:hover,
body .category-pagination .page-link:hover{
  color: #ffffff !important;
  background: #f97316 !important;          /* turuncu */
  border-color: #f97316 !important;
}

/* Active */
body .brand-pagination .page-item.active .page-link,
body .category-pagination .page-item.active .page-link{
  color: #ffffff !important;
  background: #f97316 !important;
  border-color: #f97316 !important;
}

/* Disabled */
body .brand-pagination .page-item.disabled .page-link,
body .category-pagination .page-item.disabled .page-link{
  color: #9ca3af !important;
  background: #f3f4f6 !important;
  border-color: #e5e7eb !important;
  opacity: 1 !important;
}

/* =========================================================
   PAGINATION – BRAND + CATEGORY + BLOG (tema uyum)
   ========================================================= */

body .brand-pagination .pagination,
body .category-pagination .pagination,
body .blog-pagination.pagination{
  gap: 8px;
}

/* Link */
body .brand-pagination .page-link,
body .category-pagination .page-link,
body .blog-pagination .page-link{
  color: #111827 !important;
  background: #ffffff !important;
  border: 1px solid #e5e7eb !important;
  border-radius: 10px !important;
  padding: 10px 14px !important;
  min-width: 44px;
  text-align: center;
  font-weight: 700;
  box-shadow: none !important;
  transition: all .2s ease;
}

/* Hover */
body .brand-pagination .page-link:hover,
body .category-pagination .page-link:hover,
body .blog-pagination .page-link:hover{
  color: #ffffff !important;
  background: #f97316 !important;
  border-color: #f97316 !important;
}

/* Active */
body .brand-pagination .page-item.active .page-link,
body .category-pagination .page-item.active .page-link,
body .blog-pagination .page-item.active .page-link{
  color: #ffffff !important;
  background: #f97316 !important;
  border-color: #f97316 !important;
}

/* Disabled */
body .brand-pagination .page-item.disabled .page-link,
body .category-pagination .page-item.disabled .page-link,
body .blog-pagination .page-item.disabled .page-link{
  color: #9ca3af !important;
  background: #f3f4f6 !important;
  border-color: #e5e7eb !important;
  opacity: 1 !important;
}

/* Blog ok ikonları turuncu hover ile uyumlu kalsın */
body .blog-pagination .page-link i{
  line-height: 1;
}
/* =========================================================
   HOME SLIDER (iOS/Mobile) - Alttaki gri çizgiyi KESİN yok et
   Sebep: 100vh/scrollbar bug + cover layer 1-2px kısa kalması
   ========================================================= */
@media (max-width: 575px) {

  /* 1) iOS Safari için gerçek viewport yüksekliği */
  section.p-0.bg-dark-gray .swiper.full-screen {
    height: 100svh !important;
    /* iOS modern */
    height: 100dvh !important;
    /* iOS yeni */
    min-height: 560px !important;
    /* güvenlik */
    overflow: hidden !important;
    position: relative !important;
    background: transparent !important;
  }

  /* 2) slide/wrapper tam yüksekliği alsın */
  section.p-0.bg-dark-gray .swiper.full-screen .swiper-wrapper,
  section.p-0.bg-dark-gray .swiper.full-screen .swiper-slide {
    height: 100% !important;
  }

  /* 3) Asıl fix: cover-background 1-2px taşsın (gri çizgi böyle biter) */
  section.p-0.bg-dark-gray .swiper.full-screen .swiper-slide .cover-background {
    position: absolute !important;
    top: -2px !important;
    left: -2px !important;
    right: -2px !important;
    bottom: -2px !important;
    width: auto !important;
    height: auto !important;
    background-size: cover !important;
    background-position: center center !important;
    transform: translateZ(0);
  }

  /* 4) overlay da aynı şekilde taşsın */
  section.p-0.bg-dark-gray .swiper.full-screen .swiper-slide .cover-background .opacity-extra-medium {
    position: absolute !important;
    top: -2px !important;
    left: -2px !important;
    right: -2px !important;
    bottom: -2px !important;
  }

  /* 5) Arkadaki griyi asla gösterme */
  section.p-0.bg-dark-gray {
    background: transparent !important;
    overflow: hidden !important;
  }
}
@media (max-width: 576px) {
  .brand-carousel-slider { min-height: 64px; }
  .brand-carousel-slider .swiper-slide img {
    height: 44px;
    max-width: 120px;
  }
}
/* HOME - Brand logos: üst üste binmeyi kesin bitir */
.brand-carousel-slider {
  overflow: hidden;
}

/* Swiper'ın temel dizilimi bozulduysa geri zorla */
.brand-carousel-slider .swiper-wrapper {
  display: flex !important;
  flex-wrap: nowrap !important;
  align-items: center;
}

.brand-carousel-slider .swiper-slide {
  flex: 0 0 auto !important;
  /* üst üste binmeyi keser */
  width: auto !important;
  /* Swiper width veriyorsa onu bozma */
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Logo taşmasın, birbirini ezmesin */
.brand-carousel-slider .swiper-slide img {
  max-width: 100%;
  height: 60px;
  /* senin max-height ile uyumlu */
  width: auto;
  object-fit: contain;
}

/* Mobilde biraz küçültelim ki yan yana net dursun */
@media (max-width: 576px) {
  .brand-carousel-slider .swiper-slide img {
    height: 44px;
  }
}
@media (max-width: 576px) {
  .brand-carousel-slider .swiper-slide {
    width: 20% !important;
    /* yaklaşık 2.5 logo görünür */
  }
}
.home-hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}