/* ==================================================================
   AGROVAK — stil sistemi
   Palet ve tipografi marka kılavuzundan alındı.
   Renk: #153422 ana renk, #2b5622 → #5c8b30 gradyan, #e8e8dd arkaplan.
   Tipografi: Museo Sans (lisanslı) — yoksa Mulish
   ================================================================== */

:root {
  /* Renk — marka kılavuzundan
     Ürün renkleri (mısır #e8c154, pancar #a52062, pirinç #167eb9,
     bakliyat #883726) bilinçli olarak kullanılmıyor; palet yeşil ağırlıklı. */
  --ink:        #153422;   /* ana renk — metin ve başlıklar */
  --forest:     #2b5622;   /* gradyan başı */
  --leaf:       #5c8b30;   /* yeşil — vurgu, gradyan sonu */
  --leaf-soft:  #8ab455;
  --mist:       #e8e8dd;   /* arkaplan */
  --mist-soft:  #f2f2ea;   /* geniş alanlar için açık ton */
  --mist-deep:  #dcdccd;
  --line:       #d3d3c4;
  --muted:      #5c6f60;
  --paper:      #ffffff;

  --grad: linear-gradient(90deg, var(--forest) 0%, var(--leaf) 100%);

  /* Ölçek */
  --shell: 1240px;
  --gut:   clamp(20px, 4vw, 56px);

  --s1: 8px;  --s2: 14px; --s3: 22px; --s4: 34px;
  --s5: 52px; --s6: 78px; --s7: 112px;

  /* Tipografi */
  /* Marka fontu Museo Sans ticari bir ailedir; lisanslı dosyalar
     assets/fonts/ altına konulup aşağıdaki @font-face bloğu açılınca
     otomatik devreye girer. O zamana kadar en yakın açık alternatif
     olan Mulish kullanılır. */
  --display: "Museo Sans", "Mulish", "Helvetica Neue", Arial, sans-serif;
  --text:    "Museo Sans", "Mulish", "Helvetica Neue", Arial, sans-serif;

  --radius: 3px;
  --radius-lg: 6px;
}

/* ---------- Sıfırlama ---------- */

*, *::before, *::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: 96px; }

body {
  margin: 0;
  font-family: var(--text);
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--paper);
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
}

img, svg, figure { display: block; max-width: 100%; }
img { height: auto; }

a { color: inherit; }

h1, h2, h3, h4 {
  font-family: var(--display);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.02em;
  margin: 0;
  text-wrap: balance;
}

p { margin: 0 0 1.05em; max-width: 68ch; }
p:last-child { margin-bottom: 0; }

ul, ol { margin: 0; padding: 0; }

:focus-visible {
  outline: 2px solid var(--leaf);
  outline-offset: 3px;
  border-radius: 2px;
}

.skip {
  position: absolute; left: -9999px; top: 0; z-index: 999;
  background: var(--ink); color: #fff; padding: 12px 18px;
}
.skip:focus { left: 12px; top: 12px; }

/* ---------- Kabuk ---------- */

.shell {
  width: 100%;
  max-width: var(--shell);
  margin-inline: auto;
  padding-inline: var(--gut);
}

.section { padding-block: clamp(56px, 8vw, var(--s7)); }
.section--tight { padding-block: clamp(44px, 6vw, var(--s6)); }
.section--mist  { background: var(--mist-soft); }
.section--ink   { background: var(--ink); color: #eaf0e6; }
.section--ink h1, .section--ink h2, .section--ink h3 { color: #fff; }

/* ---------- Tipografi ölçeği ---------- */

/* h1–h4 dışındaki etiketlerde de aynı görünümü versinler */
.t-hero, .t-xl, .t-lg, .t-md {
  font-family: var(--display);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.02em;
  max-width: none;
}

.t-hero {
  font-size: clamp(2.9rem, 6.4vw, 5.3rem);
  line-height: 1.02;
  letter-spacing: -0.03em;
}
.t-xl  { font-size: clamp(2.1rem, 4.1vw, 3.35rem); }
.t-lg  { font-size: clamp(1.65rem, 2.7vw, 2.35rem); }
.t-md  { font-size: clamp(1.25rem, 1.8vw, 1.5rem); }

.lede {
  font-size: clamp(1.1rem, 1.5vw, 1.32rem);
  line-height: 1.55;
  color: var(--muted);
  max-width: 62ch;
}

.kicker {
  font-family: var(--text);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--leaf);
  margin: 0 0 var(--s2);
  display: flex;
  align-items: center;
  gap: 10px;
}
.kicker::before {
  content: "";
  width: 26px; height: 2px;
  background: var(--grad);
  flex: none;
}

.muted { color: var(--muted); }

/* ---------- Butonlar ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-family: var(--text);
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.005em;
  padding: 11px 22px;
  border-radius: 100px;
  border: 1.5px solid transparent;
  text-decoration: none;
  cursor: pointer;
  transition: background-color .2s ease, color .2s ease, border-color .2s ease;
}
.btn--sm { padding: 9px 17px; font-size: 0.88rem; }

.btn--solid { background: var(--ink); color: #fff; }
.btn--solid:hover { background: var(--forest); }

.btn--ghost { border-color: currentColor; color: var(--ink); background: transparent; }
.btn--ghost:hover { background: var(--ink); color: #fff; border-color: var(--ink); }

.btn--onDark { background: #fff; color: var(--ink); }
.btn--onDark:hover { background: var(--mist); }

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--forest);
  text-decoration: none;
  padding-bottom: 3px;
  border-bottom: 1.5px solid var(--line);
  transition: border-color .2s ease, color .2s ease;
}
.link-arrow:hover { color: var(--leaf); border-color: var(--leaf); }

/* ==================================================================
   BAŞLIK / MENÜ
   ================================================================== */

.site-head {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,.94);
  backdrop-filter: saturate(160%) blur(12px);
  border-bottom: 1px solid var(--line);
}

