/* poppins-300 - latin_latin-ext */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 300;
  src: url('/katalog/file/font/poppins-v24-latin_latin-ext-300.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* poppins-regular - latin_latin-ext */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 400;
  src: url('/katalog/file/font/poppins-v24-latin_latin-ext-regular.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* poppins-500 - latin_latin-ext */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 500;
  src: url('/katalog/file/font/poppins-v24-latin_latin-ext-500.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* quicksand-regular - latin_latin-ext */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Quicksand';
  font-style: normal;
  font-weight: 400;
  src: url('/katalog/file/font/quicksand-v37-latin_latin-ext-regular.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* quicksand-500 - latin_latin-ext */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Quicksand';
  font-style: normal;
  font-weight: 500;
  src: url('/katalog/file/font/quicksand-v37-latin_latin-ext-500.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* quicksand-600 - latin_latin-ext */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Quicksand';
  font-style: normal;
  font-weight: 600;
  src: url('/katalog/file/font/quicksand-v37-latin_latin-ext-600.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}



/* CSS DEĞİŞKENLERİ */
:root {
  --header-height: 100px;
  --primary-color: #333;
  --accent-color: #764ba2;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family:  'Montserrat', 'Open Sans', sans-serif;
  background-color: #fff;
  color: #333;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
  scroll-behavior: smooth;
  padding: 0px;
min-width: 300px;

}

/* =========================================
   1. DİNAMİK HEADER (Fixed)
   ========================================= */
.dynamic-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  background-color: transparent;
  z-index: 1000;
  transition:
    height 0.4s ease,
    background-color 0.4s ease,
    opacity 0.4s ease;
  display: flex;
  align-items: center;
}

.header-container {
  max-width: 1540px;
  width: calc(100% - 60px);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
  position: relative;
}

/* LOGO (tek tanım) */
.logo {
  font-size: 1.5rem;
  font-weight: 800;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-decoration: none;
  z-index: 1002;
  transition: color 0.3s;
  height: 100%;
  display: flex;
  align-items: center;
}

.site-logo {
  height: 45px;
  width: auto;
  display: block;
  transition: height 0.25s ease;
}

.dynamic-header.shrink .site-logo {
  height: 40px;
}

.desktop-nav {
  display: flex;
  gap: 25px;
  list-style: none;
  z-index: 1002;
}

.desktop-nav a {
color: #beb9b9;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.9rem;
  transition: color 0.3s;
  position: relative;
  font-family: 'Montserrat', sans-serif;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.desktop-nav a:hover {
  color: #fff;
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1050;
  padding: 10px;
}

.hamburger-line {
  display: block;
  width: 25px;
  height: 3px;
  background-color: #fff;
  margin: 5px 0;
  transition: all 0.3s ease;
}

/* =========================================
   2. MOBİL MENÜ (Full Screen)
   ========================================= */
.mobile-menu-overlay {
  position: fixed;
  top: 0;
  right: 0;
  width: 70%;
  height: 100vh;
  background-color: #111;
  color: #fff;
  z-index: 1040;
  transform: translateX(100%);
  transition: transform 0.4s ease;
  overflow-y: auto;
  padding: 80px 20px 20px;
}

.mobile-menu-overlay.active {
  transform: translateX(0);
}

.mobile-nav {
  list-style: none;
  display: flex;
  flex-direction: column;
}

.mobile-nav li {
  border-bottom: 1px solid #333;
}

.mobile-nav a {
  color: #ccc;
  text-decoration: none;
  font-size: 1.2rem;
  display: block;
  padding: 25px 10px;
  transition: all 0.3s;
}

/* Mobile link helper (HTML'de var) */
.mobile-link {
  color: inherit;
  text-decoration: inherit;
  font-size: inherit;
  display: inherit;
  padding: inherit;
  transition: inherit;
}
.mobile-nav a:hover {
  background-color: #222;
  color: #fff;
  padding-left: 20px;
}

/* Header durumları */
.dynamic-header.scrolling {
  height: 65px;
  background-color: #000;
}

.dynamic-header.hidden {
  height: 0;
  opacity: 0;
  padding: 0;
  overflow: hidden;
  pointer-events: none;
}

.dynamic-header.scrolling .logo,
.dynamic-header.hidden .logo {
  color: #fff;
}

@media (max-width: 768px) {
  .desktop-nav {
    display: none;
  }
  .mobile-toggle {
    display: block;
  }
  .logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }
}

/* =========================================
   3. HERO ALANI
   ========================================= */
.hero-section {
  position: relative;
  width: 100%;
  height: 450px; /* height + max-height çelişkisi giderildi */
  display: grid;
  place-items: end center;
  text-align: center;
  color: #fff;
  overflow: hidden;
  padding-bottom: 35px;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-media picture,
.hero-media img {
  width: 100%;
  height: 100%;
  display: block;
}

.hero-media img {
  object-fit: cover;
  object-position: center;
  filter: blur(6px);
  transform: scale(1.05);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.25),
    rgba(0, 0, 0, 0.55)
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(1100px, 92vw);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  padding: 0;
}

.hero-label {
  margin: 0;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: clamp(20px, 3.8vw, 45px);
  font-family: 'Montserrat', sans-serif;
color: #fff;
}
.hero-actions {
  display: flex;
  gap: 18px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

/* ORTAK PILL */
.pill-search {
  height: 44px;
  border-radius: 999px;
  border: 2px solid rgba(255, 255, 255, 0.7);
  background: rgba(0, 0, 0, 0.12);
  backdrop-filter: blur(7px);
  -webkit-backdrop-filter: blur(7px);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.25);
}
.pill-search {
  display: flex;
  align-items: center;
  gap: 10px;
  width: min(330px, 90vw);
  padding: 0 10px 0 20px;
  transition:
    border-color 0.2s ease,
    background 0.2s ease;
}

.pill-search input {
  flex: 1;
  height: 100%;
  border: 0 !important;
  outline: 0 !important;
  background: transparent !important;
  color: #fff !important;
  font-size: 15px;
  -webkit-appearance: none;
  appearance: none;
}

.pill-search input::-webkit-search-cancel-button {
  -webkit-appearance: none;
  appearance: none;
}

.pill-search input::placeholder {
  color: rgba(255, 255, 255, 0.75);
}

.pill-search button {
  width: 30px;
  height: 30px;
  border-radius: 999px;
  border: 0;
  background: transparent;
  color: #fff;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition:
    background 0.2s ease,
    color 0.2s ease;
}

.pill-search:hover {
  border-color: #fff;
  background: rgba(0, 0, 0, 0.18);
}

.pill-search:focus-within {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.1);
}

.pill-search:focus-within button {
  background: #fff;
  color: #111;
}

.pill-search__icon {
  font-size: 18px;
  line-height: 1;
}

/* =========================================
   4. STICKY MENU (70px)
   ========================================= */
.sticky-menu-bar {
  height: 60px;
  width: 100%;
  background-color: #fff;
  border-bottom: 1px solid #eee;
  color: #333;
  position: sticky;
  top: var(--header-height);
  z-index: 199;
  display: flex;
  align-items: center;
  transition: top 0.4s ease;
box-shadow: 0 10px 15px -7px rgba(0, 0, 0, 0.07);
}

.sticky-content {
display: flex;
  align-items: center;
  gap: 12px;
  max-width: 1160px;
  width: calc(100% - 20px);
  margin: 0 auto;
  font-weight: 700;
}

/* =========================================
   5. İÇERİK ALANI
   ========================================= */
.main-content {
padding: 15px 0 15px;
  margin: 0 auto;
  max-width: 1160px;
  width: calc(100% - 20px);
  flex: 1;
}

.main-contenti {
  padding: 15px 0 15px;
  margin: 0 auto;
  max-width: 1160px;
  width: calc(100% - 20px);
  flex: 1;
}
/* Ürün kartları */
.product-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
  width: 100%;
  max-width: 1600px;
}

.card {
border-bottom: 2px solid #0000001f;
  background-color: #f7f7f7bd;
  padding: 10px 10px 6px 10px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: calc(50% - 10px);
  text-decoration: none;
}

.image-box {
width: 150px;
  height: 180px;
  margin-bottom: 6px;
  background-color: #f4f4f4;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.image-box img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.product-title {
font-size: 12px;
  font-weight: 600;
  line-height: 1.5;
  height: calc(1.3em * 2);
  display: flex;
  align-items: center;
  justify-content: center;
  text-transform: uppercase;
  font-family: "Montserrat", sans-serif;
  overflow: hidden;
  text-align: center;
}


@media (min-width: 600px) {
  .card {
    width: calc(33.33% - 10px);
  }
}

@media (min-width: 900px) {
  .card {
    width: calc(25% - 10px);
  }
}

@media (min-width: 1200px) {
  .card {
    width: calc(20% - 15px);
  }
}

@media (max-width: 768px) {
  .image-box {
    width: 100%;
    height: auto;
    aspect-ratio: 150 / 180;
  }

.hero-section {
  height: 320px; /* height + max-height çelişkisi giderildi */

}


}

a.card .product-title {
  color: #333;
  text-decoration: none;
}

/* =========================================
   7. SCROLL TO TOP BUTTON
   ========================================= */
.scroll-top-btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 40px;
  height: 40px;
  background-color: #fff;
  border-radius: 50%;
  cursor: pointer;
  z-index: 990;

  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);

  transition:
    opacity 0.4s ease,
    transform 0.4s ease,
    visibility 0.4s;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: none;
}

.scroll-top-btn.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.progress-ring {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}

.progress-ring__circle-bg {
  fill: transparent;
  stroke: #eee;
  stroke-width: 3;
}

.progress-ring__circle {
  fill: transparent;
  stroke: var(--accent-color);
  stroke-width: 3;
  stroke-linecap: round;
  stroke-dasharray: 0 0;
  transition: stroke-dashoffset 0.1s linear;
}

.scroll-top-btn svg.icon {
  width: 18px;
  height: 18px;
  stroke: var(--accent-color);
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}



/* Pricing visibility controls */
body:not(.pricing-unlocked) [data-pricing-on] {
  display: none !important;
}
body.pricing-unlocked [data-pricing-off] {
  display: none !important;
}

/* =========================================================
   PRODUCT TITLE LINK FIX (Underline kaldır + Hover kırmızı)
   ========================================================= */
a.card,
a.card:visited,
a.card:hover,
a.card:active {
  text-decoration: none !important;
  color: inherit;
}

a.card .product-title {
  color: #333 !important;
  text-decoration: none !important;
  transition: color 0.4s ease;
}

a.card:hover .product-title {
  color: red !important;
}















      * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
      }



      .container {
        max-width: 1160px;
        margin: 0 auto;
        background-color: white;
        min-width: 300px;
padding: 15px 0 15px;
      }

      .product-section {
        display: flex;
        position: relative;
      }

      .left-column {
        width: 50%;
        position: sticky;
        top: 0;
        height: fit-content;
        max-height: 100vh;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 10px;
        background-color: #fff;
        align-self: flex-start;
        order: 1; /* Sol sütun solda */
      }

      .right-column {
        width: 50%;
        max-width: 480px;
        padding: 10px 10px 10px 10px;
        overflow-y: auto;
        order: 2;
        margin-left: auto; /* Sağa hizalar */
      }

      .product-image {
        max-width: 100%;
        height: auto;
        max-height: calc(100vh - 20px);
        object-fit: contain;
      }

      .detail-section {
width: 100%;
  padding: 40px 0px;
  background-color: #fff;
  border-top: 1px solid #e0e0e0;
      }

      h1 {
        font-size: 32px;
        margin-bottom: 20px;
        color: #333;
      }

      h2 {
        font-size: 24px;
        margin: 30px 0 15px;
        color: #333;
      }

      h3 {
        font-size: 18px;
        margin: 20px 0 10px;
        color: #444;
      }

      p {
        line-height: 1.8;
        color: #666;
        margin-bottom: 15px;
      }



