
/* 00-fonts.css */
/* Manrope — kendi sunucumuzda. Google Fonts'a giden ayri DNS + TLS +
   istek zinciri (yaklasik 750 ms render engeli) boylece kalkiyor.
   Degisken font: 200-800 arasi tum kalinliklar tek dosyada. */
@font-face{
  font-family:'Manrope';
  font-style:normal;
  font-weight:200 800;
  font-display:swap;
  src:url('../css/../fonts/manrope-01.woff2') format('woff2');
  unicode-range:U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face{
  font-family:'Manrope';
  font-style:normal;
  font-weight:200 800;
  font-display:swap;
  src:url('../css/../fonts/manrope-00.woff2') format('woff2');
  unicode-range:U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* 01-base.css */
:root {
      --red: #c91020;
      --red-dark: #970914;
      --red-soft: #fff3f4;
      --green: #365547;
      --green-dark: #2b4638;
      --cream: #fffaf3;
      --text: #241b1c;
      --muted: #776d6f;
      --line: rgba(36, 27, 28, .10);
      --white: #ffffff;
      --shadow: 0 2px 10px rgba(0,0,0,.05), 0 8px 20px rgba(0,0,0,.04);
    }

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

    body {
      font-family: "Manrope", sans-serif;
      color: var(--text);
      background:
        radial-gradient(circle at top left, rgba(201, 16, 32, .06), transparent 28%),
        radial-gradient(circle at top right, rgba(31, 122, 69, .05), transparent 30%),
        #f8f6f2;
    }

    a {
      color: inherit;
      text-decoration: none;
    }

    button,
    input {
      font: inherit;
    }

    .site-header {
      position: relative;
      z-index: 100;
      width: 100%;
      background: var(--white);
      box-shadow: var(--shadow);
    }

    .container {
      width: min(1440px, calc(100% - 48px));
      margin-inline: auto;
    }

    /* ÜST SLOGAN BAR */
    .announcement-bar {
      position: relative;
      overflow: hidden;
      color: #fff;
      background:
        linear-gradient(90deg, var(--green-dark), var(--green), var(--green-dark));
      min-height: 38px;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .announcement-bar::before {
      content: "";
      position: absolute;
      inset: 0;
      background:
        repeating-linear-gradient(
          120deg,
          transparent 0 26px,
          rgba(255,255,255,.045) 26px 27px
        );
      pointer-events: none;
    }

    .announcement-content {
      position: relative;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 12px;
      font-size: 12px;
      font-weight: 700;
      letter-spacing: .08em;
      text-transform: uppercase;
      text-align: center;
    }

    .announcement-dot {
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: #ffd86b;
      box-shadow: 0 0 0 6px rgba(255, 216, 107, .12);
    }

    /* KURUMSAL TOPBAR */
    .corporate-bar {
      background: var(--cream);
      border-bottom: 1px solid var(--line);
    }

    .corporate-inner {
      min-height: 42px;
      display: grid;
      grid-template-columns: 1fr auto 1fr;
      align-items: center;
      gap: 24px;
    }

    .mini-menu {
      display: flex;
      align-items: center;
      gap: 23px;
      list-style: none;
      font-size: 12px;
      font-weight: 700;
      color: #645a5c;
    }

    .mini-menu.right {
      justify-content: flex-end;
    }

    .mini-menu a {
      position: relative;
      transition: .25s ease;
    }

    .mini-menu a::after {
      content: "";
      position: absolute;
      left: 0;
      right: 100%;
      bottom: -5px;
      height: 2px;
      background: var(--red);
      transition: .25s ease;
    }

    .mini-menu a:hover {
      color: var(--red);
    }

    .mini-menu a:hover::after {
      right: 0;
    }

    .corporate-message {
      display: flex;
      align-items: center;
      gap: 10px;
      color: var(--red-dark);
      font-size:16px;
      font-weight:700;
      letter-spacing: .03em;
      white-space: nowrap;
    }

    .corporate-message svg {
      width: 16px;
      height: 16px;
    }

    /* ANA HEADER */
    .main-header {
      background: #fff;
    }

    .main-header-inner {
      min-height: 112px;
      display: grid;
      grid-template-columns: 230px minmax(320px, 1fr) auto;
      gap: 42px;
      align-items: center;
    }

    .brand {
      display: inline-flex;
      align-items: center;
      justify-content: flex-start;
    }

    .brand img {
      width: 190px;
      max-height: 82px;
      object-fit: contain;
      display: block;
      filter: drop-shadow(0 9px 12px rgba(133, 10, 20, .15));
      transition: transform .3s ease;
    }

    .brand:hover img {
      transform: translateY(-2px) scale(1.015);
    }

    .search-wrap {
      position: relative;
    }

    .search-shell {
      display: grid;
      grid-template-columns: 1fr 52px;
      min-height: 48px;
      border: 1px solid rgba(201, 16, 32, .18);
      background: #fff;
      border-radius: 14px;
      overflow: hidden;
      box-shadow:
        0 12px 30px rgba(36, 27, 28, .06),
        inset 0 0 0 3px rgba(201, 16, 32, .025);
      transition: .25s ease;
    }

    .search-shell:focus-within {
      border-color: rgba(201, 16, 32, .55);
      box-shadow:
        0 16px 38px rgba(151, 9, 20, .12),
        0 0 0 4px rgba(201, 16, 32, .06);
      transform: translateY(-1px);
    }

    .search-input {
      width: 100%;
      border: 0;
      outline: none;
      padding: 0 18px;
      color: var(--text);
      font-size: 14px;
      background: transparent;
    }

    .search-input::placeholder {
      color: #aaa0a2;
    }

    .search-button {
      display: grid;
      place-items: center;
      border: 0;
      cursor: pointer;
      color: #fff;
      background: linear-gradient(145deg, var(--red), var(--red-dark));
      transition: .25s ease;
    }

    .search-button:hover {
      filter: brightness(1.08);
    }

    .search-button svg {
      width: 20px;
      height: 20px;
    }

    .header-actions {
      display: flex;
      align-items: center;
      gap: 6px;
    }

    /* Kutusuz, sade aksiyonlar: büyük ikon + küçük etiket */
    .action-button {
      position: relative;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 6px;
      padding: 8px 12px;
      border: 0;
      border-radius: 12px;
      color: #5e5254;
      background: transparent;
      cursor: pointer;
      transition: .25s ease;
    }

    .action-button:hover {
      transform: translateY(-2px);
      color: var(--red);
    }

    .action-button svg {
      width: 28px;
      height: 28px;
    }

    .action-button span {
      font-size: 11px;
      font-weight: 700;
      letter-spacing: .01em;
    }

    /* Etiket genişliği değişse de rozet hep ikonun sağ üstünde kalsın */
    .action-badge {
      position: absolute;
      top: 2px;
      left: calc(50% + 6px);
      min-width: 18px;
      height: 18px;
      padding-inline: 4px;
      display: grid;
      place-items: center;
      border-radius: 999px;
      color: #fff;
      background: var(--green);
      font-size: 9px !important;
      font-weight: 900;
      border: 2px solid #fff;
    }

    /* Sepet kutusu yok ama marka rengiyle öne çıkar */
    .cart-button {
      color: var(--red);
    }

    .cart-button .action-badge {
      background: var(--red);
      color: #fff;
    }

    /* KATEGORİ MENÜSÜ */
    .category-nav {
      position: relative;
      background:
        linear-gradient(90deg, #fff 0%, #fff9f9 50%, #fff 100%);
      border-top: 1px solid var(--line);
    }

    .category-nav::after {
      content: "";
      position: absolute;
      left: 0;
      right: 0;
      bottom: 0;
      height: 3px;
      background: linear-gradient(90deg, var(--red), #e9a2a9 44%, var(--green));
    }

    .category-inner {
      min-height: 66px;
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .all-categories {
      flex: 0 0 auto;
      min-width: clamp(168px, 14vw, 215px);
      height: 46px;
      padding: 0 19px;
      display: flex;
      align-items: center;
      gap: 12px;
      color: #fff;
      border: 0;
      border-radius: 14px;
      background:
        linear-gradient(145deg, var(--green), var(--green-dark));
      font-size: 12px;
      font-weight: 900;
      cursor: pointer;
      box-shadow: 0 10px 24px rgba(31, 122, 69, .20);
      transition: .25s ease;
    }

    .all-categories:hover {
      transform: translateY(-2px);
      filter: brightness(1.05);
    }

    .hamburger {
      width: 19px;
      display: grid;
      gap: 4px;
    }

    .hamburger i {
      display: block;
      height: 2px;
      border-radius: 10px;
      background: #fff;
    }

    .main-menu {
      flex: 1 1 auto;
      min-width: 0;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 2px;
      list-style: none;
      /* Son çare: hiçbir ölçüde dışarı taşmasın, gerekirse kaydırılsın */
      overflow-x: auto;
      scrollbar-width: none;
      -ms-overflow-style: none;
    }

    .main-menu::-webkit-scrollbar {
      display: none;
    }

    /* Yazı boyutu container genişliğine göre akışkan:
       .container min(1440px, 100% - 48px) ile sınırlı olduğu için
       vw yerine o üst sınırı da hesaba katan bir formül kullanıldı.
       Yatay boşluk em cinsinden, böylece yazıyla birlikte küçülür. */
    .main-menu a {
      position: relative;
      display: flex;
      align-items: center;
      gap: 7px;
      padding: 14px 0.6em;
      border-radius: 12px;
      color: #4c4244;
      font-size: clamp(11px, calc(min(100vw - 64px, 1440px) / 88), 16px);
      font-weight: 700;
      transition: .25s ease;
      white-space: nowrap;
    }

    .main-menu a:hover {
      color: var(--red);
      background: var(--red-soft);
    }

    .main-menu .featured a {
      color: var(--red);
      background: rgba(201, 16, 32, .06);
    }

    .main-menu .new-badge {
      padding: 3px 6px;
      border-radius: 999px;
      color: #fff;
      background: var(--red);
      font-size: 8px;
      font-weight: 900;
      letter-spacing: .05em;
    }

    /* Mobil menü butonu ve çekmece: 23-mobile-header.css */
    .mobile-toggle {
      display: none;
    }

    .page-space {
      min-height: 68vh;
      display: grid;
      place-items: start center;
      padding-top: 72px;
      color: #a69da0;
      font-size: 13px;
      letter-spacing: .08em;
      text-transform: uppercase;
    }

    @media (max-width: 1180px) {
      .main-header-inner {
        grid-template-columns: 190px minmax(280px, 1fr) auto;
        gap: 22px;
      }

      .brand img {
        width: 165px;
      }
    }

    /* Ortadaki slogan iki mini menüyü sıkıştırmaya başlıyor */
    @media (max-width: 1100px) {
      .corporate-inner {
        grid-template-columns: 1fr auto;
      }

      .corporate-message {
        display: none;
      }
    }

    @media (max-width: 700px) {
      .container {
        width: min(100% - 24px, 1440px);
      }
    }

/* ---------------------------------------------------------------
   Erisilebilirlik: dokunma hedefi en az 24x24 px (WCAG 2.2)
   Noktalarin gorunumu ayni kalir; yalnizca tiklanabilir alan buyur.
   --------------------------------------------------------------- */
.ap-product-dot,
.ap-tab-dot,
.ap-slider-dot,
.ap-dot{
  position:relative;
}

.ap-product-dot::after,
.ap-tab-dot::after,
.ap-slider-dot::after,
.ap-dot::after{
  content:"";
  position:absolute;
  left:50%;
  top:50%;
  width:24px;
  height:24px;
  transform:translate(-50%,-50%);
}

/* Metin butonlari da 24px'in altina dusmesin */
.ap-btn,
.ap-product-link{
  min-height:24px;
}

/* 02-header.css */
/* Yalnızca ana header yerleşim düzeltmesi:
   arama solda, logo ortada, aksiyonlar sağda */
@media (min-width: 981px) {
  .main-header-inner {
    grid-template-columns: minmax(320px, 1fr) auto minmax(320px, 1fr) !important;
    grid-template-areas: "search brand actions";
    gap: 32px !important;
  }

  .search-wrap {
    grid-area: search;
    justify-self: start;
    width: min(100%, 420px);
  }

  .brand {
    grid-area: brand;
    justify-self: center;
    justify-content: center;
  }

  .header-actions {
    grid-area: actions;
    justify-self: end;
  }
}

@media (max-width: 1180px) and (min-width: 981px) {
  .main-header-inner {
    grid-template-columns: minmax(280px, 1fr) auto minmax(280px, 1fr) !important;
    gap: 22px !important;
  }

  .search-wrap {
    width: min(100%, 360px);
  }
}

@media (max-width: 980px) {
  .main-header-inner {
    grid-template-areas:
      "brand actions"
      "search search";
  }

  .brand {
    grid-area: brand;
  }

  .header-actions {
    grid-area: actions;
  }

  .search-wrap {
    grid-area: search;
  }
}

/* 11-layout-fixes.css */
/* YATAY SAYFA TAŞMASI DÜZELTMESİ
   overflow-x:hidden burada KULLANILMAZ: html/body'de kaydırma kabı
   oluşturup position:sticky'yi (mobil yapışkan header) devre dışı bırakıyor.
   overflow-x:clip aynı taşmayı keser ama sticky çalışmaya devam eder. */
html,
body{
  width:100%;
  max-width:100%;
  overflow-x:hidden; /* clip desteklemeyen eski tarayıcılar için yedek */
  overflow-x:clip;
}

.ap-products-tabs-section,
.ap-products-tabs-inner,
.ap-products-panel,
.ap-tab-carousel{
  max-width:100%;
}

.ap-tab-carousel{
  overflow:hidden;
}

.ap-tab-carousel-viewport{
  width:100%;
  max-width:100%;
}

.ap-tab-carousel-prev{
  left:10px !important;
}

.ap-tab-carousel-next{
  right:10px !important;
}

.ap-product-carousel{
  max-width:100vw !important;
  overflow:hidden;
}

.ap-product-track{
  max-width:none;
}

@media(max-width:700px){
  .ap-tab-carousel-prev{
    left:4px !important;
  }

  .ap-tab-carousel-next{
    right:4px !important;
  }
}

/* 20-trust.css */
/* GÜVEN ŞERİDİ — 4 kutu (SSL / ödüller / kargo / paketleme)
   Kutular arası ayrım ince dikey çizgiyle; blog bölümü beyaz olduğu için
   şerit kremle ayrışıyor. */
.ap-trust{
  background:#f8f6f2;
  border-top:1px solid rgba(36,27,28,.07);
  padding:58px 24px 60px;
}

.ap-trust-grid{
  width:min(1500px,100%);
  margin:0 auto;
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
}

.ap-trust-item{
  display:flex;
  flex-direction:column;
  align-items:center;
  text-align:center;
  padding:4px 28px;
  border-left:1px solid rgba(36,27,28,.09);
}

.ap-trust-item:first-child{
  border-left:0;
}

.ap-trust-icon{
  display:grid;
  place-items:center;
  width:62px;
  height:62px;
  margin-bottom:18px;
  border-radius:50%;
  color:#365547;
  background:rgba(54,85,71,.08);
  transition:color .25s ease,background .25s ease,transform .25s ease;
}

.ap-trust-icon svg{
  width:29px;
  height:29px;
  fill:none;
  stroke:currentColor;
  stroke-width:1.7;
  stroke-linecap:round;
  stroke-linejoin:round;
}

.ap-trust-item:hover .ap-trust-icon{
  color:#ffffff;
  background:#365547;
  transform:translateY(-3px);
}

.ap-trust-title{
  margin:0;
  color:#171717;
  font-size:15px;
  font-weight:800;
  letter-spacing:.06em;
  line-height:1.3;
  text-transform:uppercase;
}

.ap-trust-text{
  max-width:290px;
  margin:10px 0 0;
  color:#6d6560;
  font-size:14px;
  line-height:1.65;
}

@media (max-width:1080px){
  .ap-trust-grid{
    grid-template-columns:repeat(2,minmax(0,1fr));
    row-gap:44px;
  }

  /* İki sütuna düşünce çizgiler yalnız sol sütunun sağında kalmalı */
  .ap-trust-item:nth-child(odd){
    border-left:0;
  }
}

/* Mobilde 2x2: ayırıcı çizgi yerine her madde kendi kutusunda durur */
@media (max-width:620px){
  .ap-trust{
    padding:40px 16px 44px;
  }

  .ap-trust-grid{
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:12px;
  }

  .ap-trust-item{
    justify-content:flex-start;
    padding:18px 12px 20px;
    border:1px solid rgba(36,27,28,.08);
    border-radius:18px;
    background:#fff;
    box-shadow:0 10px 22px -18px rgba(32,46,39,.5);
  }

  .ap-trust-icon{
    width:48px;
    height:48px;
    margin-bottom:12px;
  }

  .ap-trust-icon svg{
    width:24px;
    height:24px;
  }

  .ap-trust-title{
    font-size:12px;
    letter-spacing:.04em;
  }

  .ap-trust-text{
    margin-top:7px;
    font-size:11.5px;
    line-height:1.55;
  }
}

@media (max-width:380px){
  .ap-trust-grid{
    gap:10px;
  }

  .ap-trust-item{
    padding:16px 9px 18px;
  }

  .ap-trust-title{
    font-size:11px;
  }

  .ap-trust-text{
    font-size:11px;
  }
}

/* 21-newsletter.css */
/* E-BÜLTEN KUTUSU
   Footerın içinde ama ayrı bir kart gibi duran bant:
   footerdan bir ton açık yeşil, yuvarlak köşeli, altın vurgulu.
   İki sütun: metin | cam efektli form. */
.ap-newsletter{
  position:relative;
  isolation:isolate;
  overflow:hidden;
  padding:30px 36px 32px;
  border:1px solid rgba(255,255,255,.10);
  border-radius:22px;
  background:linear-gradient(135deg,#2f4c3c 0%,#1e3327 52%,#2b4638 100%);
  box-shadow:0 22px 44px -26px rgba(0,0,0,.85);
}

/* Zeytin dalı dokusu — çok soluk, zemine derinlik katar */
.ap-newsletter-bg{
  position:absolute;
  inset:0;
  z-index:-2;
  width:100%;
  height:100%;
  object-fit:cover;
  opacity:.16;
}

/* Zemini derinleştiren koyu örtü + sağ üstten gelen altın ışık.
   Doku örtünün altında kaldığı için his veriyor ama yazıyla yarışmıyor. */
.ap-newsletter::before{
  content:"";
  position:absolute;
  inset:0;
  z-index:-1;
  background:
    radial-gradient(circle at 84% 6%,rgba(224,185,100,.13),transparent 44%),
    linear-gradient(180deg,rgba(21,36,27,.72) 0%,rgba(21,36,27,.80) 100%);
}

/* Dekoratif dev zeytin yaprağı */
.ap-newsletter-leaf{
  position:absolute;
  right:-34px;
  bottom:-52px;
  z-index:-1;
  width:210px;
  height:210px;
  color:#e0b964;
  opacity:.08;
  transform:rotate(-12deg);
  pointer-events:none;
}

.ap-newsletter-inner{
  width:100%;
}

/* Ekran okuyucu etiketi — görsel olarak gizli, erişilebilir kalır */
.ap-visually-hidden{
  position:absolute;
  width:1px;
  height:1px;
  overflow:hidden;
  clip:rect(0 0 0 0);
  clip-path:inset(50%);
  white-space:nowrap;
}

/* ANA ALAN */
.ap-newsletter-main{
  display:grid;
  grid-template-columns:minmax(0,1.02fr) minmax(0,.98fr);
  align-items:center;
  gap:40px;
}

.ap-newsletter-eyebrow{
  display:inline-flex;
  align-items:center;
  gap:8px;
  color:#e0b964;
  font-size:11px;
  font-weight:800;
  letter-spacing:.22em;
  text-transform:uppercase;
}

.ap-newsletter-eyebrow svg{
  width:15px;
  height:15px;
  fill:currentColor;
}

.ap-newsletter-title{
  max-width:480px;
  margin:10px 0 0;
  color:#ffffff;
  font-size:clamp(19px,1.65vw,24px);
  line-height:1.32;
  font-weight:800;
  letter-spacing:-.02em;
}

/* CAM EFEKTLİ FORM */
.ap-newsletter-form{
  display:flex;
  align-items:center;
  gap:10px;
  padding:6px 6px 6px 22px;
  border:1px solid rgba(255,255,255,.18);
  border-radius:999px;
  background:rgba(255,255,255,.07);
  box-shadow:inset 0 1px 0 rgba(255,255,255,.14);
  backdrop-filter:blur(10px);
  -webkit-backdrop-filter:blur(10px);
  transition:border-color .25s ease,box-shadow .25s ease;
}

.ap-newsletter-form:focus-within{
  border-color:rgba(224,185,100,.65);
  box-shadow:inset 0 1px 0 rgba(255,255,255,.14),0 0 0 4px rgba(224,185,100,.13);
}

.ap-newsletter-input{
  flex:1;
  min-width:0;
  border:0;
  background:transparent;
  color:#ffffff;
  font-size:15px;
  outline:none;
}

/* .55'te kontrast 4.38 ölçüldü (AA sınırı 4.5) — .64'e çekildi */
.ap-newsletter-input::placeholder{
  color:rgba(255,255,255,.64);
}

.ap-newsletter-submit{
  flex:0 0 auto;
  display:inline-flex;
  align-items:center;
  gap:9px;
  min-height:46px;
  padding:0 26px;
  border:0;
  border-radius:999px;
  color:#1c2f24;
  background:linear-gradient(145deg,#eccb84,#b58d32);
  font-size:14px;
  font-weight:800;
  letter-spacing:.02em;
  cursor:pointer;
  box-shadow:0 12px 26px -12px rgba(0,0,0,.55);
  transition:filter .25s ease,box-shadow .25s ease,transform .25s ease;
}

.ap-newsletter-submit svg{
  width:16px;
  height:16px;
  fill:none;
  stroke:currentColor;
  stroke-width:2.2;
  transition:transform .25s ease;
}

.ap-newsletter-submit:hover{
  filter:brightness(1.06);
  transform:translateY(-2px);
  box-shadow:0 18px 32px -14px rgba(0,0,0,.6);
}

.ap-newsletter-submit:hover svg{
  transform:translateX(3px);
}

.ap-newsletter-note{
  margin:11px 0 0;
  color:rgba(255,255,255,.55);
  font-size:12.5px;
  line-height:1.55;
}

@media (max-width:1000px){
  .ap-newsletter-main{
    grid-template-columns:minmax(0,1fr);
    justify-items:center;
    text-align:center;
    gap:26px;
  }

  .ap-newsletter-form-wrap{
    width:min(560px,100%);
  }

  .ap-newsletter-leaf{
    width:180px;
    height:180px;
  }
}

@media (max-width:620px){
  .ap-newsletter{
    padding:26px 20px 28px;
    border-radius:18px;
  }

  /* Dar ekranda pill yerine kutu; buton tam genişlik */
  .ap-newsletter-form{
    flex-direction:column;
    align-items:stretch;
    gap:12px;
    padding:14px;
    border-radius:20px;
  }

  /* Kolon düzeninde alan pill'in içinde kaybolmasın; kendi kutusunu alsın */
  .ap-newsletter-input{
    min-height:50px;
    padding:0 16px;
    border:1px solid rgba(255,255,255,.18);
    border-radius:14px;
    background:rgba(255,255,255,.06);
    text-align:center;
  }

  .ap-newsletter-submit{
    justify-content:center;
    width:100%;
  }
}

/* 22-footer.css */
/* SİTE ALT BİLGİ (FOOTER)
   E-bülten bandının devamı: daha koyu yeşil zemin, altın vurgular.
   5 kolon: marka | kurumsal | kategoriler | hesabım | adres & belgeler. */
.ap-footer{
  position:relative;
  isolation:isolate;
  overflow:hidden;
  color:rgba(255,255,255,.78);
  background:linear-gradient(180deg,#1b2e23 0%,#152219 100%);
}

/* Üstte e-bülteni footerdan ayıran ince altın çizgi */
.ap-footer::before{
  content:"";
  position:absolute;
  left:0;
  right:0;
  top:0;
  height:2px;
  background:linear-gradient(90deg,var(--red),#e0b964 46%,rgba(224,185,100,.15));
}

/* Sağ altta çok soluk dev zeytin yaprağı */
.ap-footer-leaf{
  position:absolute;
  left:-70px;
  bottom:-90px;
  z-index:-1;
  width:360px;
  height:360px;
  color:#e0b964;
  opacity:.05;
  transform:rotate(14deg);
  pointer-events:none;
}

/* E-bülten kutusunun oturduğu şerit */
.ap-footer-top{
  width:min(1500px,100%);
  margin:0 auto;
  padding:38px 24px 0;
}

.ap-footer-inner{
  width:min(1500px,100%);
  margin:0 auto;
  padding:46px 24px 50px;
}

.ap-footer-grid{
  display:grid;
  grid-template-columns:1.1fr .8fr 1fr .9fr 1.25fr;
  gap:44px 38px;
}

.ap-footer-col{
  display:flex;
  flex-direction:column;
  min-width:0;
}

/* MARKA KOLONU */
/* Logo kırmızı zeminli olduğu için koyu yeşilde beyaz bir kart üzerinde durur */
.ap-footer-brand{
  display:inline-flex;
  align-items:center;
  align-self:flex-start;
  padding:12px 18px;
  border-radius:16px;
  background:#fff;
  box-shadow:0 14px 30px -16px rgba(0,0,0,.7);
  transition:transform .25s ease;
}

.ap-footer-brand:hover{
  transform:translateY(-2px);
}

.ap-footer-brand img{
  display:block;
  width:168px;
  max-height:66px;
  object-fit:contain;
}

.ap-footer-about{
  margin:22px 0 0;
  max-width:330px;
  font-size:14px;
  line-height:1.75;
  color:rgba(255,255,255,.62);
}

/* Sosyal ikonlar kolonun en altına yapışır */
.ap-footer-social{
  display:flex;
  align-items:center;
  gap:10px;
  margin-top:auto;
  padding-top:28px;
  list-style:none;
}

.ap-footer-social a{
  display:grid;
  place-items:center;
  width:42px;
  height:42px;
  border:1px solid rgba(255,255,255,.16);
  border-radius:13px;
  color:rgba(255,255,255,.82);
  background:rgba(255,255,255,.05);
  transition:color .25s ease,background .25s ease,border-color .25s ease,transform .25s ease;
}

.ap-footer-social a:hover{
  color:#1c2f24;
  background:linear-gradient(145deg,#eccb84,#b58d32);
  border-color:transparent;
  transform:translateY(-3px);
}

.ap-footer-social a:focus-visible{
  outline:2px solid #e0b964;
  outline-offset:3px;
}

.ap-footer-social svg{
  width:19px;
  height:19px;
  fill:currentColor;
}

/* KOLON BAŞLIKLARI */
.ap-footer-title{
  margin:0 0 22px;
  padding-bottom:12px;
  position:relative;
  color:#ffffff;
  font-size:15px;
  font-weight:800;
  letter-spacing:.06em;
  text-transform:uppercase;
}

.ap-footer-title::after{
  content:"";
  position:absolute;
  left:0;
  bottom:0;
  width:34px;
  height:2px;
  border-radius:2px;
  background:linear-gradient(90deg,#e0b964,rgba(224,185,100,.15));
}

/* BAĞLANTI LİSTELERİ */
.ap-footer-list{
  display:flex;
  flex-direction:column;
  gap:12px;
  list-style:none;
}

.ap-footer-list a{
  display:inline-flex;
  align-items:center;
  gap:8px;
  color:rgba(255,255,255,.70);
  font-size:14px;
  line-height:1.45;
  transition:color .25s ease,transform .25s ease;
}

/* Hover'da soldan çıkan altın tire */
.ap-footer-list a::before{
  content:"";
  width:0;
  height:1.5px;
  border-radius:2px;
  background:#e0b964;
  transition:width .25s ease;
}

.ap-footer-list a:hover{
  color:#e6c377;
  transform:translateX(3px);
}

.ap-footer-list a:hover::before{
  width:10px;
}

.ap-footer-list a:focus-visible{
  outline:2px solid #e0b964;
  outline-offset:3px;
  border-radius:4px;
}

/* BELGE / SERTİFİKA KOLONU
   Görseller kolonun tüm genişliğini kullanır; oranları korunur. */
.ap-footer-badges{
  display:flex;
  flex-direction:column;
  align-items:stretch;
  gap:14px;
}

.ap-footer-badge{
  display:block;
  padding:10px;
  border:1px solid rgba(255,255,255,.14);
  border-radius:16px;
  background:#ffffff;
  transition:transform .25s ease,box-shadow .25s ease;
}

.ap-footer-badge:hover{
  transform:translateY(-3px);
  box-shadow:0 16px 30px -14px rgba(0,0,0,.75);
}

.ap-footer-badge img{
  display:block;
  width:100%;
  height:auto;
  object-fit:contain;
}

/* ALT ŞERİT */
.ap-footer-bottom{
  border-top:1px solid rgba(255,255,255,.10);
}

.ap-footer-bottom-inner{
  width:min(1500px,100%);
  margin:0 auto;
  padding:22px 24px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  flex-wrap:wrap;
  gap:14px 28px;
  font-size:13px;
  color:rgba(255,255,255,.52);
}

.ap-footer-bottom strong{
  color:rgba(255,255,255,.78);
  font-weight:700;
}

/* Güvenli ödeme / kart logoları şeridi */
.ap-footer-pay{
  display:inline-flex;
  align-items:center;
}

.ap-footer-pay img{
  display:block;
  width:auto;
  height:32px;
  max-width:100%;
  object-fit:contain;
}

@media (max-width:1300px){
  .ap-footer-grid{
    grid-template-columns:repeat(3,minmax(0,1fr));
    gap:42px 34px;
  }

  /* Belgeler kolonu tek başına kaldığı için iki kolona yayılır,
     görseller de yan yana geçer */
  .ap-footer-col--badges{
    grid-column:span 2;
  }

  .ap-footer-badges{
    flex-direction:row;
    align-items:flex-start;
    gap:16px;
  }

  .ap-footer-badge--seo{
    flex:0 1 240px;
  }

  .ap-footer-badge--etbis{
    flex:0 1 330px;
  }
}

@media (max-width:900px){
  .ap-footer-grid{
    grid-template-columns:repeat(2,minmax(0,1fr));
  }

  .ap-footer-col--brand{
    grid-column:span 2;
  }

  .ap-footer-social{
    margin-top:0;
  }

  .ap-footer-about{
    max-width:none;
  }
}

@media (max-width:620px){
  .ap-footer-top{
    padding:26px 18px 0;
  }

  .ap-footer-inner{
    padding:38px 18px 34px;
  }

  .ap-footer-grid{
    grid-template-columns:minmax(0,1fr);
    gap:34px;
  }

  .ap-footer-col--brand,
  .ap-footer-col--badges{
    grid-column:auto;
  }

  .ap-footer-badges{
    flex-direction:column;
    max-width:340px;
  }

  .ap-footer-badge--seo,
  .ap-footer-badge--etbis{
    flex:0 0 auto;
  }

  .ap-footer-title{
    margin-bottom:18px;
  }

  .ap-footer-bottom-inner{
    padding:20px 18px;
    justify-content:center;
    text-align:center;
  }

  /* Dar ekranda şerit taşmasın; oran korunarak küçülür */
  .ap-footer-pay{
    max-width:100%;
  }

  .ap-footer-pay img{
    height:auto;
  }
}

/* 23-mobile-header.css */
/* MOBİL HEADER
   ≤980px: kurumsal bar kalkar, header yapışkan olur,
   [menü] [logo] [aksiyonlar] + tam genişlik arama,
   kategoriler yatay kaydırmalı çip şeridine döner,
   tüm menü sol taraftan açılan çekmeceye taşınır. */

/* ÇEKMECE — mobil dışında hiç görünmez */
.ap-drawer{
  display:none;
}

@media (max-width:980px){
  /* YAPIŞKAN HEADER
     top negatif duyuru barı yüksekliği kadar: kaydırınca duyuru barı
     kendiliğinden yukarı çıkar, logo + arama satırı tepeye yapışır.
     Yükseklik hiç değişmediği için sayfa zıplamaz. */
  .site-header{
    position:sticky;
    top:-34px;
    box-shadow:0 1px 0 var(--line);
    transition:box-shadow .25s ease;
  }

  /* Yapışık haldeyken sadece gölge değişir — hiçbir ölçü oynamaz */
  .site-header.is-stuck{
    box-shadow:0 10px 26px -12px rgba(36,27,28,.28);
  }

  /* top:-34px ile birebir tutmalı */
  .announcement-bar{
    min-height:0;
    height:34px;
    overflow:hidden;
  }

  .announcement-content{
    font-size:10px;
    padding-inline:14px;
  }

  /* Kurumsal bar tamamen çekmeceye taşındı */
  .corporate-bar{
    display:none;
  }

  /* ANA SATIR: menü | logo | aksiyonlar, altında arama */
  .main-header-inner{
    min-height:auto;
    padding:12px 0 14px;
    grid-template-columns:auto 1fr auto;
    grid-template-areas:
      "toggle brand actions"
      "search search search";
    gap:12px 12px;
    align-items:center;
  }

  .mobile-toggle{
    grid-area:toggle;
    display:grid;
    place-items:center;
    width:44px;
    height:44px;
    margin-left:-8px;
    border:0;
    border-radius:14px;
    background:transparent;
    color:var(--text);
    cursor:pointer;
    -webkit-tap-highlight-color:transparent;
    transition:background .2s ease,color .2s ease;
  }

  .mobile-toggle:active{
    background:var(--red-soft);
    color:var(--red);
  }

  .mobile-toggle-bars{
    display:grid;
    gap:5px;
    width:21px;
  }

  .mobile-toggle-bars i{
    display:block;
    height:2px;
    border-radius:10px;
    background:currentColor;
    transition:transform .3s ease,opacity .2s ease;
  }

  /* Çekmece açıkken hamburger çarpıya döner */
  .mobile-toggle[aria-expanded="true"] .mobile-toggle-bars i:nth-child(1){
    transform:translateY(7px) rotate(45deg);
  }

  .mobile-toggle[aria-expanded="true"] .mobile-toggle-bars i:nth-child(2){
    opacity:0;
  }

  .mobile-toggle[aria-expanded="true"] .mobile-toggle-bars i:nth-child(3){
    transform:translateY(-7px) rotate(-45deg);
  }

  .brand{
    grid-area:brand;
    justify-content:center;
  }

  .brand img{
    width:132px;
    max-height:52px;
  }

  .search-wrap{
    grid-area:search;
  }

  .search-shell{
    min-height:44px;
    border-radius:13px;
    box-shadow:0 6px 16px rgba(36,27,28,.05);
  }

  /* iOS odaklanınca sayfayı yakınlaştırmasın diye 16px altına inilmiyor */
  .search-input{
    padding:0 15px;
    font-size:16px;
  }

  .header-actions{
    grid-area:actions;
    gap:0;
    margin-right:-6px;
  }

  /* Mobilde etiketler gizlenir, dokunma alanı korunur */
  .action-button{
    padding:9px;
    min-width:44px;
    min-height:44px;
  }

  .action-button span:not(.action-badge){
    display:none;
  }

  .action-button svg{
    width:25px;
    height:25px;
  }

  .action-badge{
    top:2px;
    left:calc(50% + 3px);
    min-width:17px;
    height:17px;
    font-size:9px !important;
  }

  /* Favoriler mobilde çekmecede duruyor, üst satır kalabalık olmasın */
  .header-actions .action-button[aria-label="Favoriler"]{
    display:none;
  }

  /* Kategoriler mobilde yalnızca çekmecede; üst şerit kapalı */
  .category-nav{
    display:none;
  }

  /* ÇEKMECE */
  .ap-drawer{
    display:block;
    position:fixed;
    inset:0;
    z-index:200;
    visibility:hidden;
  }

  .ap-drawer.is-open{
    visibility:visible;
  }

  .ap-drawer-overlay{
    position:absolute;
    inset:0;
    background:rgba(20,14,15,.5);
    opacity:0;
    backdrop-filter:blur(2px);
    -webkit-backdrop-filter:blur(2px);
    transition:opacity .3s ease;
  }

  .ap-drawer.is-open .ap-drawer-overlay{
    opacity:1;
  }

  .ap-drawer-panel{
    position:absolute;
    inset:0 auto 0 0;
    width:min(340px,88vw);
    display:flex;
    flex-direction:column;
    background:var(--cream);
    box-shadow:14px 0 40px -18px rgba(0,0,0,.55);
    transform:translateX(-100%);
    transition:transform .32s cubic-bezier(.4,0,.2,1);
  }

  .ap-drawer.is-open .ap-drawer-panel{
    transform:translateX(0);
  }

  .ap-drawer-head{
    flex:0 0 auto;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:14px;
    padding:14px 16px;
    border-bottom:1px solid var(--line);
    background:#fff;
  }

  .ap-drawer-logo{
    width:126px;
    max-height:48px;
    object-fit:contain;
  }

  .ap-drawer-close{
    display:grid;
    place-items:center;
    width:40px;
    height:40px;
    border:1px solid var(--line);
    border-radius:12px;
    background:#fff;
    color:#5e5254;
    cursor:pointer;
    transition:color .2s ease,border-color .2s ease;
  }

  .ap-drawer-close:active{
    color:var(--red);
    border-color:rgba(201,16,32,.3);
  }

  .ap-drawer-close svg{
    width:19px;
    height:19px;
  }

  .ap-drawer-body{
    flex:1 1 auto;
    overflow-y:auto;
    overscroll-behavior:contain;
    -webkit-overflow-scrolling:touch;
    padding:18px 16px 24px;
  }

  .ap-drawer-title{
    margin:0 0 10px;
    color:var(--green);
    font-size:11px;
    font-weight:800;
    letter-spacing:.16em;
    text-transform:uppercase;
  }

  .ap-drawer-title:not(:first-child){
    margin-top:26px;
  }

  /* Kategoriler — büyük dokunma alanlı liste */
  .ap-drawer-list{
    display:flex;
    flex-direction:column;
    gap:2px;
    list-style:none;
    border:1px solid var(--line);
    border-radius:16px;
    background:#fff;
    overflow:hidden;
  }

  .ap-drawer-list li + li a{
    border-top:1px solid var(--line);
  }

  .ap-drawer-list a{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:12px;
    min-height:50px;
    padding:0 15px;
    color:#3f3436;
    font-size:14.5px;
    font-weight:700;
    transition:background .2s ease,color .2s ease;
  }

  .ap-drawer-list a:active{
    color:var(--red);
    background:var(--red-soft);
  }

  .ap-drawer-list svg{
    flex:0 0 auto;
    width:17px;
    height:17px;
    color:#c3b8ba;
  }

  /* ALT BLOK — giriş/kayıt + sosyal, çekmecenin altına sabit */
  .ap-drawer-foot{
    flex:0 0 auto;
    padding:14px 16px calc(14px + env(safe-area-inset-bottom));
    border-top:1px solid var(--line);
    background:#fff;
  }

  .ap-drawer-auth{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:10px;
  }

  .ap-drawer-auth-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:8px;
    min-height:46px;
    padding:0 10px;
    border-radius:14px;
    font-size:14px;
    font-weight:800;
    letter-spacing:.01em;
    transition:filter .2s ease,color .2s ease,border-color .2s ease,background .2s ease;
  }

  .ap-drawer-auth-btn svg{
    flex:0 0 auto;
    width:18px;
    height:18px;
  }

  .ap-drawer-auth-btn--login{
    color:#fff;
    background:linear-gradient(145deg,var(--red),var(--red-dark));
    box-shadow:0 10px 22px -12px rgba(151,9,20,.85);
  }

  .ap-drawer-auth-btn--login:active{
    filter:brightness(1.08);
  }

  .ap-drawer-auth-btn--register{
    color:var(--green-dark);
    border:1px solid rgba(54,85,71,.28);
    background:#fff;
  }

  .ap-drawer-auth-btn--register:active{
    color:#fff;
    border-color:transparent;
    background:linear-gradient(145deg,var(--green),var(--green-dark));
  }

  .ap-drawer-social{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:10px;
    margin-top:13px;
    list-style:none;
  }

  .ap-drawer-social a{
    display:grid;
    place-items:center;
    width:42px;
    height:42px;
    border:1px solid var(--line);
    border-radius:13px;
    color:#5e5254;
    background:#fff;
    transition:color .2s ease,border-color .2s ease;
  }

  .ap-drawer-social a:active{
    color:var(--red);
    border-color:rgba(201,16,32,.3);
  }

  .ap-drawer-social svg{
    width:19px;
    height:19px;
    fill:currentColor;
  }

  /* Çekmece açıkken arka plan kaymasın */
  body.ap-drawer-open{
    overflow:hidden;
  }
}

/* Küçük telefonlar */
@media (max-width:420px){
  .main-header-inner{
    padding:10px 0 12px;
    gap:10px 8px;
  }

  .brand img{
    width:118px;
  }

  .action-button{
    padding:8px;
  }

  .action-button svg{
    width:24px;
    height:24px;
  }
}

/* Animasyonu kapatanlar için */
@media (prefers-reduced-motion:reduce){
  .ap-drawer-panel,
  .ap-drawer-overlay,
  .mobile-toggle-bars i{
    transition:none;
  }
}

/* 25-mobile-bottom-nav.css */
/* MOBİL ALT MENÜ (STICKY)
   Ekranın en altına sabitlenen 5'li hızlı erişim çubuğu.
   Ortadaki "Sepet" yükseltilmiş kırmızı daire olarak öne çıkar. */
.ap-bottom-nav{
  display:none;
}

@media (max-width:980px){
  .ap-bottom-nav{
    position:fixed;
    left:0;
    right:0;
    bottom:0;
    /* Header (100) ve lightbox'ın (200) altında kalmalı; açılan çekmece
       header'ın içinde olduğu için alt çubuğu düzgünce örter. */
    z-index:90;
    display:grid;
    grid-template-columns:repeat(5,minmax(0,1fr));
    align-items:end;
    /* Yükseltilmiş sepet düğmesi dışarı taşabilsin */
    overflow:visible;
    border-top:1px solid rgba(36,27,28,.09);
    background:#fff;
    box-shadow:0 -6px 22px rgba(32,46,39,.09);
    padding-bottom:env(safe-area-inset-bottom);
  }

  /* Çubuk içeriğin üstünü kapatmasın */
  body{
    padding-bottom:calc(62px + env(safe-area-inset-bottom));
  }

  .ap-bottom-nav-item{
    position:relative;
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:flex-end;
    gap:4px;
    min-height:58px;
    padding:8px 4px 8px;
    color:#7c7173;
    font-size:10px;
    font-weight:700;
    line-height:1.2;
    text-align:center;
    -webkit-tap-highlight-color:transparent;
    transition:color .2s ease;
  }

  .ap-bottom-nav-item svg{
    width:23px;
    height:23px;
    fill:none;
    stroke:currentColor;
    stroke-width:1.7;
    stroke-linecap:round;
    stroke-linejoin:round;
  }

  .ap-bottom-nav-item.is-active,
  .ap-bottom-nav-item:active{
    color:var(--green);
  }

  .ap-bottom-nav-item:focus-visible{
    outline:2px solid var(--green);
    outline-offset:-3px;
    border-radius:12px;
  }

  /* ORTADAKİ SEPET — yükseltilmiş kırmızı daire */
  .ap-bottom-nav-cart{
    color:#7c7173;
  }

  .ap-bottom-nav-bubble{
    position:absolute;
    top:-20px;
    left:50%;
    display:grid;
    place-items:center;
    width:54px;
    height:54px;
    border-radius:50%;
    color:#fff;
    background:linear-gradient(150deg,var(--red),var(--red-dark));
    box-shadow:0 0 0 5px #fff,0 12px 22px -8px rgba(151,9,20,.75);
    transform:translateX(-50%);
    transition:transform .2s ease,filter .2s ease;
  }

  .ap-bottom-nav-cart:active .ap-bottom-nav-bubble{
    filter:brightness(1.08);
    transform:translateX(-50%) translateY(2px);
  }

  .ap-bottom-nav-bubble svg{
    width:24px;
    height:24px;
    stroke-width:1.8;
  }

  /* Baloncuk yukarı taştığı için etiket kendi hizasında kalsın */
  .ap-bottom-nav-cart{
    justify-content:flex-end;
    padding-top:38px;
  }

  /* SAYAÇ ROZETLERİ */
  .ap-bottom-nav-badge{
    position:absolute;
    top:2px;
    left:calc(50% + 6px);
    min-width:17px;
    height:17px;
    padding-inline:4px;
    display:grid;
    place-items:center;
    border:2px solid #fff;
    border-radius:999px;
    color:#fff;
    background:var(--green);
    font-size:9px;
    font-weight:900;
    line-height:1;
  }

  .ap-bottom-nav-bubble .ap-bottom-nav-badge{
    top:-3px;
    left:auto;
    right:-4px;
    color:#3e2700;
    background:#ffd45d;
  }

}

@media (max-width:360px){
  .ap-bottom-nav-item{
    font-size:9px;
    padding-inline:2px;
  }

  .ap-bottom-nav-item svg{
    width:21px;
    height:21px;
  }
}

/* 26-whatsapp.css */
/* YÜZEN WHATSAPP BUTONU
   Masaüstünde sağ altta, üzerine gelince etiket açılır.
   Mobilde sol altta ve alt menünün üstünde durur. */
.ap-wa{
  position:fixed;
  right:26px;
  bottom:26px;
  z-index:80;
  display:inline-flex;
  align-items:center;
  gap:0;
  height:58px;
  padding:0;
  border-radius:999px;
  color:#fff;
  background:linear-gradient(150deg,#3ede73,#1faf52);
  box-shadow:0 14px 30px -10px rgba(20,120,60,.65);
  overflow:hidden;
  transition:gap .25s ease,padding .25s ease,box-shadow .25s ease,transform .25s ease;
}

.ap-wa-icon{
  flex:0 0 auto;
  display:grid;
  place-items:center;
  width:58px;
  height:58px;
}

.ap-wa-icon svg{
  width:31px;
  height:31px;
  fill:currentColor;
}

/* Etiket varsayılanda kapalı; hover/odakta yana doğru açılır */
.ap-wa-label{
  max-width:0;
  white-space:nowrap;
  font-size:14px;
  font-weight:800;
  letter-spacing:.01em;
  opacity:0;
  transition:max-width .3s ease,opacity .25s ease;
}

.ap-wa:hover,
.ap-wa:focus-visible{
  gap:2px;
  padding-right:22px;
  transform:translateY(-2px);
  box-shadow:0 18px 36px -12px rgba(20,120,60,.7);
}

.ap-wa:hover .ap-wa-label,
.ap-wa:focus-visible .ap-wa-label{
  max-width:200px;
  opacity:1;
}

.ap-wa:focus-visible{
  outline:2px solid #1faf52;
  outline-offset:3px;
}

/* Dikkat çeken yumuşak nabız halkası */
.ap-wa::after{
  content:"";
  position:absolute;
  inset:0;
  border-radius:inherit;
  box-shadow:0 0 0 0 rgba(37,211,102,.55);
  animation:apWaPulse 2.6s ease-out infinite;
  pointer-events:none;
}

@keyframes apWaPulse{
  0%   { box-shadow:0 0 0 0 rgba(37,211,102,.5); }
  70%  { box-shadow:0 0 0 16px rgba(37,211,102,0); }
  100% { box-shadow:0 0 0 0 rgba(37,211,102,0); }
}

/* Alt menü olan ekranlar: sol altta ve çubuğun üstünde */
@media (max-width:980px){
  .ap-wa{
    right:auto;
    left:16px;
    bottom:calc(74px + env(safe-area-inset-bottom));
    height:50px;
  }

  .ap-wa-icon{
    width:50px;
    height:50px;
  }

  .ap-wa-icon svg{
    width:27px;
    height:27px;
  }

  /* Dokunmatikte hover yok; etiket hep kapalı kalsın */
  .ap-wa-label{
    display:none;
  }

  .ap-wa:hover,
  .ap-wa:focus-visible{
    padding-right:0;
    transform:none;
  }
}

@media (prefers-reduced-motion:reduce){
  .ap-wa::after{
    animation:none;
  }

  .ap-wa,
  .ap-wa-label{
    transition:none;
  }
}

/* 38-mega-menu.css */
/* ════════════════════════════════════════════════════════════════
   ORION — Menü Yönetimi: açılır liste + MEGA MENÜ + çekmece akordeonu
   (admin/navigation → "Ana Menü" konumu). Tema değişkenleri: --red,
   --red-soft, --green, --line. 2026-08-30
   ════════════════════════════════════════════════════════════════ */
.category-nav.has-menu{z-index:20}
.category-nav.has-menu .main-menu{overflow:visible;flex-wrap:nowrap}
.category-nav.has-menu .main-menu>li{position:relative}
.category-nav.has-menu .main-menu>li.is-mega{position:static}
.main-menu .sub-caret{width:13px;height:13px;flex:0 0 auto;opacity:.55;transition:transform .25s ease}
.main-menu>li.has-sub:hover>a .sub-caret,.main-menu>li.is-open>a .sub-caret,.main-menu>li.has-sub:focus-within>a .sub-caret{transform:rotate(180deg);opacity:1}
.main-menu>li.has-sub:hover>a,.main-menu>li.is-open>a{color:var(--red);background:var(--red-soft)}

/* köprü: link ile panel arasındaki boşlukta hover kopmasın */
.main-menu>li.has-sub>a::after{content:"";position:absolute;left:0;right:0;top:100%;height:14px}

/* ── açılır liste ── */
.main-menu .sub-menu{position:absolute;top:calc(100% + 6px);left:0;min-width:240px;margin:0;padding:8px;list-style:none;background:#fff;border:1px solid var(--line);border-radius:16px;
  box-shadow:0 22px 54px rgba(36,27,28,.16);opacity:0;visibility:hidden;transform:translateY(8px);transition:opacity .2s ease,transform .2s ease,visibility .2s;z-index:30}
.main-menu>li.has-sub:hover>.sub-menu,.main-menu>li.is-open>.sub-menu,.main-menu>li.has-sub:focus-within>.sub-menu{opacity:1;visibility:visible;transform:none}
.main-menu .sub-menu li{position:relative}
.main-menu .sub-menu a{display:flex;align-items:center;justify-content:space-between;gap:10px;padding:10px 12px;border-radius:10px;font-size:13.5px;font-weight:600;color:#3f3436;white-space:nowrap}
.main-menu .sub-menu a:hover{color:var(--red);background:var(--red-soft)}
.main-menu .sub-menu li.has-sub>a::before{content:"";width:6px;height:6px;border-right:2px solid #c3b8ba;border-top:2px solid #c3b8ba;transform:rotate(45deg);order:2;flex:0 0 auto}
.main-menu .sub-menu-2{top:-8px;left:calc(100% + 4px)}
.main-menu .sub-menu li.has-sub:hover>.sub-menu-2,.main-menu .sub-menu li.has-sub:focus-within>.sub-menu-2,.main-menu .sub-menu li.is-open>.sub-menu-2{opacity:1;visibility:visible;transform:none}
.main-menu .new-badge{margin-left:2px}

/* ── mega panel ── */
.mega-panel{position:absolute;left:0;right:0;top:100%;padding-top:10px;opacity:0;visibility:hidden;transform:translateY(8px);transition:opacity .22s ease,transform .22s ease,visibility .22s;z-index:30}
.main-menu>li.is-mega:hover>.mega-panel,.main-menu>li.is-open>.mega-panel,.main-menu>li.is-mega:focus-within>.mega-panel{opacity:1;visibility:visible;transform:none}
.mega-inner{display:grid;grid-template-columns:minmax(0,1fr);gap:28px;padding:26px 30px 28px;background:#fff;border:1px solid var(--line);border-radius:22px;box-shadow:0 30px 70px rgba(36,27,28,.18)}
.mega-inner.has-image{grid-template-columns:minmax(0,1fr) clamp(200px,22%,300px)}
.mega-cols{display:grid;grid-template-columns:repeat(var(--mega-cols,4),minmax(0,1fr));gap:22px 28px}
.mega-col-title{display:flex;align-items:center;gap:8px;margin:0 0 10px;padding:0 0 9px;border-bottom:2px solid #f0e6e6;font-size:14px;font-weight:800;color:#241b1c;letter-spacing:-.01em;transition:color .2s}
.mega-col-title:hover{color:var(--red)}
.mega-col ul{list-style:none;margin:0;padding:0;display:flex;flex-direction:column;gap:2px}
.mega-col ul a{display:flex;align-items:center;gap:8px;padding:6px 8px;margin:0 -8px;border-radius:8px;font-size:13.5px;font-weight:500;color:#5b5153;transition:color .18s,background .18s,padding .18s}
.mega-col ul a::before{content:"";width:5px;height:5px;border-radius:50%;background:#d9cfd0;flex:0 0 auto;transition:background .18s,transform .18s}
.mega-col ul a:hover{color:var(--red);background:var(--red-soft);padding-left:12px}
.mega-col ul a:hover::before{background:var(--red);transform:scale(1.3)}
.mega-image{position:relative;display:flex;align-items:flex-end;min-height:220px;border-radius:16px;overflow:hidden;background:#f3f0ec;isolation:isolate}
.mega-image img{position:absolute;inset:0;width:100%;height:100%;object-fit:cover;transition:transform .8s ease}
.mega-image:hover img{transform:scale(1.05)}
.mega-image-text{position:relative;width:100%;padding:16px;color:#fff;background:linear-gradient(0deg,rgba(20,12,12,.72),rgba(20,12,12,0));display:flex;flex-direction:column;gap:3px}
.mega-image-text b{font-size:15px;font-weight:800;letter-spacing:-.01em}
.mega-image-text small{font-size:12px;font-weight:500;opacity:.9}

@media (prefers-reduced-motion:reduce){.main-menu .sub-menu,.mega-panel,.mega-image img{transition:none}}
@media (max-width:980px){.main-menu .sub-menu,.mega-panel{display:none}}

/* ── mobil çekmece: iç içe akordeon ── */
.ap-drawer-menu .ap-drawer-row{display:flex;align-items:stretch}
.ap-drawer-menu .ap-drawer-row>a{flex:1 1 auto;min-width:0}
.ap-drawer-menu li+li .ap-drawer-row{border-top:1px solid var(--line)}
.ap-drawer-menu li+li>a{border-top:1px solid var(--line)}
.ap-drawer-menu .ap-drawer-row>a{border-top:0!important}
.ap-drawer-sub-toggle{flex:0 0 52px;display:grid;place-items:center;border:0;border-left:1px solid var(--line);background:#fbf8f4;color:#7a6f71;cursor:pointer;transition:background .2s,color .2s}
.ap-drawer-sub-toggle svg{width:18px;height:18px;transition:transform .25s ease}
.ap-drawer-sub-toggle[aria-expanded="true"]{color:var(--red);background:var(--red-soft)}
.ap-drawer-sub-toggle[aria-expanded="true"] svg{transform:rotate(180deg)}
.ap-drawer-menu .new-badge{margin-left:6px;padding:2px 7px;border-radius:999px;color:#fff;font-size:9px;font-weight:900;letter-spacing:.05em}
.ap-drawer-sub{display:none;list-style:none;margin:0;padding:6px 0 8px;background:#fdfbf8;border-top:1px solid var(--line)}
.ap-drawer-menu li.is-open>.ap-drawer-sub{display:block}
.ap-drawer-sub a{min-height:42px;padding-left:28px;font-size:13.5px;font-weight:600;color:#5b5153;border-top:0!important}
.ap-drawer-sub a::before{content:"";width:5px;height:5px;border-radius:50%;background:#d9cfd0;margin-right:10px;flex:0 0 auto}
.ap-drawer-sub li.has-sub>a{font-weight:800;color:#241b1c}
.ap-drawer-sub-2{list-style:none;margin:0;padding:0 0 4px}
.ap-drawer-sub-2 a{padding-left:46px;min-height:38px;font-size:13px;font-weight:500}
.ap-drawer-sub-2 a::before{width:4px;height:4px;background:#e4dcdc}

/* 39-floating-stack.css */
/* ════════════════════════════════════════════════════════════════
   ORION — Yüzen öğeler düzeni (2026-08-30)
   Sabit köşe öğeleri birbirinin üstüne binmesin:
     · Çerez Tercihleri düğmesi  (.ac-yeniden, consent modülü — sol alt)
     · WhatsApp                  (.ap-wa — masaüstü sağ alt, mobil sol alt)
     · Popup tetikleyici         (#sdc-pop-tetik — sol ya da sağ alt, panelden)
     · Mobil alt menü            (.ap-bottom-nav — ≤980px, 62px + safe-area)
   Masaüstü SOL: çerez (alt) → tetikleyici (üstünde)
   Masaüstü SAĞ: WhatsApp (alt) → tetikleyici (üstünde)
   Mobil SOL (alttan üste): alt menü → WhatsApp → çerez (küçük ikon) → tetikleyici (küçük)
   Seçiciler özgüllük için body ile başlar (modül CSS'i sayfa sonunda basılıyor).
   ════════════════════════════════════════════════════════════════ */
body #sdc-pop-tetik.sdc-tetik-sol{left:16px;bottom:60px}
body #sdc-pop-tetik.sdc-tetik-sag{right:26px;bottom:100px}
body .ac-yeniden{z-index:999970}

@media (max-width:980px){
  /* Mobil SOL yığını (alttan üste): alt menü (62px) → tetikleyici KÜÇÜK (79-115)
     → çerez düğmesi KÜÇÜK (123-151). WhatsApp modülü açılırsa (.ap-wa, bottom 74)
     tetikleyiciyle çakışır — o zaman tetikleyiciyi 134'e, çerezi 178'e al. */
  body .ac-yeniden{left:16px;right:auto;bottom:calc(123px + env(safe-area-inset-bottom));padding:6px;gap:0;font-size:11px;box-shadow:0 4px 12px rgba(0,0,0,.14)}
  body .ac-yeniden span{display:none}
  body .ac-yeniden svg{width:15px;height:15px}
  body #sdc-pop-tetik.sdc-tetik-sol,
  body #sdc-pop-tetik.sdc-tetik-sag{right:auto;left:16px;bottom:calc(79px + env(safe-area-inset-bottom));height:36px;font-size:.72rem;padding:0 12px 0 10px;gap:6px;max-width:calc(100vw - 110px);box-shadow:0 8px 20px -8px rgba(0,0,0,.45)}
  body #sdc-pop-tetik svg{width:14px;height:14px}
  body #sdc-pop-tetik .sdc-tetik-nokta{left:-2px;right:auto;width:10px;height:10px}
  body #sdc-pop-tetik span:not(.sdc-tetik-nokta){overflow:hidden;text-overflow:ellipsis}
}

/* ── Mobil çekmece, arama kutusunun ÜSTÜNDE dursun ──
   scripts.php canlı arama için .search-wrap{z-index:1200} veriyor; çekmece 200'de
   kalınca arama kutusu açık menünün üstüne çıkıyordu (ikisi de .site-header
   bağlamında). Çekmece 1300'e alındı, açıkken arama da geri çekilir. */
@media (max-width:980px){
  body .ap-drawer{z-index:1300}
  body.ap-drawer-open .search-wrap{z-index:1}
  body.ap-drawer-open .orion-live-results{display:none}
}

/* ── Çekmece açıkken tetikleyici ve çerez düğmesi geride kalsın (gizle) ── */
@media (max-width:980px){
  body.ap-drawer-open #sdc-pop-tetik,
  body.ap-drawer-open .ac-yeniden{opacity:0;visibility:hidden;pointer-events:none;transition:opacity .15s,visibility .15s}
}

/* 40-a11y.css */
/* ════════════════════════════════════════════════════════════════
   ORION — Erişilebilirlik düzeltmeleri (Lighthouse, 2026-08-30)
   Kaynak tema CSS'ine dokunulmaz; yalnızca kontrast ve dokunma hedefi.
   ════════════════════════════════════════════════════════════════ */

/* Kontrast: ürün kartı puan yazısı (#928783 → 3.5:1 kalıyordu) ve yorum rozeti */
.ap-shop-rating small{color:#6b615d}
.ap-review-badge{color:#5f5753}

/* Kontrast: renkli ürün rozetleri (renk panelden geliyor; açık tonlarda beyaz yazı
   4.5:1'in altına düşüyordu). Inline background'ın ÜSTÜNE hafif koyu katman. */
.ap-shop-badge{background-image:linear-gradient(rgba(0,0,0,.16),rgba(0,0,0,.16))!important}

/* Dokunma hedefi ≥ 24×24: slayt ve ürün grubu noktaları.
   Görünen nokta yine 8px (background-clip:content-box), kutu 24px. */
.ap-dot,
.ap-product-dot{width:24px;height:24px;padding:8px;box-sizing:border-box;background-clip:content-box}
.ap-dot.is-active{width:46px}
.ap-product-dot.is-active{width:44px}

/* 41-newsletter-consent.css */
/* ORION — Bülten onay kutusu (2026-08-30). Footer (koyu zemin) + blog detay (açık zemin). */
.ap-newsletter-consent{display:flex;align-items:flex-start;gap:8px;margin:10px 0 0;max-width:560px;color:rgba(255,255,255,.66);font-size:11px;line-height:1.5;cursor:pointer;text-align:left}
.ap-newsletter-consent input{flex:0 0 auto;width:15px;height:15px;margin:1px 0 0;accent-color:#f3d078;cursor:pointer}
.ap-newsletter-consent a{color:inherit;text-decoration:underline;font-weight:700}
.ap-newsletter-consent.is-error{color:#ffb4a8}
.ap-newsletter-consent--dark{color:#6f6568}
.ap-newsletter-consent--dark input{accent-color:var(--green,#365547)}
.ap-newsletter-consent--dark.is-error{color:#c91020}
@media (max-width:640px){.ap-newsletter-consent{font-size:10.5px}}