/* Ana sayfada hero'nun üstünde şeffaf başlar */
.site-head--over {
  position: fixed;
  inset-inline: 0;
  background: transparent;
  backdrop-filter: none;
  border-bottom-color: transparent;
  transition: background-color .3s ease, border-color .3s ease, backdrop-filter .3s ease;
}
.site-head--over.is-stuck {
  background: rgba(255,255,255,.95);
  backdrop-filter: saturate(160%) blur(12px);
  border-bottom-color: var(--line);
}

.site-head__row {
  display: flex;
  align-items: center;
  gap: var(--s4);
  min-height: 92px;
}

.brand { flex: none; display: block; }
.brand img { width: clamp(150px, 15vw, 208px); height: auto; }

.nav { margin-inline-start: auto; }

.nav__list { list-style: none; display: flex; align-items: center; gap: 4px; }

.nav__item { position: static; }

.nav__link {
  position: relative;   /* aktif çizgisi buna göre hizalanır */
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font: inherit;
  font-size: 0.96rem;
  font-weight: 500;
  color: var(--ink);
  background: none;
  border: 0;
  padding: 11px 15px;
  border-radius: var(--radius);
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
  transition: color .18s ease;
}
.nav__link:hover { color: var(--leaf); }

.nav__item.is-active > .nav__link { color: var(--forest); }
.nav__item.is-active > .nav__link::after {
  content: "";
  position: absolute;
  left: 15px;
  bottom: 4px;
  width: 18px; height: 2px;
  background: var(--grad);
}

.nav__caret { transition: transform .22s ease; opacity: .55; }
.nav__item.is-open .nav__caret { transform: rotate(180deg); }

/* Mega panel — koyu zemin, solda bölüm tanıtımı, sağda kartlar */
.panel {
  position: absolute;
  inset-inline: 0;
  top: 100%;
  background: var(--ink);
  color: #d8e2d6;
  box-shadow: 0 26px 52px -30px rgba(8,24,14,.5);
}
.panel[hidden] { display: none; }

.panel__inner {
  display: grid;
  grid-template-columns: minmax(230px, 0.9fr) 2fr;
  gap: clamp(28px, 5vw, 76px);
  padding-block: clamp(34px, 4vw, 56px);
  align-items: start;
}

/* Sol sütun: dikey ayırıcı çizgi */
.panel__lead {
  position: relative;
  padding-inline-end: clamp(20px, 3vw, 44px);
}
.panel__lead::after {
  content: "";
  position: absolute;
  top: 4px; bottom: 4px; right: 0;
  width: 1px;
  background: rgba(255,255,255,.16);
}

.panel__title { font-size: clamp(1.6rem, 2.2vw, 2.15rem); color: #fff; margin-bottom: 10px; }
.panel__intro { color: rgba(255,255,255,.62); font-size: 0.95rem; margin-bottom: var(--s3); max-width: 32ch; }
.panel .link-arrow { color: var(--leaf-soft); border-bottom-color: rgba(255,255,255,.22); }
.panel .link-arrow:hover { color: #fff; border-bottom-color: var(--leaf-soft); }

/* Sağ sütun: çerçeveli kartlar */
.panel__links {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(212px, 1fr));
  gap: var(--s2);
  align-content: start;
}
.panel__links a {
  display: flex;
  align-items: center;
  gap: 14px;
  height: 100%;
  padding: 16px 16px 16px 14px;
  text-decoration: none;
  color: inherit;
  border: 1px solid rgba(255,255,255,.17);
  border-radius: var(--radius-lg);
  transition: background-color .18s ease, border-color .18s ease;
}
.panel__links a:hover { background: rgba(255,255,255,.06); border-color: rgba(255,255,255,.38); }

.panel__icon { flex: none; display: grid; place-items: center; color: var(--leaf-soft); }
.panel__linkText { flex: 1 1 auto; min-width: 0; }
.panel__linkTitle { display: block; font-weight: 600; font-size: 1rem; color: #fff; }
.panel__linkDesc  { display: block; font-size: 0.85rem; color: rgba(255,255,255,.58); margin-top: 3px; line-height: 1.45; }
.panel__arrow { flex: none; color: rgba(255,255,255,.4); transition: transform .18s ease, color .18s ease; }
.panel__links a:hover .panel__arrow { color: var(--leaf-soft); transform: translateX(3px); }

.site-head__end { display: flex; align-items: center; flex: none; }

/* Hamburger */
.burger {
  display: none;
  width: 44px; height: 44px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  padding: 0;
  place-items: center;
}
.burger span {
  display: block;
  width: 19px; height: 1.5px;
  background: var(--ink);
  margin: 2px auto;            /* çizgiler birbirine yakın dursun */
  transition: transform .25s ease, opacity .2s ease;
}
.burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(5.5px) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-5.5px) rotate(-45deg); }