.price-box {
  background-color: #f0f0f0;
  padding: 12px 16px;
  margin: 0px;
}

.price {
  display: flex;
  justify-content: space-between;
  align-items: center;
  line-height: 1; /* ÖNEMLİ */
}

.price span {
  display: flex;        /* içerik kendi içinde ortalansın */
  align-items: center;
}

.price span:first-child {
font-weight: 400;
  color: #666;
  font-size: 1rem;
}

.price span:last-child {
  text-decoration: none;
  color: #008408;
  font-weight: 600;
  font-size: 1.2rem;
  letter-spacing: 0px;
}

      .barkod-kodu {
        background-color: #f0f0f0;
        padding: 10px;
        border-radius: 0px;
        margin: 20px 0;
      }

      .barkod {
font-size: 0.95rem;
  font-weight: 600;
  color: #333;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
      }

      .stock-info {
 color: #4caf50;
  font-weight: 500;
  margin: 10px 0;
  display: flex;
  align-items: center;
  gap: 12px;
  text-transform: capitalize;
  font-family: Montserrat;
      }

      .stock-dot {
        width: 12px;
        height: 12px;
        background-color: #4caf50;
        border-radius: 50%;
        flex-shrink: 0;
      }

      .delivery-info {
      margin: 0 0;
  padding: 5px;
  background-color: #fff;
  border-left: 0px solid #2196f3;
  border-bottom: 1px solid #f0f0f0;
      }

      .info-row {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin: 5px 0;
      }

      .info-row span:first-child {
        color: #666;
  font-weight: 400;
  font-size: 1rem;
      }

      .info-row span:last-child {
color: #333;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0px;
      }
      .code {
        display: flex;
        justify-content: center; /* Yatay ortalama */
        align-items: center; /* Dikey ortalama */
        margin: 5px 0;
      }

      .buy-button {
        width: 100%;
        padding: 15px;
        background-color: #c41e3a;
        color: white;
        border: none;
        border-radius: 4px;
        font-size: 16px;
        font-weight: bold;
        cursor: pointer;
        margin-top: 20px;
      }

      .buy-button:hover {
        background-color: #a01729;
      }

      .tabs {
        display: flex;
        border-bottom: 2px solid #e0e0e0;
        margin-bottom: 30px;
        flex-wrap: wrap;
      }

      .tab {
        padding: 15px 30px;
        cursor: pointer;
        border-bottom: 3px solid transparent;
        margin-bottom: -2px;
        white-space: nowrap;
      }

      .tab.active {
        border-bottom-color: #c41e3a;
        font-weight: bold;
      }

      .content-block {
        margin-bottom: 30px;
      }

      ul {
        margin-left: 20px;
        line-height: 1.8;
      }

      li {
        margin-bottom: 0px;
        color: #666;
      }


