/* 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: 0px;
  --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;

}



/* HEADER */
.header {
  inset: 0 0 auto 0;
  z-index: 1000;
  height: 70px;
  display: flex;
  align-items: center;
  background: #fff; /* SABİT BEYAZ */
  border-bottom: 1px solid #eee;
}

/* CONTAINER */
.header-container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 10px;

  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand-logo {
  height: 40px;
  width: auto;
}

/* MENU */
.nav-links {
  display: flex;
  align-items: center;
  gap: 15px;
}

/* AUTH */
.auth-area {
  display: flex;
  gap: 15px;
}

/* ITEM */
.nav-item {
display: flex;
  align-items: center;
  padding: 6px 14px;
  border-radius: 0px;
  font-size: 13px;
  text-decoration: none;
  color: rgba(45,35,25,.92);
  transition: 0.2s;
  font-weight: 600;
padding:8px 8px
}

.nav-item:hover {
  background: #f3f3f3;
}

/* BUTTON STYLES */
.nav-item.primary {
  background: #0074e8;
  color: #fff;
}

.nav-item.primary:hover {
  background: #000;
}

.nav-item.outline {
  border: 1px solid #ddd;
}

/* BURGER */
.burger {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
}

.burger span {
  width: 25px;
  height: 3px;
  background: #333;
}

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

  .burger {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 70px;
    right: -100%;

    width: 80%;
    height: calc(100vh - 70px);

    background: #fff;

    flex-direction: column;
    align-items: flex-end;

    padding: 20px;
    gap: 15px;

    transition: 0.3s;
  }

  .nav-links.active {
    right: 0;
  }

  .auth-area {
    flex-direction: column;
    width: 100%;
    align-items: flex-end;
  }

  .nav-item {
    font-size: 18px;
  }
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

/* 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;
}
.brand-logo img {
  height: 40px;
  width: auto;
}
.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: 70px;
  background-color: #fff;
}

.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;
  margin: 0 auto;
  max-width: 1160px;
  width: calc(100% - 20px);
  flex: 1;
}

.product-container {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 15px;
  width: 100%;
}

.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;
  text-decoration: none;
  width: 100%;
  box-sizing: border-box;
}

@media (max-width: 1200px) {
  .product-container {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 900px) {
  .product-container {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 600px) {
  .product-container {
    grid-template-columns: repeat(2, 1fr);
  }
}





.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 (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;
}

      .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%;
  }
}


footer {
  padding: 0px 0;
  background: rgba(255, 255, 255, 0.35);
}
.topbar {
  background: #1a1a1a;
}
.topbar-cerceve {
  max-width: 1160px;
  margin: 0 auto;
}

.social {
  width: 330px;
  height: 40px;
  display: flex;
  background: #d9d9d9;
place-items: center;
  transition: background 0.3s ease;
}

.social a {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.social svg {
  width: 25px;
  height: 25px;
  fill: #000;
transition: fill 0.3s ease;
}

.fcontainer {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 10px;
background: #fff;
}

.topbar-cerceve {
  max-width: 1160px;
  margin: 0 auto;
}

.social {
  width: 330px;
  height: 40px;
  display: flex;
  background: #d9d9d9;
}

.social a {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.social svg {
  width: 25px;
  height: 25px;
  fill: #000;
}





/* Hover renkleri */
.social.facebook:hover svg {
  fill: #1877f2;
}
.social.instagram:hover svg {
  fill: #e4405f;
}
.social.x:hover svg {
  fill: #1da1f2;
}
.social.whatsapp:hover svg {
  fill: #25d366;
}
.social.youtube:hover svg {
  fill: #ff0000;
}





/* ══════════════════════
   FOOTER BODY  (beyaz bg)
══════════════════════ */
.footer-body{
  background:#fff;
  display:flex;
  gap:20px;
  padding:20px 0 0 0;
max-width: 1160px;
  margin: 0 auto;
font-family:Montserrat
}

/* ── NAV KARTI (gri, 3 kolon) ── */
.nav-card{
  background:#f0f0f0;
  flex:1;
  padding:15px 15px;
  display:flex;
  gap:20px;
}
.nav-col{flex:1}
.nav-col h3{
  font-size:11px;font-weight:800;color:#2a2a2a;
  text-transform:uppercase;letter-spacing:.3px;
  margin: 0px 0px 10px;
}
.nav-col ul li{
  display:flex;align-items:flex-start;gap:6px;
  margin-top: 10px;

}
.nav-col ul {
padding:0px;
margin-left:0px
}