/* ==================================================================
   HERO / SLIDER
   ================================================================== */

.hero {
  position: relative;
  /* Başlık şeffaf ve hero'nun üstünde durduğu için hero ekranın tamamını
     kaplar; böylece sayfa ilk açıldığında slaytın altında boşluk kalmaz.
     dvh, tarayıcı arayüzü açılıp kapandığında zıplamayı önler. */
  min-height: 100vh;
  min-height: 100dvh;
  display: grid;
  align-items: center;
  overflow: hidden;
  background: var(--mist);
}

.hero__slides { position: absolute; inset: 0; }

.hero__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.1s ease;
  background-size: cover;
  background-position: center right;
  will-change: opacity;
}
.hero__slide.is-on { opacity: 1; }

/* Görseli olmayan slaytlar için doğal yeşil doku */
.hero__slide--fallback {
  background-image:
    radial-gradient(120% 90% at 88% 18%, rgba(255,255,255,.9), transparent 58%),
    radial-gradient(80% 70% at 8% 92%, rgba(43,86,34,.5), transparent 62%),
    linear-gradient(118deg, #dcead2 0%, #f4f8f0 44%, #cfe2c0 100%);
}

/* Metnin okunması için soldan sağa açılan beyaz perde */
.hero__veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(97deg,
    rgba(255,255,255,.88) 0%,
    rgba(255,255,255,.82) 42%,
    rgba(255,255,255,.34) 62%,
    rgba(255,255,255,0) 78%);
}

.hero__inner {
  position: relative;
  z-index: 2;
  padding-block: clamp(140px, 18vh, 200px) clamp(96px, 14vh, 140px);
}

.hero__texts { display: grid; }
.hero__text { grid-area: 1 / 1; max-width: min(42rem, 100%); }

.hero__kicker { color: var(--forest); margin-bottom: var(--s3); }

.hero__title {
  color: var(--ink);
  margin-bottom: var(--s4);
  /* Üç satırlık başlık geniş ekranlarda da taşmasın */
  font-size: clamp(2.15rem, 4vw, 3.55rem);
  line-height: 1.06;
}
/* Her satır kendi satırında dursun */
.hero__title span { display: block; }

.hero__sub {
  font-size: clamp(1.02rem, 1.25vw, 1.16rem);
  color: var(--muted);
  max-width: min(34rem, 100%);
  margin-bottom: var(--s4);
  line-height: 1.6;
}

.hero__actions { display: flex; flex-wrap: wrap; gap: var(--s2); }

/* Slider kontrolleri */
.hero__controls {
  position: absolute;
  z-index: 3;
  bottom: clamp(28px, 5vh, 52px);
  inset-inline: 0;
  display: flex;
  align-items: center;
  gap: var(--s3);
}
.hero__controls .shell { display: flex; align-items: center; gap: var(--s3); }

.hero__dots { display: flex; gap: 10px; list-style: none; }
.hero__dot {
  width: 34px; height: 3px;
  border: 0; padding: 0;
  background: rgba(21,52,34,.22);
  cursor: pointer;
  border-radius: 2px;
  transition: background-color .25s ease;
}
.hero__dot.is-on { background: var(--grad); }


/* ==================================================================
   SAYFA BAŞLIĞI (iç sayfalar)
   ================================================================== */

.pagehead {
  background: var(--mist-soft);
  border-bottom: 1px solid var(--line);
  padding-block: clamp(54px, 9vw, 108px) clamp(44px, 7vw, 82px);
}

/* ---------- Fotoğraflı biçim ---------- */

.pagehead--photo {
  position: relative;
  isolation: isolate;
  border-bottom: 0;
  background-color: var(--ink);
  background-size: cover;
  background-position: center;
  padding-block: clamp(96px, 17vw, 190px);
  text-align: center;
  overflow: hidden;
}

/* Başlığın okunması için koyudan açığa perde */
.pagehead__scrim {
  position: absolute;
  top: 0; right: 0; bottom: 0; left: 0;
  z-index: -1;
  background:
    radial-gradient(58% 58% at 50% 52%, rgba(8,24,14,.66), rgba(8,24,14,.24) 78%),
    linear-gradient(180deg, rgba(8,24,14,.5) 0%, rgba(8,24,14,.3) 45%, rgba(8,24,14,.52) 100%);
}

/* İnce gren dokusu — fotoğrafın üzerindeki düz perdeyi kırar */
.pagehead__grain {
  position: absolute;
  top: 0; right: 0; bottom: 0; left: 0;
  z-index: -1;
  opacity: .32;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)' opacity='.55'/%3E%3C/svg%3E");
}

.pagehead--photo .pagehead__inner { position: relative; }

.pagehead__title {
  color: #fff;
  text-shadow: 0 2px 26px rgba(8,24,14,.4);
  margin: 0;
  max-width: 18ch;
  margin-inline: auto;
}