.codtext {
  display: flex;
  justify-content: space-between;
  align-items: center;   /* dikey ortalama */
  gap: 12px;             /* aradaki boşluk */
  background: #f5f5f5;
  padding: 10px 14px;
}

.codtext span {
 font-size: 1rem;
  font-weight: 500;
  letter-spacing: 1px;
}

.codtext .btn {
  white-space: nowrap;   /* buton taşmasın */
  text-decoration: none;
  font-size: 0.9rem;
  color: #000;
  font-weight: 600;
}

.barcode__canvas {
  display: block;
  margin: 0 auto;
}

      /* 768px ve altı için responsive tasarım */
      @media screen and (max-width: 768px) {
        body {
          padding: 0px;
        }

        .product-section {
          flex-direction: column;
        }

        .left-column {
          width: 100%;
          position: relative;
          height: auto;
          order: -1; /* Resmi üste taşı */
          padding: 10px;
        }

        .right-column {
          width: 100%;
          max-width: 480px; /* max-width iptal */
          margin: auto; /* margin-left iptal */
          padding: 10px;
          order: 1;
        }

        .detail-section {
          padding: 20px;
        }

        h1 {
          font-size: 24px;
        }

        h2 {
          font-size: 20px;
        }

        h3 {
          font-size: 16px;
        }

        .price {
          font-size: 15px;
        }

        .barkod {
          font-size: 15px;
        }

        .tab {
          padding: 12px 15px;
          font-size: 14px;
        }
      }

      /* 480px ve altı için ek optimizasyonlar */
      @media screen and (max-width: 480px) {
        .right-column {
          padding: 10px;
        }

        .detail-section {
          padding: 15px;
        }

        h1 {
          font-size: 20px;
        }

        .price-box {
          padding: 10px;
        }
        .barkod-kodu {
          padding: 10px;
        }
        .delivery-info {
          padding: 10px;
        }

        .tab {
          padding: 10px 12px;
          font-size: 13px;
        }
      }

      /* 300px için minimum optimizasyon */
      @media screen and (max-width: 360px) {
        body {
          padding: 0px;
        }

        .right-column,
        .detail-section {
          padding: 10px;
        }

        h1 {
          font-size: 18px;
        }

        .stock-info {
          font-size: 14px;
        }

        .price {
          font-size: 20px;
        }
        .barkod {
          font-size: 20px;
        }
        .buy-button {
          padding: 12px;
          font-size: 14px;
        }

        .tab {
          padding: 8px 10px;
          font-size: 12px;
        }
      }