.nav-col ul li a{
  color:#555;font-size:12px;font-weight:500;letter-spacing:.3px;line-height:1.4;  text-decoration:none
}
.nav-col ul li a:hover{color:#222}
.nav-col .sub-h{
  font-size:11px;font-weight:800;color:#2a2a2a;
  text-transform:uppercase;margin-top:20px;margin-bottom:8px;
}
.nav-col .copy-note{color:#959595;font-size:12px;font-weight:700;margin-top:12px}

/* ── SAĞ: 2 iletişim kutusu ── */
.contact-col{
 flex-shrink:0;
  display:flex;
gap:20px;
}
.cbox {
  background: #fff;
  border: 1px solid #e8e8e8;
  padding: 8px 8px;
  display: flex;
  flex-direction: column;
  align-items: center;     /* yatay ortalama */
  justify-content: center; /* 🔥 dikey ortalama */
  text-align: center;
  gap: 5px;
  min-height: 106px;
}
.cbox svg{width:25px;height:25px}
.cbox strong{font-size:14px;font-weight:800;color:#222}
.cbox p{font-size:12.5px;color:#555;line-height:1.6;margin:0}
.cbox .hours{font-size:12.5px;color:#555}
.cbox .phone{
  font-size:22px;font-weight:800;color:#222;
  display:block;margin-top:4px;
}
.cbox .phone .green{color:#009933}

/* ══════════════════════
   FOOTER ALT (yasal + birNC)
══════════════════════ */
.footer-alt{
  background:#fff;
  display:flex;align-items:center;justify-content:space-between;
  flex-wrap:wrap;gap:8px;
}
.footer-alt a{
  font-size:12.5px;color:#aaa;margin-right:24px;
text-decoration:none
}
.footer-alt a:hover{color:#555}
.birnc{
  font-style:italic;font-weight:700;font-size:22px;
  color:#222;letter-spacing:-1px;
}
.birnc em{color:#e53935;font-style:normal}

/* ══════════════════════════════════════
   MOBİL  ≤ 768px
══════════════════════════════════════ */
@media(max-width:768px){
.fcontainer {
  padding: 0px;
}

.topbar{ display:none}
  /* üst şerit: sol siyah yok, sosyal ortada gri, sağ siyah */
  .topbar-left{width:0;display:none}
  .topbar-social{width:auto;flex:1;max-width:380px}

.btn.primary {
  margin: 10px 10px 0px;
height: 40px;
}

  /* footer body: column, no left padding */
  .footer-body{
    flex-direction:column;
    padding:0;
    gap:0;
  }

  /* nav kartı: tek kolon, ortalı metin */
  .nav-card{
display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
  .nav-col{margin-bottom:0px}
  .nav-col:last-child{margin-bottom:0}
  
  .nav-col ul li::before{width:auto}

  /* iletişim kutuları: tam genişlik, dikey */
  .contact-col{
    width:100%;gap:0;
    flex-direction:column;
  }
  .cbox{
border: 1px solid #e8e8e8;
    margin: 10px 10px 0;
    min-height: 100px;}


  .footer-alt {
    display: none;
  }


  .mob-alt{display:block !important}

  /* topbar sağ siyah genişlet */
  .topbar-right{flex:1}
}

/* Mobil alt blok (yasal, sosyal, copy) */
.mob-alt{display:none}
.mob-alt{background:#fff;text-align:left}

.mob-legal {
  padding: 15px 10px 0px;
  display: grid;
  grid-template-columns: 1fr 1fr; /* 2 sütun */
  gap: 15px;
}

.mob-legal a {
  display: block;
}


.mob-legal a{font-size:10.5px;color:#aaa;text-transform:uppercase;letter-spacing:.5px}
.mob-social{
  display:flex;justify-content:center;gap:12px;
  padding: 15px 10px 0px;;
}
.mob-social a{
  width:36px;height:36px;
  border:1px solid #ddd;border-radius:0;
  display:flex;align-items:center;justify-content:center;
  color:#777;
}
.mob-social a svg{width:25px;height:25px;fill:currentColor}
.mob-copy{
  padding:0 16px 20px;
  font-size:12.5px;color:#777;line-height:2;
}



@media (min-width: 900px) {
  .footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: left;
  }
}

.footer-bottom {
  max-width: 1160px;
  margin: 0 auto;
  padding: 15px 0;
}


.footer-agency {
  text-align: center;
}
.footer-agency img {
  height: 26px;
  width: auto;
  opacity: 0.85;
  transition: opacity 0.2s ease;
margin:auto
}
.footer-agency img:hover {
  opacity: 1;
}



.cookie-banner{
  position:fixed;
  right:2rem;
  bottom:2rem;
  width:60%;
  max-width:900px;
  background:#2f2f2f;
  color:#fff;
  padding: 30px 40px;
  display:flex;
  gap:40px;
  align-items:center;
  justify-content:space-between;

  z-index:9999;
  box-shadow:0 20px 60px rgba(0,0,0,.35);
}


/* TEXT */

.cookie-text{
  max-width:520px;
}

.cookie-text h3{
font-size: 16px;
  margin: 0px;
color:#fff
}

.cookie-text p{
font-size: 13px;
  line-height: 1.4;
  opacity: .85;
  margin: 3px 0px;
color:#fff
}


/* BUTTONS */

.cookie-buttons{
  display:flex;
  flex-direction:column;
  gap:5px;
  min-width:200px;
}

.cookie-buttons button{
padding: 7px 20px;
  border: none;
  background: #e6e6e6;
  cursor: pointer;
}


/* MOBILE */

@media (max-width:768px){

  .cookie-banner{
    left:0;
    right:0;
    bottom:0;

    width:100%;
    max-width:none;

    border-radius:0;

    flex-direction:column;
    align-items:flex-start;

    padding:20px;
  }

  .cookie-buttons{
    width:100%;
  }

  .cookie-buttons button{
    width:100%;
  }

}


#cookieBanner {
  display: none; /* JS açacak */
}

#cookieModal {
  display: none;
  position: fixed;
  z-index: 9999;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.5);
  justify-content: center;
  align-items: center;
}


.cookie-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 99999;
  justify-content: center;
  align-items: center;
}

.cookie-modal-card {
  background: #1e1e1e;
  color: #ffffff;
  padding: 32px;
  border-radius: 0px;
  width: 600px;
  max-width: 90%;
  box-shadow: 0 8px 40px rgba(0,0,0,0.5);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cookie-modal-card h3 {
  font-size: 20px;
  font-weight: 600;
  margin: 0 0 8px 0;
  color: #ffffff;
}

.cookie-toggle {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  background: #2a2a2a;
  border-radius: 0px;
  font-size: 15px;
  cursor: pointer;
}

.cookie-toggle input[type="checkbox"] {
  width: 40px;
  height: 22px;
  appearance: none;
  background: #555;
  border-radius: 0px;
  position: relative;
  cursor: pointer;
  transition: background 0.3s;
  flex-shrink: 0;
}

.cookie-toggle input[type="checkbox"]:checked {
  background: #4caf50;
}

.cookie-toggle input[type="checkbox"]::after {
  content: "";
  position: absolute;
  width: 16px;
  height: 16px;
  background: #fff;
  border-radius: 50%;
  top: 3px;
  left: 3px;
  transition: left 0.3s;
}

.cookie-toggle input[type="checkbox"]:checked::after {
  left: 21px;
}

.cookie-modal-card button {
  padding: 6px 20px;
  border-radius: 0px;
  border: none;
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
}

#cookieSave {
  background: #ffffff;
  color: #1e1e1e;
}

#cookieClose {
  background: #3a3a3a;
  color: #ffffff;
}


/* HEADER */
.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

/* LOGO MOBİL ORTA */
@media (max-width: 768px) {
  .header-container {
    justify-content: center;
  }

  .brand {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }
}

/* BURGER */
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  position: absolute;
  right: 20px;
}

.burger span {
  width: 25px;
  height: 3px;
  background: #000;
  display: block;
  transition: 0.3s;
}

@media (max-width: 768px) {
  .burger {
    display: flex;
z-index: 99999;
  }
}

/* MOBILE MENU */
.nav-links {
  display: flex;
  gap: 20px;
}

@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 90%;
    height: 100vh;
    background: white;
    flex-direction: column;
    padding: 80px 20px;
    transition: 0.4s;
    z-index: 999;
  }

  .nav-links.active {
    right: 0;
  }
}

/* OVERLAY (BLUR) */
.menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  backdrop-filter: blur(6px);
  background: rgba(0,0,0,0.2);
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
  z-index: 998;
}

.menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* MENU üstte kalsın */
.nav-links {
  z-index: 999;
}

/* SCROLL LOCK */
body.no-scroll {
  overflow: hidden;
}