/* Fotoğraf üzerindeki kırıntı yolu */
.pagehead--photo .crumbs {
  justify-content: center;
  color: rgba(255,255,255,.78);
  margin-bottom: var(--s3);
}
.pagehead--photo .crumbs a { color: rgba(255,255,255,.78); }
.pagehead--photo .crumbs a:hover { color: #fff; }
.pagehead--photo .crumbs li[aria-current] { color: #fff; }
.pagehead__grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: clamp(24px, 5vw, 72px);
  align-items: end;
}
.pagehead h1 { margin-bottom: var(--s2); }
.pagehead .lede { margin: 0; }

.crumbs {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 0.84rem;
  color: var(--muted);
  margin-bottom: var(--s3);
}
.crumbs a { text-decoration: none; }
.crumbs a:hover { color: var(--leaf); }
.crumbs li + li::before { content: "/"; margin-right: 8px; opacity: .5; }

/* ==================================================================
   İÇERİK BLOKLARI
   ================================================================== */

/* İki sütunlu anlatım: solda başlık, sağda metin */
.split {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(28px, 6vw, 92px);
  align-items: start;
}
.split--even { grid-template-columns: 1fr 1fr; }
.split__aside { position: sticky; top: 108px; }

.prose > * + * { margin-top: 1.05em; }
.prose p { max-width: 66ch; }

/* Hairline ızgara — kart yığını yerine */
/* Çizgiler hücrenin kendi kenarlığıyla çizilir; dolmayan hücre
   olmadığı için boş gri kutu oluşmaz.
   minmax değeri 3 sütun verecek şekilde seçildi: 6 madde 3+3 dizilir. */
.grid-rule {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  border-top: 1px solid var(--line);
  /* son sütunun kenar çizgisi kabuk dışına taşsın */
  margin-inline-end: -1px;
}
.grid-rule > * {
  padding: var(--s4);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.rule-item h3 { font-size: 1.32rem; margin-bottom: 10px; }
.rule-item p  { font-size: 0.97rem; color: var(--muted); margin: 0; }

/* Huercasa logosu ve distribütörlük ibaresi */
.partner {
  margin: 0 0 var(--s5);
  display: grid;
  place-items: center;
}
.partner img {
  width: clamp(170px, 20vw, 240px);
  height: auto;
}
.partner__note {
  margin: var(--s5) 0 0;
  max-width: none;
  text-align: center;
  font-size: 0.92rem;
  color: var(--muted);
  padding-top: var(--s3);
  border-top: 1px solid var(--line);
}

/* Rakam şeridi */
.figures {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: var(--s4);
}
.figure-item { border-top: 2px solid; border-image: var(--grad) 1; padding-top: var(--s2); }
.figure-item b {
  display: block;
  font-family: var(--display);
  font-size: clamp(2.4rem, 4vw, 3.4rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.03em;
}
.figure-item span { display: block; font-size: 0.92rem; color: var(--muted); margin-top: 8px; }

/* Ürün satırları */
.product {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(28px, 5vw, 76px);
  align-items: center;
  padding-block: clamp(40px, 6vw, var(--s6));
  border-bottom: 1px solid var(--line);
}
.product:last-of-type { border-bottom: 0; }
/* Görsel HTML'de her zaman önce gelir; çift satırlarda sağa alınır */
.product:nth-child(even) .product__media { order: 2; }

.product h2 { margin-bottom: var(--s2); }
.product__note {
  margin-top: var(--s3);
  padding-top: var(--s3);
  border-top: 1px solid var(--line);
  font-family: var(--display);
  font-weight: 600;
  font-size: 1.12rem;
  color: var(--forest);
  max-width: 30ch;
}

/* Görsel / yer tutucu */
.media { margin: 0; border-radius: var(--radius-lg); overflow: hidden; background: var(--mist); }
.media img { width: 100%; height: 100%; object-fit: cover; }
.media__placeholder {
  display: grid;
  place-items: center;
  aspect-ratio: 4 / 3;
  padding: var(--s3);
  text-align: center;
  color: var(--forest);
  font-size: 0.92rem;
  letter-spacing: 0.02em;
  background:
    radial-gradient(90% 80% at 78% 22%, rgba(255,255,255,.85), transparent 60%),
    linear-gradient(140deg, var(--mist-deep), var(--mist) 55%, #dbe9d0);
  border: 1px dashed var(--line);
  border-radius: var(--radius-lg);
}
.media--tall .media__placeholder { aspect-ratio: 3 / 4; }
.media--wide .media__placeholder { aspect-ratio: 16 / 9; }
.media--square .media__placeholder { aspect-ratio: 1 / 1; }
/* Yan sütuna konan kare görsel: başlığın altında, ölçülü genişlikte */
.media--aside { margin-top: var(--s4); max-width: 400px; }
/* Kare kutu: uzun görseller sarkmaz, ortadan kırpılır */
.media--square img { aspect-ratio: 1 / 1; object-fit: cover; }
/* Bölüm genişliğinde geniş şerit görsel (başlık ile içerik arasında) */
.media--banner { margin-bottom: var(--s5); }
.media--banner img { aspect-ratio: 16 / 9; object-fit: cover; }
.media--banner .media__placeholder { aspect-ratio: 16 / 9; }

/* Pişirme yöntemleri şeridi */
.cookways {
  margin-top: var(--s4);
  padding: var(--s2) var(--s3) var(--s3);
  background: var(--mist);
  border-radius: var(--radius-lg);
}
.cookways__title {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--muted);
  text-align: center;
  margin: 0 0 var(--s2);
  max-width: none;
}
.cookways__list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(76px, 1fr));
  gap: var(--s3) var(--s2);
}
.cookways__list li {
  display: grid;
  justify-items: center;
  gap: 5px;
  text-align: center;
}
.cookways svg {
  width: 32px;
  height: 32px;
  color: var(--forest);
  margin-bottom: 3px;
}
.cookways b { font-size: 0.85rem; font-weight: 600; line-height: 1.25; }
.cookways span { font-size: 0.8rem; color: var(--muted); font-variant-numeric: tabular-nums; }

/* ---------- Ürün sayfası: varyant geçişi ---------- */

.product--single { border-bottom: 0; padding-block: 0; align-items: start; }
.product--single .product__media { order: 2; position: sticky; top: 108px; }

.variants__title {
  font-family: var(--text);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--muted);
  margin: var(--s4) 0 var(--s2);
}
.variants {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: var(--s1);
}
.variants a {
  display: grid;
  place-items: center;
  text-align: center;
  min-height: 48px;
  padding: 11px 18px;
  background: var(--ink);
  color: #fff;
  border: 1.5px solid var(--ink);
  border-radius: var(--radius);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  line-height: 1.25;
  transition: background-color .2s ease, color .2s ease;
}
.variants a:hover { background: var(--forest); border-color: var(--forest); }