.footer {
  background: #000 !important;
  color: #fff !important;
  padding: 35px 10px 15px;
  font-family: 'Montserrat', sans-serif;
}

.footer-inner {
  max-width: 1160px;
  margin: 0 auto;
}

.footer-links {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 30px !important;
  margin-bottom: 20px;
}

@media(max-width: 900px){
  .footer-links{
    grid-template-columns: 1fr !important;
    text-align: center;
  }
}

.footer a {
  color: #cfcfcf !important;
  text-decoration: none !important;
}

.footer a:hover {
  color: #fff !important;
}

.social-icons {
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 14px !important;
  margin: 20px 0;
}

.social-icons .social {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #111;
  display: flex;
  align-items: center;
  justify-content: center;
}

.social-icons .social svg path {
  fill: #fff;
  transition: fill 0.2s ease;
}

.social-icons .social:hover svg path {
  fill: #25d366;
}

.footer-bottom {
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
  flex-wrap: wrap !important;
  gap: 12px !important;
  border-top: 1px solid rgba(255,255,255,0.15) !important;
  padding-top: 16px !important;
}

@media(max-width: 900px){
  .footer-bottom{
    flex-direction: column !important;
    text-align: center !important;
  }
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-start;
font-size: 12px;
}

.footer-copy {
  color: #777;
  font-size: 12px;
}