/* ---------- Açılır bölüm (besin değerleri / beyanlar) ---------- */

/* Varyant kutularının hemen altında duran açılır bölümler */
.accs {
  margin-top: var(--s4);
  border-top: 1px solid var(--line);
}

.acc { border-bottom: 1px solid var(--line); }
.acc summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s3);
  padding: var(--s3) 0;
  cursor: pointer;
  list-style: none;
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(1.1rem, 1.7vw, 1.35rem);
  color: var(--forest);
}
.acc summary::-webkit-details-marker { display: none; }
.acc summary:hover { color: var(--leaf); }

.acc__ico {
  position: relative;
  flex: none;
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--forest);
}
.acc__ico::before, .acc__ico::after {
  content: "";
  position: absolute;
  top: 0; right: 0; bottom: 0; left: 0;
  margin: auto;
  background: #fff;
}
.acc__ico::before { width: 11px; height: 1.7px; }
.acc__ico::after  { width: 1.7px; height: 11px; transition: transform .2s ease; }
.acc[open] .acc__ico::after { transform: scaleY(0); }

/* Besin değerleri */
.nutri { list-style: none; padding: 0 0 var(--s3); }
.nutri > li { padding: 11px 0; border-top: 1px solid var(--line); }
.nutri__row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: var(--s3);
}
.nutri__row b { font-weight: 600; }
.nutri__row span { font-variant-numeric: tabular-nums; }
.nutri__row--sub {
  font-size: 0.9rem;
  color: var(--muted);
  padding-top: 5px;
  padding-inline-start: var(--s2);
}

/* Beslenme beyanları */
.decl { list-style: none; display: grid; gap: var(--s3); padding: var(--s1) 0 var(--s4); }
.decl li {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: var(--s3);
  align-items: start;
}
.decl svg { width: 36px; height: 36px; color: var(--forest); }
.decl h3 { font-size: 1.08rem; margin: 2px 0 4px; }
.decl p { font-size: 0.94rem; color: var(--muted); margin: 0; }

/* ---------- Ürün görsel galerisi ---------- */

.gallery { position: relative; }

/* Yatay kaydırma + hizalama: JS olmadan da parmakla gezilebilir */
.gallery__track {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  border-radius: var(--radius-lg);
  background: var(--mist);
  /* Kaydırma çubuğunu gizle ama işlevi koru */
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.gallery__track::-webkit-scrollbar { display: none; }

.gallery__slide {
  flex: 0 0 100%;
  scroll-snap-align: center;
  margin: 0;
}
.gallery__slide img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
}