.footer-agency img {
  height: 26px;
  width: auto;
  opacity: 0.85;
}

.footer-contact {
  list-style: none;
  padding: 0;
  margin-top: 15px;
text-align: left;
}

@media (min-width: 900px) {
  .footer-contact {
    display: flex;
    gap: 60px;

    align-items: center;
  }

  .footer-contact li {
    margin: 0 !important;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    gap: 6px;
  }
}



 .call-link{
  text-decoration: none;
  color: #008408;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0px;
}






.img-border {
border: 1px solid #e0e0e0;
padding:8px 8px 8px 8px
}

.urun{
text-transform: capitalize;
  font-family: "Montserrat", sans-serif;
  font-size: 1.2rem;
  font-weight: 500;
  hyphens: auto;
  letter-spacing: 0.01rem;
  line-height: 2rem;
}


/* Home link */
.home-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:32px;
  height:32px;
  text-decoration:none;
  flex:0 0 auto;
}

/* Home SVG */
.home-ico {
  width: 20px;
  height: 20px;
  display: block;
  margin-bottom: 3px;
  color: #000;
}

/* Breadcrumb container */
.crumbs{
  display:flex;
  align-items:center;
  min-width:0;            /* ellipsis için kritik */
}

/* ol reset */
.crumbs ol{
  display:flex;
  align-items:center;
  gap:8px;
  margin:0;
  padding:0;
  flex-wrap:nowrap;       /* tek satır */
  min-width:0;            /* ellipsis için kritik */
}