/* Ok düğmeleri */
.gallery__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px; height: 40px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(255,255,255,.92);
  color: var(--ink);
  cursor: pointer;
  padding: 0;
  box-shadow: 0 2px 14px -6px rgba(21,52,34,.45);
  transition: background-color .2s ease, transform .15s ease;
}
.gallery__nav:hover { background: #fff; transform: translateY(-50%) scale(1.06); }
.gallery__nav--prev { left: 12px; }
.gallery__nav--next { right: 12px; }

/* Noktalar */
.gallery__dots {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: var(--s2);
}
.gallery__dot {
  width: 8px; height: 8px;
  border: 0; padding: 0;
  border-radius: 50%;
  background: var(--line);
  cursor: pointer;
  transition: background-color .2s ease, transform .2s ease;
}
.gallery__dot:hover { background: var(--leaf-soft); }
.gallery__dot.is-on { background: var(--forest); transform: scale(1.25); }

/* Marka bloğu */
.brandcard {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: clamp(24px, 4vw, 60px);
  align-items: start;
  padding: clamp(28px, 4vw, var(--s5));
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
}
/* Marka logosu — kutu ya da zemin yok, doğrudan sayfa üzerinde durur */
.brandcard__logo {
  width: clamp(180px, 22vw, 250px);
  height: auto;
  margin-top: 6px;
}

.brandcard__mark {
  display: grid;
  place-items: center;
  min-height: 130px;
  padding: var(--s3);
  background: var(--mist);
  border-radius: var(--radius);
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.6rem;
  color: var(--forest);
  letter-spacing: 0.02em;
}
.brandcard dl {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
  gap: var(--s3);
  margin: var(--s4) 0 0;
  padding-top: var(--s3);
  border-top: 1px solid var(--line);
}
.brandcard dt { font-size: 0.82rem; color: var(--muted); margin-bottom: 4px; }
.brandcard dd { margin: 0; font-family: var(--display); font-weight: 700; font-size: 1.5rem; line-height: 1.1; }

/* Sıralı liste (zincir / süreç) */
.chain { list-style: none; counter-reset: step; display: grid; gap: 2px; }
.chain li {
  counter-increment: step;
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: var(--s3);
  align-items: baseline;
  padding: var(--s3) 0;
  border-bottom: 1px solid var(--line);
}
.chain li::before {
  content: counter(step, decimal-leading-zero);
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--leaf);
}
.chain h3 { font-size: 1.18rem; margin-bottom: 4px; }
.chain p { font-size: 0.96rem; color: var(--muted); margin: 0; }

/* Etiket listesi */
.tags { list-style: none; display: flex; flex-wrap: wrap; gap: var(--s1); }
.tags li {
  border: 1px solid var(--line);
  border-radius: 100px;
  font-size: 0.9rem;
  background: var(--paper);
}
.tags li,
.tags li > a { padding: 8px 16px; }
.tags li:has(> a) { padding: 0; }
.tags li > a {
  display: block;
  text-decoration: none;
  border-radius: 100px;
  transition: background-color .18s ease, color .18s ease;
}
.tags li > a:hover { background: var(--ink); color: #fff; }

/* Alıntı / öne çıkan cümle */
.pull {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(1.5rem, 2.9vw, 2.3rem);
  line-height: 1.28;
  letter-spacing: -0.02em;
  max-width: 24ch;
  margin: 0;
}

/* Ürün kısayolları (ana sayfa ve liste) */
.peek {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: var(--s3);
  align-items: stretch;
}
.peek > li { display: flex; }          /* liste biçiminde de kartlar eşitlensin */
.peek a {
  display: flex;
  flex-direction: column;
  width: 100%;
  text-decoration: none;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--paper);
  transition: border-color .2s ease;
}
.peek a:hover { border-color: var(--leaf); }
.peek .media { border-radius: 0; flex: none; }
.peek__body {
  padding: var(--s3);
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;            /* kart yüksekliğini doldur */
}
.peek__body h3, .peek__body h2 { font-size: 1.22rem; margin-bottom: 6px; }
.peek__body p { font-size: 0.93rem; color: var(--muted); margin: 0; }

/* Ürünler sayfası: satır başına üç kart (3-3-3) */
.peek--list {
  list-style: none;
  grid-template-columns: repeat(3, 1fr);
}
.peek__more {
  display: inline-block;
  align-self: flex-start;
  margin-top: auto;          /* alta yaslanır, böylece tüm kartlarda aynı hizada */
  padding-top: var(--s3);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--forest);
  border-bottom: 1.5px solid var(--line);
  padding-bottom: 2px;
  transition: border-color .2s ease;
}
.peek a:hover .peek__more { border-color: var(--leaf); }

/* ==================================================================
   CTA + FOOTER
   ================================================================== */