/* li reset */
.crumbs li{
  list-style:none;
  display:flex;
  align-items:center;
  gap:8px;
  min-width:0;            /* ellipsis için kritik */
}

/* Linkler */
.crumbs a{
  text-decoration:none;          /* alt çizgi yok */
  color:var(--text, #222);       /* normal renk */
  display:inline-flex;
  align-items:center;
  min-width:0;                   /* ellipsis için kritik */
  transition:color .3s ease;     /* yumuşak geçiş */
}

.crumbs a:hover{
  color:#e60000;                 /* hover kırmızı */
}

/* Yazı (tek tip) */
.label{
  font-size:14px;
 font-family: "Montserrat", sans-serif;
  font-weight:500;
  line-height:1.2;
  display:block;
  min-width:0;                   /* ellipsis için kritik */
  overflow:hidden;
  text-overflow:ellipsis;
  white-space:nowrap;            /* tek satır */
text-transform: capitalize;
}


.label-full {
font-size: 14px;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  line-height: 1.2;
  display: block;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  text-transform: capitalize;
}


/* Eski short/full yapısını tamamen devre dışı bırak */
.label-short{ display:none !important; }


/* Separator */
.crumb-sep{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  flex:0 0 auto;
}

.sep-ico{
  width:12px;
  height:12px;
  display:block;
  color:var(--muted);
margin-bottom: 0px;
}

/* Davranış:
   - Son breadcrumb kalan alanı doldurur, sığmazsa ... olur
   - Öncekiler de gerektiğinde küçülebilir ama boşluk varsa TAM görünür
*/
.crumbs li:last-child{
  flex:1 1 auto;
}

.crumbs li:not(:last-child){
  flex:0 1 auto;
}


/* FİLTRELEME PANELİ STİLLERİ - COMPACT */
.filter-panel {
padding: 4px 8px;
  margin-bottom: 0px;
}

.filter-container {
  max-width: 1160px;
  width: calc(100% - 0px);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.filter-group {
  display: flex;
  align-items: center;
  gap: 8px;
}

.filter-label {
font-weight: 600;
  font-size: 14px;
  color: var(--muted);
  white-space: nowrap;
   font-family: "Montserrat", sans-serif;
}

.filter-select {
  padding: 6px 12px;
  border: 1px solid var(--border);
  border-radius: 0px;
  background: white;
  font-size: 13px;
  color: var(--fg);
  cursor: pointer;
  transition: all 0.2s ease;
  font-family: inherit;
  min-width: 140px;
}

.filter-select:hover {
  border-color: #667eea;
}

.filter-select:focus {
  outline: none;
  border-color: #667eea;
}

.filter-divider {
  width: 1px;
  height: 24px;
  background: var(--border);
  margin: 0 4px;
}

.filter-btn-reset {
padding: 6px 14px;
  border: 1px solid var(--border);
  border-radius: 0px;
  background: white;
  color: var(--muted);
  font-size: 14px;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
  font-family: Montserrat;
  font-weight: 600;
}

.filter-btn-reset:hover {
  background: #f8f9fa;
  color: var(--fg);
}

.product-count {
  margin-left: auto;
  color: var(--muted);
  font-size: 12px;
  white-space: nowrap;
}

@media (max-width: 768px) {
  .filter-container {
    gap: 8px;
  }
  
  .filter-group {
    flex: 1;
    min-width: calc(50% - 4px);
  }
  
  .filter-select {
    width: 100%;
    min-width: auto;
  }
  
  .filter-label {
    display: none;
  }
  
  .filter-divider {
    display: none;
  }
  
  .product-count {
    width: 100%;
    margin-left: 0;
    text-align: center;
  }
  
  .filter-btn-reset {
    width: 100%;
  }
}