.cta { background: var(--ink); color: #fff; padding-block: clamp(52px, 7vw, 96px); }

/* Fotoğraflı biçim: üzerine yeşil perde ve ince gren */
.cta--photo {
  position: relative;
  isolation: isolate;
  background-size: cover;
  background-position: center;
  padding-block: clamp(72px, 9vw, 128px);
  overflow: hidden;
}
.cta__scrim {
  position: absolute;
  top: 0; right: 0; bottom: 0; left: 0;
  z-index: -1;
  background:
    linear-gradient(95deg, rgba(13,34,21,.94) 0%, rgba(13,34,21,.86) 46%, rgba(13,34,21,.62) 78%, rgba(13,34,21,.5) 100%),
    linear-gradient(0deg, rgba(43,86,34,.35), rgba(43,86,34,.35));
}
.cta__grain {
  position: absolute;
  top: 0; right: 0; bottom: 0; left: 0;
  z-index: -1;
  opacity: .3;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)' opacity='.55'/%3E%3C/svg%3E");
}
.cta--photo .cta__inner { position: relative; }
.cta__inner { text-align: left; }
.cta__kicker { font-size: 0.84rem; font-weight: 600; letter-spacing: 0.06em; color: var(--leaf-soft); margin-bottom: var(--s2); }
.cta__title {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(1.6rem, 3.1vw, 2.6rem);
  color: #fff;
  line-height: 1.2;
  margin-bottom: var(--s4);
  max-width: 30ch;
}
.cta__actions { display: flex; flex-wrap: wrap; gap: var(--s2); }
.cta .btn--solid { background: #fff; color: var(--ink); }
.cta .btn--solid:hover { background: var(--mist); }
.cta .btn--ghost { color: #fff; border-color: rgba(255,255,255,.4); }
.cta .btn--ghost:hover { background: #fff; color: var(--ink); border-color: #fff; }

.site-foot {
  background: #0f2618;
  color: #b8c9bb;
  padding-block: clamp(48px, 6vw, 80px) var(--s4);
  font-size: 0.94rem;
}
.foot__top {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) 2.4fr;
  gap: clamp(32px, 5vw, 72px);
  padding-bottom: var(--s5);
  border-bottom: 1px solid rgba(255,255,255,.12);
}
.foot__logo { width: clamp(190px, 22vw, 240px); height: auto; }
.foot__logo--invert { filter: brightness(0) invert(1); opacity: .92; }
.foot__claim { font-family: var(--display); font-weight: 600; font-size: 1.12rem; color: #d9e5d9; margin-top: var(--s3); max-width: 22ch; }

.foot__cols { display: grid; grid-template-columns: repeat(auto-fit, minmax(170px, 1fr)); gap: var(--s4); }
.foot__col h3 {
  font-family: var(--text);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #fff;
  margin-bottom: var(--s2);
}
.foot__col ul { list-style: none; display: grid; gap: 9px; }
.foot__col a { text-decoration: none; transition: color .18s ease; }
.foot__col a:hover { color: #fff; }
.foot__col address { font-style: normal; line-height: 1.7; }
.foot__col address a { text-decoration: underline; text-underline-offset: 3px; }
.foot__social { list-style: none; display: flex; gap: var(--s2); margin-top: var(--s3); }

.foot__bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: var(--s2);
  padding-top: var(--s3);
  font-size: 0.86rem;
  color: #93a897;
}
.foot__bottom p { margin: 0; }
.foot__bottom ul { list-style: none; display: flex; gap: var(--s3); }
.foot__bottom a { text-decoration: none; }
.foot__bottom a:hover { color: #fff; }

/* ---------- İletişim bilgileri ve harita ---------- */

.contact { list-style: none; display: grid; gap: var(--s3); margin: 0 0 var(--s4); }
.contact li {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 14px;
  align-items: start;
}
.contact svg { color: var(--leaf); margin-top: 3px; }
.contact__label {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--muted);
  margin-bottom: 3px;
}
.contact address { font-style: normal; line-height: 1.6; }
.contact a { text-decoration: none; }
.contact a:hover { color: var(--leaf); }

.map {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  line-height: 0;
}
.map iframe {
  width: 100%;
  height: 260px;
  border: 0;
  display: block;
  /* Harita sayfanın yeşiline biraz daha yakın dursun */
  filter: saturate(.88);
}

/* ==================================================================
   FORM
   ================================================================== */

.form { display: grid; gap: var(--s3); }
.field { display: grid; gap: 7px; }
.field label { font-size: 0.9rem; font-weight: 600; }
.field .hint { font-size: 0.82rem; color: var(--muted); font-weight: 400; }

.field input,
.field select,
.field textarea {
  font: inherit;
  font-size: 1rem;
  color: var(--ink);
  padding: 13px 15px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  width: 100%;
  transition: border-color .18s ease;
}
.field textarea { min-height: 150px; resize: vertical; }
.field input:hover, .field select:hover, .field textarea:hover { border-color: #b9cdb0; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--leaf); outline: 2px solid rgba(92,139,48,.18); outline-offset: 0; }

.field--error input, .field--error textarea, .field--error select { border-color: #b3453a; }
.field__err { font-size: 0.85rem; color: #b3453a; }

.field--row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--s3); }

.field--check { display: flex; gap: 11px; align-items: start; }
.field--check input { width: auto; margin-top: 4px; flex: none; }
.field--check label { font-weight: 400; font-size: 0.9rem; color: var(--muted); line-height: 1.55; }

.hp { position: absolute !important; left: -9999px; }

.notice {
  padding: 16px 20px;
  border-radius: var(--radius);
  border-left: 3px solid;
  font-size: 0.96rem;
}
.notice--ok  { background: var(--mist); border-color: var(--leaf); }
.notice--bad { background: #fbeeed; border-color: #b3453a; color: #7d2f27; }

/* ==================================================================
   DUYARLI
   ================================================================== */

@media (max-width: 1080px) {
  .split, .split--even, .pagehead__grid { grid-template-columns: 1fr; }
  .grid-rule { grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }
  .split__aside { position: static; }
  .foot__top { grid-template-columns: 1fr; }
}

@media (max-width: 940px) {
  .peek--list { grid-template-columns: repeat(2, 1fr); }

  /* .nav sabit konumlandığı için akıştan çıkar; sağdaki grubu biz itiyoruz */
  .site-head__end { margin-inline-start: auto; }
  .brand img { width: clamp(182px, 50vw, 240px); }
  /* Büyüyen logoya göre başlık yüksekliği */
  .site-head__row { min-height: 104px; }

  .nav {
    position: fixed;
    inset: 104px 0 auto;
    max-height: calc(100dvh - 104px);
    overflow-y: auto;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    padding: var(--s3) 0 var(--s4);
    transform: translateY(-14px);
    opacity: 0;
    visibility: hidden;
    transition: opacity .22s ease, transform .22s ease, visibility .22s;
    box-shadow: 0 24px 40px -30px rgba(21,52,34,.4);
  }
  .nav.is-open { transform: none; opacity: 1; visibility: visible; }

  .nav__list { flex-direction: column; align-items: stretch; gap: 0; padding-inline: var(--gut); }
  .nav__item { border-bottom: 1px solid var(--line); }
  .nav__link { width: 100%; justify-content: space-between; padding: 17px 0; font-size: 1.06rem; }
  .nav__item.is-active > .nav__link::after { display: none; }

  /* Mobilde panel menünün içinde açılır: açık zemin ve sade kartlar */
  .panel {
    position: static;
    background: var(--mist-soft);
    color: var(--ink);
    box-shadow: none;
    border-radius: var(--radius);
    margin-bottom: var(--s2);
  }
  .panel__inner { grid-template-columns: 1fr; padding: var(--s3); gap: var(--s3); }
  .panel__title { display: none; }
  .panel__lead { padding-inline-end: 0; }
  .panel__lead::after { display: none; }
  .panel__intro { color: var(--muted); margin-bottom: var(--s2); }
  .panel .link-arrow { color: var(--forest); border-bottom-color: var(--line); }
  .panel__links a { padding: 12px 14px; background: var(--paper); border-color: var(--line); }
  .panel__links a:hover { background: var(--paper); border-color: var(--leaf); }
  .panel__icon { color: var(--forest); }
  .panel__linkTitle { color: var(--ink); }
  .panel__linkDesc { color: var(--muted); }
  .panel__arrow { color: var(--line); }

  .burger { display: grid; }

  .site-head--over { background: rgba(255,255,255,.95); backdrop-filter: saturate(160%) blur(12px); border-bottom-color: var(--line); position: sticky; }

  .hero__veil {
    background: linear-gradient(180deg, rgba(255,255,255,.9) 0%, rgba(255,255,255,.82) 55%, rgba(255,255,255,.2) 100%);
  }
  /* Başlığın altında kalan alanın tamamı; svh adres çubuğu açılıp
     kapandığında yüksekliğin zıplamasını önler */
  .hero {
    min-height: calc(100vh - 104px);
    min-height: calc(100svh - 104px);
  }
  .hero__inner { padding-block: clamp(36px, 7vh, 72px) clamp(84px, 13vh, 116px); }
  /* Dikey ekranda fotoğrafın tarla kısmı kadraja girsin */
  .hero__slide { background-position: 62% center; }
  .hero__text { max-width: 100%; }
  .hero__kicker { font-size: .76rem; margin-bottom: var(--s2); }
  .hero__title { font-size: clamp(1.95rem, 8vw, 2.9rem); margin-bottom: var(--s3); }
  .hero__sub { max-width: 100%; font-size: 1rem; margin-bottom: var(--s3); }
  .hero__actions .btn { flex: 1 1 auto; justify-content: center; }
}

@media (max-width: 720px) {
  body { font-size: 16px; }
  .product, .peek { grid-template-columns: 1fr; }
  .product:nth-child(even) .product__media { order: 0; }
  .product--single .product__media { order: -1; position: static; }

  /* Fotoğraflı sayfa başlığı: uzun ürün adları dar ekranda taşmasın */
  .pagehead--photo { padding-block: clamp(64px, 16vw, 96px); }
  .pagehead__title { font-size: clamp(2rem, 8.5vw, 2.7rem); max-width: 100%; }
  .pagehead--photo .crumbs { font-size: .78rem; }

  /* Galeri okları kenara daha yakın ve biraz küçük */
  .gallery__nav { width: 34px; height: 34px; }
  .gallery__nav--prev { left: 8px; }
  .gallery__nav--next { right: 8px; }

  /* Hazırlama/kullanım şeridi ve varyantlar */
  .cookways { padding: var(--s2); }
  .cookways__list { grid-template-columns: repeat(auto-fit, minmax(68px, 1fr)); gap: var(--s3) 6px; }
  .cookways svg { width: 28px; height: 28px; }
  .variants { grid-template-columns: repeat(auto-fit, minmax(132px, 1fr)); }
  .grid-rule { grid-template-columns: 1fr; margin-inline-end: 0; }
  .grid-rule > * { padding: var(--s3) 0; border-right: 0; }

  /* Açılır bölümlerde başlık ile işaret çakışmasın */
  .acc summary { gap: var(--s2); font-size: 1.05rem; }
  .nutri__row { gap: var(--s2); }
  .brandcard { grid-template-columns: 1fr; }
  .grid-rule > * { padding: var(--s3); }
  .field--row { grid-template-columns: 1fr; }
  .chain li { grid-template-columns: 40px 1fr; gap: var(--s2); }
  .foot__bottom { flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    transition-duration: .001ms !important;
  }
}

@media print {
  .site-head, .cta, .hero__controls, .burger { display: none !important; }
  body { color: #000; font-size: 12pt; }
}
