/* ==========================================================================
   KIMOR 2026 — minimal tasarım katmanı
   --------------------------------------------------------------------------
   site.css'ten SONRA yükleniyor. Eski sayfalar (blog, hukuki metinler,
   kahve detay) site.css sınıflarıyla çalışmaya devam ediyor; yeni tasarım
   tamamen `k-` önekli sınıflar üzerinden kuruluyor, böylece iki katman
   çakışmıyor. Referanslar: arabica.com (tipografi, boşluk, ürün ızgarası,
   contact sadeliği) + kronotrop.com.tr (kaydırma çubuğu, tam ekran hero).
   Kural: her bölümde en fazla 5 kelime. Süs yok, sadece görsel + tek söz.
   ========================================================================== */

:root {
  --k-paper: #fbfaf6;
  --k-paper2: #efede6;
  --k-ink: #141412;
  --k-ink2: #6b6a63;
  --k-green: #0f2e20;
  --k-green2: #2e5c3e;
  --k-cream: #f0e4b4;
  --k-line: rgba(20, 20, 18, .13);
  --k-line2: rgba(255, 255, 255, .22);
  --k-head: 56px;           /* mobil header yüksekliği */
  --k-gut: 20px;            /* mobil kenar boşluğu */
  --k-ease: cubic-bezier(.22, .61, .36, 1);
}

@media (min-width: 900px) {
  :root { --k-head: 68px; --k-gut: 40px; }
}

/* --- Kronotrop tarzı kaydırma çubuğu: 10px, köşesiz, açık şerit + koyu tutamak */
::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-track { background: var(--k-paper2); }
::-webkit-scrollbar-thumb { background: var(--k-green); border-radius: 0; }
::-webkit-scrollbar-thumb:hover { background: var(--k-ink); }
html { scrollbar-color: var(--k-green) var(--k-paper2); scrollbar-width: thin; }

body {
  font-family: 'Jost', 'Archivo', -apple-system, sans-serif;
  background: var(--k-paper);
  color: var(--k-ink);
  font-size: 15px;
  line-height: 1.65;
  letter-spacing: .005em;
}

/* Header artık `position: fixed`. Boşluğu TEK yerde, .pageshell'de veriyoruz:
   böylece henüz yeni tasarıma geçmemiş sayfalar (blog, ürün detay, hukuki
   metinler) da header'ın altında kalmıyor. Tam ekran hero bu boşluğu negatif
   margin ile geri alıyor. site.css'teki --headerH değeri eski chrome'a aitti. */
body .pageshell { padding: var(--k-head) 0 0; }

.k-wrap { max-width: 1440px; margin: 0 auto; padding: 0 var(--k-gut); }
.k-narrow { max-width: 660px; margin: 0 auto; }

/* Ortak mikro tipografi: her yerde aynı küçük, aralıklı, büyük harf etiket */
.k-eyebrow {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--k-ink2);
}

.k-display {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 500;
  letter-spacing: -.015em;
  line-height: 1.02;
  font-size: clamp(38px, 9vw, 92px);
}

.k-h2 {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 500;
  letter-spacing: -.015em;
  line-height: 1.05;
  font-size: clamp(30px, 6vw, 58px);
}

/* Alt çizgisi hover'da soldan açılan metin bağlantısı */
.k-link {
  display: inline-block;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  position: relative;
  padding-bottom: 3px;
}
.k-link::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 1px;
  background: currentColor;
  transform: scaleX(1);
  transform-origin: left;
  transition: transform .4s var(--k-ease);
}
@media (hover: hover) {
  .k-link:hover::after { transform: scaleX(0); transform-origin: right; }
}

/* ==========================================================================
   HEADER / NAV
   Mobil: burger (en sol) — yazılı logo (hemen yanında) — sepet (en sağ).
   Masaüstü: logo — 5 bölüm — dil + sepet.
   ========================================================================== */

.k-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 80;
  height: var(--k-head);
  display: flex;
  align-items: center;
  padding: 0 var(--k-gut);
  background: rgba(251, 250, 246, .88);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: background .35s var(--k-ease), border-color .35s var(--k-ease), color .35s var(--k-ease);
}
.k-header.scrolled { border-bottom-color: var(--k-line); }

/* Hero'nun üstündeyken şeffaf + beyaz yazı (arabica gibi) */
.k-header.over {
  background: transparent;
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
  color: #fff;
  border-bottom-color: transparent;
}
.k-header.over .k-burger span { background: #fff; }
.k-header.over .k-navlogo { filter: brightness(0) invert(1); }

.k-header .k-burger {
  order: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 40px; height: 40px;
  margin-left: -8px;
  background: none; border: none; cursor: pointer;
  padding: 0;
}
.k-burger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--k-ink);
  transition: transform .3s var(--k-ease), opacity .2s;
}

.k-brand { order: 2; display: flex; align-items: center; margin-left: 14px; }
.k-navlogo { height: 30px; width: auto; display: block; transition: filter .35s var(--k-ease); }

.k-navlinks { display: none; }

.k-side { order: 4; margin-left: auto; display: flex; align-items: center; gap: 4px; }

.k-icon {
  background: none; border: none; cursor: pointer;
  color: inherit;
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  position: relative;
  padding: 0;
}
.k-icon svg { width: 23px; height: 23px; }
.k-icon .k-badge {
  position: absolute;
  top: 3px; right: 0;
  min-width: 18px; height: 18px;
  padding: 0 4px;
  background: var(--k-green);
  color: #fff;
  font-size: 10px; font-weight: 700;
  line-height: 18px;
  text-align: center;
  border-radius: 999px;
}
.k-header.over .k-icon .k-badge { background: #fff; color: var(--k-green); }

/* Giriş Yap / Üye Ol — sadece masaüstü header'ında, dilin yanında */
.k-authlinks { display: none; }

/* Masaüstü yatay nav */
@media (min-width: 900px) {
  .k-header .k-burger { display: none; }
  .k-brand { order: 1; margin-left: 0; }
  .k-navlogo { height: 34px; }
  .k-navlinks {
    order: 2;
    display: flex;
    align-items: center;
    gap: 34px;
    margin-left: 56px;
  }
  .k-navlinks a {
    font-size: 12px;
    font-weight: 500;
    letter-spacing: .18em;
    text-transform: uppercase;
    position: relative;
    padding: 4px 0;
    opacity: .82;
    transition: opacity .25s;
  }
  .k-navlinks a::after {
    content: '';
    position: absolute;
    left: 0; right: 0; bottom: 0;
    height: 1px;
    background: currentColor;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform .4s var(--k-ease);
  }
  .k-navlinks a:hover, .k-navlinks a.on { opacity: 1; }
  .k-navlinks a:hover::after, .k-navlinks a.on::after { transform: scaleX(1); transform-origin: left; }
  .k-side { gap: 10px; }

  .k-authlinks {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-right: 6px;
    padding-right: 18px;
    border-right: 1px solid currentColor;
    opacity: .82;
  }
  .k-authlinks a {
    font-size: 12px;
    font-weight: 500;
    letter-spacing: .18em;
    text-transform: uppercase;
    transition: opacity .25s;
  }
  .k-authlinks a:hover { opacity: .65; }
  [dir="rtl"] .k-authlinks { border-right: none; border-left: 1px solid currentColor; margin-right: 0; margin-left: 6px; padding-right: 0; padding-left: 18px; }
}

/* --- Dil seçimi: sadece seçili dil görünür, tıklayınca diğerleri açılır.
   Masaüstünde header'da, mobilde menünün üstünde aynı bileşen. */
.k-lang { display: none; position: relative; }
@media (min-width: 900px) { .k-lang { display: block; margin-right: 4px; } }
.k-lang--menu { display: block; margin-right: 0; }

.k-langbtn {
  display: flex;
  align-items: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  font: inherit;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: inherit;
  padding: 8px 2px;
}
.k-langbtn svg {
  width: 11px; height: 11px;
  opacity: .55;
  transition: transform .25s var(--k-ease);
}
.k-lang.open .k-langbtn svg { transform: rotate(180deg); }

.k-langlist {
  position: absolute;
  top: calc(100% + 4px);
  right: 0;
  z-index: 5;
  display: flex;
  flex-direction: column;
  min-width: 64px;
  background: var(--k-paper);
  border: 1px solid var(--k-line);
  box-shadow: 0 16px 34px -18px rgba(20, 20, 18, .5);
}
[dir="rtl"] .k-langlist { right: auto; left: 0; }
.k-langlist button {
  background: none;
  border: none;
  cursor: pointer;
  font: inherit;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--k-ink);
  padding: 10px 14px;
  text-align: left;
  transition: background .2s;
}
[dir="rtl"] .k-langlist button { text-align: right; }
.k-langlist button:hover { background: var(--k-paper2); }

/* Menüde koyu zemin: liste de koyu, açılır yön aşağı-sol */
.k-lang--menu .k-langbtn { color: var(--k-paper); padding-left: 0; }
.k-lang--menu .k-langlist {
  right: auto; left: 0;
  background: var(--k-green);
  border-color: var(--k-line2);
}
[dir="rtl"] .k-lang--menu .k-langlist { left: auto; right: 0; }
.k-lang--menu .k-langlist button { color: var(--k-paper); }
.k-lang--menu .k-langlist button:hover { background: rgba(255, 255, 255, .08); }

/* ==========================================================================
   MOBİL MENÜ — dil / felsefe / öğren / mağaza / locations / contact
   ========================================================================== */

.k-menu {
  position: fixed; inset: 0; z-index: 90;
  visibility: hidden;
  transition: visibility 0s linear .45s;
}
.k-menu.open { visibility: visible; transition-delay: 0s; }

.k-menu .k-menubg {
  position: absolute; inset: 0;
  background: rgba(15, 46, 32, .35);
  opacity: 0;
  transition: opacity .35s var(--k-ease);
}
.k-menu.open .k-menubg { opacity: 1; }

.k-menu .k-menupanel {
  position: absolute;
  inset: 0;
  background: var(--k-green);
  color: var(--k-paper);
  display: flex;
  flex-direction: column;
  padding: 0 var(--k-gut) calc(28px + env(safe-area-inset-bottom));
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  transform: translateY(-101%);
  transition: transform .5s var(--k-ease);
}
.k-menu.open .k-menupanel { transform: translateY(0); }

.k-menu .k-close {
  align-self: flex-end;
  flex: 0 0 auto;
  margin: 12px -9px 0 0;
  background: none; border: none; cursor: pointer;
  color: var(--k-paper);
  font-size: 26px; line-height: 1;
  width: 38px; height: 38px;
  display: flex; align-items: center; justify-content: center;
}
[dir="rtl"] .k-menu .k-close { align-self: flex-start; margin: 12px 0 0 -9px; }

/* Logo, dil ve linkler AYNI listede, aynı büyüklükte, sırayla üstten alta */
.k-menu nav { display: flex; flex-direction: column; padding: 4px 0 8px; }
.k-menu nav > * {
  opacity: 0;
  transform: translateY(14px);
}
.k-menu.open nav > * {
  opacity: 1;
  transform: none;
  transition: opacity .5s var(--k-ease), transform .5s var(--k-ease);
}
.k-menu.open nav > *:nth-child(1) { transition-delay: .10s; }
.k-menu.open nav > *:nth-child(2) { transition-delay: .16s; }
.k-menu.open nav > *:nth-child(3) { transition-delay: .22s; }
.k-menu.open nav > *:nth-child(4) { transition-delay: .28s; }
.k-menu.open nav > *:nth-child(5) { transition-delay: .34s; }
.k-menu.open nav > *:nth-child(6) { transition-delay: .40s; }
.k-menu.open nav > *:nth-child(7) { transition-delay: .46s; }

.k-menu nav a {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(30px, 9vw, 46px);
  font-weight: 500;
  letter-spacing: -.02em;
  line-height: 1.25;
  padding: 12px 0;
}

.k-menu nav .k-menulogo {
  display: flex;
  align-items: center;
  padding: 12px 0;
}
.k-menu nav .k-menulogo .k-navlogo {
  height: clamp(28px, 8vw, 40px);
  filter: brightness(0) invert(1);
}

.k-menu nav .k-lang--menu { padding: 12px 0; margin-right: 0; }
.k-menu nav .k-lang--menu .k-langbtn {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(30px, 9vw, 46px);
  font-weight: 500;
  letter-spacing: -.02em;
  text-transform: none;
  padding: 0;
  gap: 12px;
}
.k-menu nav .k-lang--menu .k-langbtn svg { width: 18px; height: 18px; }
.k-menu nav .k-lang--menu .k-langlist {
  min-width: 120px;
}
.k-menu nav .k-lang--menu .k-langlist button {
  font-family: 'Jost', 'Archivo', -apple-system, sans-serif;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: .04em;
  text-transform: none;
}

/* Giriş Yap / Üye Ol — linklerin altında, daha küçük ikincil aksiyon */
.k-menuauth {
  display: flex;
  gap: 24px;
  padding-top: 10px;
}
.k-menuauth a { font-size: 12px; font-weight: 500; letter-spacing: .18em; text-transform: uppercase; opacity: .85; }
[dir="rtl"] .k-menuauth { flex-direction: row-reverse; }

.k-menu .k-menufoot {
  margin-top: auto;
  padding-top: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border-top: 1px solid var(--k-line2);
}
.k-menu .k-menufoot a { font-size: 11px; letter-spacing: .18em; text-transform: uppercase; opacity: .7; }
/* E-posta adresi büyütülmez. Sayfa lang="tr" olduğu için uppercase dönüşümü
   "info@..." -> "İNFO@KİMORROASTERY.COM" yapıyordu; adres hem yanlış hem de
   kopyalandığında okunaksız görünüyordu. */
.k-menu .k-menufoot a[href^="mailto:"] { text-transform: none; letter-spacing: .06em; }
.k-menu .k-menufoot svg { width: 18px; height: 18px; }

@media (prefers-reduced-motion: reduce) {
  .k-menu, .k-menu .k-menupanel, .k-menu .k-menubg, .k-menu nav > * { transition: none !important; }
}

/* ==========================================================================
   HERO — tam ekran, 5 slaytlık galeri
   ========================================================================== */

.k-hero {
  position: relative;
  margin-top: calc(var(--k-head) * -1);
  height: 100svh;
  min-height: 560px;
  overflow: hidden;
  background: var(--k-green);
  color: #fff;
  display: flex;
  align-items: flex-end;
}

.k-hero .k-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.1s var(--k-ease);
}
.k-hero .k-slide.on { opacity: 1; }
.k-hero .k-slide img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.06);
  transition: transform 7s linear;
}
.k-hero .k-slide.on img { transform: scale(1); }
/* Galeride hem çok koyu (kavurma) hem çok açık (beyaz zeminli kampanya)
   görseller var — perde her ikisinde de beyaz yazıyı ve şeffaf header'ı
   okunur tutacak kadar güçlü olmalı, özellikle ÜST kenarda. */
.k-hero .k-slide::after {
  content: '';
  position: absolute; inset: 0;
  background:
    linear-gradient(to top, rgba(8, 20, 14, .74) 0%, rgba(8, 20, 14, .22) 48%, rgba(8, 20, 14, .52) 100%),
    linear-gradient(to right, rgba(8, 20, 14, .34) 0%, rgba(8, 20, 14, 0) 62%),
    /* Yazının oturduğu sol-alt köşeye yerel, daha güçlü bir perde: set
       mockup'ı gibi açık kareler üzerinde beyaz metin okunur kalsın. */
    linear-gradient(to top right, rgba(8, 20, 14, .62) 0%, rgba(8, 20, 14, 0) 58%);
}
[dir="rtl"] .k-hero .k-slide::after {
  background:
    linear-gradient(to top, rgba(8, 20, 14, .74) 0%, rgba(8, 20, 14, .22) 48%, rgba(8, 20, 14, .52) 100%),
    linear-gradient(to left, rgba(8, 20, 14, .34) 0%, rgba(8, 20, 14, 0) 62%),
    linear-gradient(to top left, rgba(8, 20, 14, .62) 0%, rgba(8, 20, 14, 0) 58%);
}

.k-hero .k-herobody {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 0 var(--k-gut) calc(84px + env(safe-area-inset-bottom));
  max-width: 1440px;
  margin: 0 auto;
}
.k-hero .k-herotext { max-width: 620px; }
.k-hero .k-eyebrow { color: rgba(255, 255, 255, .72); }
.k-hero h1 {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 500;
  letter-spacing: -.02em;
  line-height: 1.02;
  font-size: clamp(36px, 8.5vw, 76px);
  margin: 14px 0 22px;
  text-wrap: balance;
}
.k-hero .k-link { color: #fff; }

/* Galeride açık kareler de var (krem set mockup'ı). Perde tek başına yetmiyor —
   metnin kendi gölgesi her fotoğrafta okunurluğu garantiliyor. */
.k-hero .k-herotext > *,
.k-panel--image .k-panelbody > * {
  text-shadow: 0 2px 26px rgba(8, 20, 14, .78), 0 1px 4px rgba(8, 20, 14, .55);
}

/* Slayt geçişinde metnin yeniden belirmesi */
.k-hero .k-herotext > * {
  animation: kFadeUp .8s var(--k-ease) both;
}
.k-hero .k-herotext > *:nth-child(2) { animation-delay: .07s; }
.k-hero .k-herotext > *:nth-child(3) { animation-delay: .14s; }
@keyframes kFadeUp {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: none; }
}

/* Galeri göstergesi — ince çizgiler, aktif olan dolar */
.k-hero .k-dots {
  position: absolute;
  left: var(--k-gut);
  right: var(--k-gut);
  bottom: calc(13px + env(safe-area-inset-bottom));
  z-index: 3;
  display: flex;
  gap: 8px;
  max-width: 1440px;
  margin: 0 auto;
}
.k-hero .k-dots button {
  flex: 1;
  height: 44px;
  max-width: 84px;
  background: transparent;
  border: none;
  padding: 0;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.k-hero .k-dots button::before,
.k-hero .k-dots button::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 21px;
  height: 2px;
}
.k-hero .k-dots button::before { background: rgba(255, 255, 255, .3); }
.k-hero .k-dots button::after {
  background: #fff;
  transform: scaleX(0);
  transform-origin: left;
}
.k-hero .k-dots button.on::after {
  animation: kFill 7s linear forwards;
}
.k-hero .k-dots button.done::after { transform: scaleX(1); }
@keyframes kFill { from { transform: scaleX(0); } to { transform: scaleX(1); } }

@media (prefers-reduced-motion: reduce) {
  .k-hero .k-slide img, .k-hero .k-herotext > * { transition: none; animation: none; }
  .k-hero .k-dots button.on::after { animation: none; transform: scaleX(1); }
}

/* ==========================================================================
   PREMIUM KATMAN — doku, derinlik, kabartma
   --------------------------------------------------------------------------
   Marka kimliği kadife yeşil + altın. Gösterişli gölge/gradient yerine üç
   sessiz araç: ince grenli doku (kadife hissi), görsellerin içine oturan
   vinyet (derinlik), ve kabartma tipografi (letterpress). Hepsi opsiyonel
   süs değil — hangi yüzeyin "kumaş", hangisinin "kağıt" olduğunu anlatıyor.
   ========================================================================== */

:root {
  --k-gold: #c9a15a;
  --k-gold-soft: #e0c68f;
  /* feTurbulence ile üretilen ince gren — harici dosya yok, tek data URI. */
  --k-grain: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)' opacity='.5'/%3E%3C/svg%3E");
}

/* Kadife doku: koyu yüzeylerde (yeşil footer, tam ekran görsel panelleri) */
.k-velvet { position: relative; }
.k-velvet::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: var(--k-grain);
  background-size: 140px 140px;
  opacity: .16;
  mix-blend-mode: overlay;
  pointer-events: none;
  z-index: 1;
}

/* Kabartma (letterpress) tipografi — koyu zeminde oyulmuş gibi duran KIMOR */
.k-emboss {
  color: transparent;
  background: linear-gradient(180deg, rgba(255, 255, 255, .10), rgba(255, 255, 255, .02));
  -webkit-background-clip: text;
  background-clip: text;
  text-shadow:
    0 1px 0 rgba(255, 255, 255, .10),
    0 -1px 0 rgba(0, 0, 0, .55);
}
/* Açık zeminde tersine: kağıda basılmış gibi */
.k-emboss--paper {
  background: linear-gradient(180deg, rgba(0, 0, 0, .10), rgba(0, 0, 0, .03));
  text-shadow:
    0 1px 0 rgba(255, 255, 255, .9),
    0 -1px 0 rgba(0, 0, 0, .12);
}

/* Marka yazısı — footer ve marka anında kullanılan dev KIMOR */
.k-wordmark {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 500;
  letter-spacing: .12em;
  line-height: .82;
  user-select: none;
}

/* ==========================================================================
   PANEL SİSTEMİ — hero altındaki bölümler hero ile aynı yükseklikte,
   aralarında kağıt payı var (uçtan uca yapışık değiller).
   ========================================================================== */

.k-panels {
  display: flex;
  flex-direction: column;
  gap: var(--k-gut);
  padding: var(--k-gut);
}
.k-panel {
  position: relative;
  min-height: 100svh;
  display: flex;
  overflow: hidden;
  /* Kağıttan hafifçe kalkmış yüzey — 3D değil, sadece bir kat. */
  box-shadow: 0 1px 2px rgba(20, 20, 18, .05), 0 14px 34px -22px rgba(20, 20, 18, .35);
}
@media (max-width: 640px) {
  .k-panel { min-height: 92svh; }
}

/* Görselli panel: tam kaplayan fotoğraf + içeri oturan vinyet + gren */
.k-panel--image { color: #fff; align-items: flex-end; background: var(--k-green); }
/* Tam ekran panellerde dikey fotoğraflar ortadan kırpılıyor ve öznenin
   yüzü/odağı dışarıda kalabiliyor. Odak noktası panel başına --k-focus ile
   veriliyor (varsayılan: biraz üstten). */
.k-panel--image > img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: var(--k-focus, center 34%);
}
.k-panel--image::after {
  content: '';
  position: absolute; inset: 0;
  background:
    linear-gradient(to top, rgba(8, 20, 14, .78) 0%, rgba(8, 20, 14, .12) 52%, rgba(8, 20, 14, .34) 100%),
    linear-gradient(to top right, rgba(8, 20, 14, .5) 0%, rgba(8, 20, 14, 0) 55%),
    radial-gradient(120% 90% at 50% 50%, rgba(0, 0, 0, 0) 45%, rgba(0, 0, 0, .42) 100%);
  z-index: 1;
}
.k-panel--image .k-panelbody {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 clamp(24px, 5vw, 72px) clamp(40px, 7vw, 80px);
}
.k-panel--image .k-eyebrow { color: rgba(255, 255, 255, .7); }
.k-panel--image h2 { color: #fff; margin: 12px 0 22px; }
.k-panel--image .k-link { color: #fff; }
.k-panel--center { align-items: center; text-align: center; }
.k-panel--center .k-panelbody { padding-bottom: clamp(24px, 4vw, 48px); }
.k-panel--center h2 { max-width: 15ch; margin-left: auto; margin-right: auto; }

/* Ürün paneli: solda/sağda paket, karşısında ad-notalar-fiyat.
   Ürünler ızgara değil, tek tek alt alta ve hepsi eşit yükseklikte. */
.k-panel--product {
  background: var(--k-paper2);
  align-items: center;
}
/* Her ürün panelinin arkasında kağıda basılmış gibi duran dev KIMOR —
   marka adı sayfada tekrar ediyor, boş alan da ölü kalmıyor. */
.k-panel--product::before {
  content: 'KIMOR';
  position: absolute;
  left: 50%;
  bottom: -.12em;
  transform: translateX(-50%);
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 500;
  font-size: clamp(90px, 22vw, 300px);
  letter-spacing: .12em;
  line-height: .78;
  color: rgba(20, 20, 18, .045);
  text-shadow: 0 1px 0 rgba(255, 255, 255, .8);
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
  z-index: 0;
}

.k-panel--product .k-panelbody {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(18px, 3vw, 56px);
  align-items: center;
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  padding: clamp(32px, 6vw, 72px) clamp(24px, 5vw, 72px);
}
@media (min-width: 820px) {
  .k-panel--product .k-panelbody { grid-template-columns: 1fr 1fr; }
  .k-panel--product.rev .k-panelshot { order: 2; }
}
.k-panelshot {
  display: block;
  position: relative;
  height: min(62svh, 540px);
}
.k-panelshot img {
  width: 100%; height: 100%;
  object-fit: contain;
  display: block;
  /* Paket kağıdın üstünde duruyormuş gibi tek yumuşak gölge */
  filter: drop-shadow(0 26px 34px rgba(20, 20, 18, .18));
  transition: transform .9s var(--k-ease);
}
@media (hover: hover) { .k-panel--product:hover .k-panelshot img { transform: translateY(-8px); } }
.k-panel--product .k-panelno {
  display: block;
  font-size: 11px;
  letter-spacing: .24em;
  color: var(--k-ink2);
  margin-bottom: 14px;
}
.k-panel--product h2 {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 500;
  font-size: clamp(34px, 6vw, 62px);
  letter-spacing: -.02em;
  line-height: 1;
  margin-bottom: 14px;
}
.k-panel--product .k-panelnotes { color: var(--k-ink2); margin-bottom: 10px; }
.k-panel--product .k-panelprice { font-size: 17px; margin-bottom: 26px; }

/* SSS paneli: kağıt zeminde, ortalanmış */
.k-panel--faq {
  background: var(--k-paper);
  align-items: center;
  border: 1px solid var(--k-line);
  box-shadow: none;
}
.k-panel--faq .k-panelbody {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  padding: clamp(40px, 7vw, 80px) clamp(24px, 5vw, 56px);
}

/* ==========================================================================
   MARKA ANI — uçan aslan (48 kare sprite) + kabartma KIMOR
   Sprite ve animasyon eskiden nav logosuna bağlıydı; yeni tasarımda navigasyon
   sade kaldığı için efsane kendi sahnesine taşındı.
   ========================================================================== */

.k-brandmoment {
  position: relative;
  background: var(--k-green);
  color: var(--k-paper);
  text-align: center;
  padding: clamp(64px, 10vw, 130px) var(--k-gut);
  overflow: hidden;
}
.k-brandmoment .k-lion {
  width: clamp(84px, 12vw, 132px);
  aspect-ratio: 90 / 160;
  margin: 0 auto clamp(20px, 3vw, 34px);
  background-image: url('/assets/img/lion-sprite.png');
  background-repeat: no-repeat;
  background-size: 4800% 100%;
  /* 48 kare: ~3.4sn uçuş, sonra ~4sn duruş, sonra baştan */
  animation: kLion 7.4s infinite;
  position: relative;
  z-index: 2;
}
@keyframes kLion {
  0% { background-position-x: 0%; animation-timing-function: steps(47); }
  46% { background-position-x: 100%; animation-timing-function: steps(1); }
  100% { background-position-x: 100%; }
}
@media (prefers-reduced-motion: reduce) {
  .k-brandmoment .k-lion { animation: none; background-position-x: 0%; }
}
.k-brandmoment .k-wordmark {
  position: relative;
  z-index: 2;
  font-size: clamp(58px, 15vw, 190px);
  color: rgba(251, 250, 246, .96);
  text-shadow: 0 1px 0 rgba(255, 255, 255, .12), 0 -2px 3px rgba(0, 0, 0, .4);
}
.k-brandmoment .k-eyebrow {
  position: relative;
  z-index: 2;
  display: block;
  margin-top: 18px;
  color: var(--k-gold-soft);
}

/* ==========================================================================
   SCROLL REVEAL
   ========================================================================== */

.k-rev {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity .9s var(--k-ease), transform .9s var(--k-ease);
  will-change: opacity, transform;
}
.k-rev[data-in] { opacity: 1; transform: none; }
.k-rev[data-d="1"] { transition-delay: .09s; }
.k-rev[data-d="2"] { transition-delay: .18s; }
.k-rev[data-d="3"] { transition-delay: .27s; }

/* Görselin kendi içinde yavaşça ölçeklenmesi */
.k-parallax { overflow: hidden; }
.k-parallax img {
  transform: scale(1.1);
  transition: transform 1.6s var(--k-ease);
}
.k-rev[data-in] .k-parallax img, .k-parallax.k-rev[data-in] img { transform: scale(1); }

@media (prefers-reduced-motion: reduce) {
  .k-rev { opacity: 1; transform: none; transition: none; }
  .k-parallax img { transform: none; transition: none; }
}

/* ==========================================================================
   BÖLÜMLER
   ========================================================================== */

.k-sec { padding: clamp(72px, 14vw, 160px) 0; }
.k-sec--flush { padding: 0; }

/* Tek görsel + tek söz — "yeni ürün" ve "ruh hayvanları" bölümleri */
.k-feature {
  position: relative;
  min-height: 78svh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  color: #fff;
}
.k-feature > img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.k-feature::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(8, 20, 14, .72), rgba(8, 20, 14, .05) 60%);
}
.k-feature .k-featurebody {
  position: relative; z-index: 2;
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 var(--k-gut) clamp(40px, 7vw, 78px);
}
.k-feature .k-eyebrow { color: rgba(255, 255, 255, .72); }
.k-feature h2 { margin: 12px 0 20px; color: #fff; }
.k-feature .k-link { color: #fff; }

/* İki tam görselli bölüm art arda geliyor (yeni ürün → ruh hayvanları).
   İkincisi ortalanmış ve daha yüksek: aynı düzenin tekrarı gibi okunmasın
   (bkz. CLAUDE.md → "Ardışık aynı-tipte bölüm olmaz"). */
.k-feature--center { align-items: center; min-height: 92svh; text-align: center; }
.k-feature--center .k-featurebody { padding-bottom: 0; }
.k-feature--center .k-featurebody > * { margin-left: auto; margin-right: auto; }
.k-feature--center h2 { max-width: 14ch; margin-left: auto; margin-right: auto; }
.k-feature--center::after {
  background: radial-gradient(ellipse at center, rgba(8, 20, 14, .28) 0%, rgba(8, 20, 14, .74) 78%);
}

/* Bölüm başlığı satırı: sol başlık, sağ bağlantı */
.k-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: clamp(28px, 5vw, 52px);
  flex-wrap: wrap;
}

/* --- Ürün ızgarası
   --------------------------------------------------------------------------
   2026-08-27: kart düzeni değişti. Eski düzen arabica.com'un birebir
   kopyasıydı — ad ve fiyat GÖRSELİN ÜSTÜNDE, kartın sınırı yok. Izgarada bir
   metin bloğu hem üstündeki görselin altında hem altındakinin üstünde
   duruyordu; hangi yazının hangi ürüne ait olduğu ancak boşluk ölçerek
   anlaşılıyordu. Yeni düzenin üç ayırıcısı var:
     1. GÖRSEL ÖNCE, metin altında — okuma sırası sahiplik sırasıyla aynı.
        Eski işaretlemeyi kullanan ızgaralarda (ilgili ürünler, köken,
        rezerve, setler) bunu `order: -1` sağlıyor, JSX'e dokunmadan.
     2. Kartın kendi zemini + ince çerçevesi: nerede başlayıp bittiği belli.
     3. Görselin içinde sol üstte kategori etiketi — aynı harmanın filtre ve
        espresso kartı yan yana geldiğinde ilk bakışta ayrışsın diye.
   Izgara satır aralığı da kart içi boşluktan belirgin şekilde büyük. */
.k-shop {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(28px, 5vw, 64px) clamp(14px, 2.4vw, 32px);
}
@media (min-width: 900px) { .k-shop { grid-template-columns: repeat(4, 1fr); } }

.k-prod {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--k-paper);
  border: 1px solid var(--k-line);
  overflow: hidden;
  color: inherit;
  text-decoration: none;
  transition: border-color .3s var(--k-ease), box-shadow .3s var(--k-ease);
}
@media (hover: hover) {
  .k-prod:hover { border-color: rgba(20, 20, 18, .3); box-shadow: 0 12px 34px rgba(20, 20, 18, .08); }
}
/* Kartın tamamı odaklanınca da belli olsun (klavye ile gezinme). */
.k-prod:focus-within { border-color: var(--k-green); }

/* Eski işaretlemede (`.k-prod` doğrudan <a>) ad/fiyat görselden ÖNCE
   yazılıyor; kaynağa dokunmadan görseli başa alıyoruz. */
.k-prodlink { display: flex; flex-direction: column; flex: 1; color: inherit; text-decoration: none; }
.k-prod .k-prodimg { order: -1; }

.k-prod .k-prodimg {
  position: relative;
  display: block;
  aspect-ratio: 4 / 5;
  background: var(--k-paper2);
  overflow: hidden;
}
.k-prod .k-prodimg img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .8s var(--k-ease);
}
@media (hover: hover) {
  .k-prod:hover .k-prodimg img { transform: scale(1.045); }
}

/* Kategori etiketi — görselin İÇİNDE. Fotoğrafın üstünde okunabilirliği
   garanti etmek için kendi opak zemini var; metni doğrudan fotoğrafa
   yazmıyoruz. */
.k-prodtag {
  position: absolute;
  top: 10px;
  inset-inline-start: 10px;
  z-index: 1;
  padding: 5px 10px;
  background: rgba(251, 250, 246, .94);
  color: var(--k-ink);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  line-height: 1;
  pointer-events: none;
}

/* Metin bloğu. Kart içi dikey boşluklar (6px) satır aralığından (28-64px)
   belirgin şekilde küçük — yakınlık kuralı ayrımı tek başına taşıyor. */
.k-prodbody {
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
  padding: 14px 14px 16px;
}
/* Eski işaretlemede metin bloğu yok, ad/fiyat doğrudan kartın çocuğu. */
.k-prod > .k-prodname, .k-prodlink > .k-prodname { padding: 14px 14px 0; }
.k-prod > .k-prodprice, .k-prodlink > .k-prodprice { padding: 2px 14px 16px; margin-top: auto; }

.k-prod .k-prodname {
  display: block;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .01em;
  line-height: 1.3;
  color: var(--k-ink);
  text-decoration: none;
}
/* "Stretched link": ad linki bütün kartı tıklanabilir yapıyor. Hızlı ekleme
   butonu bunun üstünde kalsın diye kendi z-index'ini alıyor. */
.k-prodhit::after { content: ''; position: absolute; inset: 0; z-index: 2; }

.k-prodnotes {
  display: block;
  font-size: 12px;
  line-height: 1.45;
  color: var(--k-ink2);
}
.k-prodsizes {
  display: block;
  font-size: 12px;
  letter-spacing: .04em;
  color: var(--k-ink2);
  opacity: .85;
}
/* Fiyat kartın en altına yaslı — tat notu bir ya da iki satır olabiliyor ve
   fiyatlar aksi halde ızgarada farklı yüksekliklerde asılı kalıyor. */
.k-prodbody .k-prodprice { margin-top: auto; padding-top: 10px; }
.k-prod .k-prodprice {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--k-ink);
}

/* Dar ekranda kart iki sütuna sığıyor: metin ölçüleri bir tık küçülüyor ki
   "…'den başlayan" satırı üç satıra bölünmesin. */
@media (max-width: 640px) {
  .k-prodbody { padding: 12px 12px 14px; gap: 5px; }
  .k-prod .k-prodname { font-size: 13px; }
  .k-prodnotes, .k-prodsizes { font-size: 11px; }
  .k-prod .k-prodprice { font-size: 13px; line-height: 1.35; }
}

/* Hızlı ekleme butonu — görselin alt kenarına yaslı, artık metin bloğunun
   değil GÖRSELİN içinde. Mobilde HER ZAMAN görünür (dokunmatikte hover yok,
   CLAUDE.md: mobil öncelikli), masaüstünde kart üzerine gelince beliriyor. */
.k-quickadd {
  position: absolute;
  z-index: 3;
  left: 10px; right: 10px; bottom: 10px;
  min-height: 44px;
  padding: 12px 14px;
  border: none;
  background: var(--k-green);
  color: #fff;
  font: inherit;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: opacity .25s var(--k-ease), transform .25s var(--k-ease);
}
.k-quickadd:active { transform: scale(.985); }
@media (hover: hover) {
  .k-quickadd { opacity: 0; transform: translateY(6px); pointer-events: none; }
  .k-prod:hover .k-quickadd,
  .k-quickadd:focus-visible { opacity: 1; transform: none; pointer-events: auto; }
}

/* Mağaza sayfası: mobilde kategoriler üstte satır, masaüstünde sol sütunda */
.k-shoplayout { display: grid; grid-template-columns: 1fr; gap: 34px; }
@media (min-width: 900px) {
  .k-shoplayout { grid-template-columns: 190px 1fr; gap: 0 clamp(40px, 5vw, 80px); }
  .k-shoplayout .k-shop { grid-template-columns: repeat(3, 1fr); }
}
@media (min-width: 1280px) {
  .k-shoplayout .k-shop { grid-template-columns: repeat(4, 1fr); }
}

.k-shopfilter {
  display: flex;
  gap: 22px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding-bottom: 4px;
}
.k-shopfilter::-webkit-scrollbar { display: none; }
.k-shopfilter button {
  background: none; border: none; cursor: pointer;
  font: inherit;
  font-size: 13px;
  letter-spacing: .04em;
  color: var(--k-ink2);
  padding: 0;
  white-space: nowrap;
  transition: color .25s;
}
.k-shopfilter button.on { color: var(--k-ink); }
@media (min-width: 900px) {
  .k-shopfilter { flex-direction: column; gap: 12px; align-items: flex-start; overflow: visible; }
}

/* --- SSS: çizgi + aç/kapa, süs yok */
.k-faq { border-top: 1px solid var(--k-line); }
.k-faq details { border-bottom: 1px solid var(--k-line); }
.k-faq summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 40px 22px 0;
  position: relative;
  font-size: clamp(16px, 2.6vw, 20px);
  font-weight: 400;
  letter-spacing: -.005em;
}
.k-faq summary::-webkit-details-marker { display: none; }
.k-faq summary::after {
  content: '';
  position: absolute;
  right: 4px; top: 50%;
  width: 13px; height: 1px;
  background: var(--k-ink);
  transform: translateY(-50%);
}
.k-faq summary::before {
  content: '';
  position: absolute;
  right: 10px; top: 50%;
  width: 1px; height: 13px;
  background: var(--k-ink);
  transform: translateY(-50%);
  transition: transform .3s var(--k-ease), opacity .3s;
}
.k-faq details[open] summary::before { transform: translateY(-50%) rotate(90deg); opacity: 0; }
.k-faq .k-faqbody {
  padding: 0 0 24px;
  max-width: 640px;
  color: var(--k-ink2);
  font-size: 15px;
}

/* ==========================================================================
   FOOTER — minimal
   ========================================================================== */

/* Eski footer'ın zenginliği geri geldi: bülten bloğu + dört bağlantı sütunu +
   dev kabartma KIMOR + alt şerit (logo, tagline, sosyal, hukuki, ödeme). */
.k-footer {
  position: relative;
  background: var(--k-green);
  color: var(--k-paper);
  padding: clamp(56px, 9vw, 104px) 0 calc(24px + env(safe-area-inset-bottom));
  overflow: hidden;
}
.k-footer > * { position: relative; z-index: 2; }
.k-footer a { opacity: .72; transition: opacity .25s; }
.k-footer a:hover { opacity: 1; }

/* --- Bülten */
.k-footnews {
  display: grid;
  gap: 22px;
  padding-bottom: clamp(40px, 6vw, 64px);
  border-bottom: 1px solid var(--k-line2);
}
@media (min-width: 860px) {
  .k-footnews { grid-template-columns: 1fr 1fr; gap: 56px; align-items: end; }
}
.k-footnews h3 {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 500;
  font-size: clamp(26px, 4vw, 40px);
  letter-spacing: -.02em;
  line-height: 1.05;
  margin: 12px 0 10px;
}
.k-footnews p { font-size: 13.5px; color: rgba(251, 250, 246, .6); max-width: 46ch; }
.k-footnews .k-eyebrow { color: var(--k-gold-soft); }
.k-footform { display: flex; align-items: flex-end; gap: 14px; }
.k-footform input {
  flex: 1;
  font: inherit;
  font-size: 15px;
  color: var(--k-paper);
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--k-line2);
  border-radius: 0;
  padding: 12px 0;
  -webkit-appearance: none;
  appearance: none;
  transition: border-color .25s;
}
.k-footform input::placeholder { color: rgba(251, 250, 246, .45); }
.k-footform input:focus { outline: none; border-bottom-color: var(--k-gold); }
.k-footform button {
  background: none;
  border: none;
  border-bottom: 1px solid var(--k-paper);
  cursor: pointer;
  font: inherit;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--k-paper);
  padding: 12px 0 11px;
  white-space: nowrap;
}

/* --- Dört sütun */
.k-footlinks {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 34px 24px;
  padding: clamp(40px, 6vw, 64px) 0;
  border-bottom: 1px solid var(--k-line2);
}
@media (min-width: 860px) { .k-footlinks { grid-template-columns: repeat(4, 1fr); gap: 40px; } }
.k-footcol { display: flex; flex-direction: column; gap: 11px; align-items: flex-start; }
.k-footcol a { font-size: 13px; letter-spacing: .02em; }
.k-footcol .k-eyebrow { color: rgba(251, 250, 246, .42); margin-bottom: 5px; }

/* --- Dev kabartma marka yazısı */
.k-footwordmark {
  font-size: clamp(60px, 19vw, 250px);
  line-height: .78;
  text-align: center;
  margin: clamp(24px, 4vw, 48px) 0 clamp(20px, 3vw, 36px);
  color: rgba(251, 250, 246, .07);
  text-shadow: 0 1px 0 rgba(255, 255, 255, .07), 0 -2px 4px rgba(0, 0, 0, .45);
  pointer-events: none;
}

/* --- Alt şerit */
.k-footbottom {
  padding-top: 22px;
  border-top: 1px solid var(--k-line2);
  display: grid;
  gap: 20px;
}
@media (min-width: 980px) {
  .k-footbottom { grid-template-columns: auto 1fr auto; align-items: center; gap: 32px; }
}
.k-footbrand { display: flex; align-items: center; gap: 14px; }
.k-footlogo { height: 24px; width: auto; filter: brightness(0) invert(1); opacity: .9; }
.k-foottag { font-size: 12.5px; color: rgba(251, 250, 246, .55); }
.k-footlegal {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 18px;
  font-size: 11px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(251, 250, 246, .45);
}
/* Sağ altta sabit duran yardımcı butonlar ödeme ikonlarının üstüne binmesin */
.k-footmeta { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }
@media (min-width: 980px) { .k-footmeta { padding-right: 64px; } }
[dir="rtl"] .k-footmeta { padding-right: 0; }
@media (min-width: 980px) { [dir="rtl"] .k-footmeta { padding-left: 64px; } }
.k-social { display: flex; gap: 14px; }
.k-social svg { width: 17px; height: 17px; }
.k-footpay { display: flex; align-items: center; gap: 9px; }
.k-footpay img { height: 19px; width: auto; opacity: .78; filter: grayscale(1) brightness(1.7); }

/* ==========================================================================
   SABİT (STICKY) BİLEŞENLER
   Sağ altta yukarı-çık + yardım asistanı; mobil ürün sayfasında alt satın
   alma çubuğu. Üçü de aynı dilde: köşesiz, çizgili, sessiz.
   ========================================================================== */

.k-sticky {
  position: fixed;
  right: var(--k-gut);
  bottom: calc(var(--k-gut) + env(safe-area-inset-bottom));
  z-index: 70;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
}
[dir="rtl"] .k-sticky { right: auto; left: var(--k-gut); align-items: flex-start; }
/* Mobil satın alma çubuğu açıkken üstüne binmesin */
body.k-hasbuybar .k-sticky { bottom: calc(var(--k-gut) + 74px + env(safe-area-inset-bottom)); }

.k-fab {
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  background: var(--k-paper);
  color: var(--k-ink);
  border: 1px solid var(--k-line);
  border-radius: 0;
  cursor: pointer;
  padding: 0;
  box-shadow: 0 10px 26px -14px rgba(20, 20, 18, .5);
  transition: background .25s, color .25s, opacity .3s var(--k-ease), transform .3s var(--k-ease);
}
.k-fab svg { width: 18px; height: 18px; }
.k-fab:hover { background: var(--k-green); color: var(--k-paper); border-color: var(--k-green); }
/* Yeşil zeminlerin (footer, marka anı) üstünde kaybolmasın diye açık bir halka */
.k-fab--chat {
  background: var(--k-green);
  color: var(--k-paper);
  border-color: var(--k-green);
  box-shadow: 0 0 0 1px rgba(251, 250, 246, .26), 0 10px 26px -14px rgba(20, 20, 18, .5);
}
.k-fab--chat:hover { background: var(--k-ink); border-color: var(--k-ink); }
.k-fab--top, .k-fab--chat { opacity: 0; transform: translateY(10px); pointer-events: none; }
.k-fab--top.show, .k-fab--chat.show { opacity: 1; transform: none; pointer-events: auto; }

/* --- Yardım paneli */
.k-chat {
  position: fixed;
  right: var(--k-gut);
  bottom: calc(var(--k-gut) + 56px + env(safe-area-inset-bottom));
  z-index: 71;
  width: min(360px, calc(100vw - var(--k-gut) * 2));
  max-height: min(70svh, 560px);
  display: flex;
  flex-direction: column;
  background: var(--k-paper);
  border: 1px solid var(--k-line);
  box-shadow: 0 30px 70px -30px rgba(20, 20, 18, .55);
}
[dir="rtl"] .k-chat { right: auto; left: var(--k-gut); }
body.k-hasbuybar .k-chat { bottom: calc(var(--k-gut) + 130px + env(safe-area-inset-bottom)); }
.k-chathead {
  display: flex; align-items: center; justify-content: space-between;
  padding: 15px 18px;
  border-bottom: 1px solid var(--k-line);
}
.k-chathead b { font-size: 12px; font-weight: 500; letter-spacing: .16em; text-transform: uppercase; }
.k-chathead button {
  background: none; border: none; cursor: pointer;
  font-size: 22px; line-height: 1; color: var(--k-ink2);
  padding: 0 2px;
}
.k-chatbody { padding: 16px 18px 18px; overflow-y: auto; }
.k-chatbody .k-chatgreet { font-size: 13.5px; color: var(--k-ink2); margin-bottom: 14px; }
.k-chatbody input {
  width: 100%;
  font: inherit; font-size: 15px;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--k-line);
  border-radius: 0;
  padding: 10px 0;
  margin-bottom: 16px;
  -webkit-appearance: none; appearance: none;
}
.k-chatbody input:focus { outline: none; border-bottom-color: var(--k-ink); }
.k-chatchips { display: flex; flex-wrap: wrap; gap: 8px; }
.k-chatchips button {
  background: none;
  border: 1px solid var(--k-line);
  border-radius: 0;
  cursor: pointer;
  font: inherit; font-size: 12px;
  color: var(--k-ink2);
  padding: 7px 11px;
  text-align: left;
  transition: border-color .25s, color .25s;
}
.k-chatchips button:hover { border-color: var(--k-ink); color: var(--k-ink); }
.k-chatans { border-top: 1px solid var(--k-line); padding-top: 14px; margin-top: 4px; }
.k-chatans + .k-chatans { margin-top: 12px; }
.k-chatans .q { font-size: 13.5px; margin-bottom: 5px; }
.k-chatans .a { font-size: 13px; color: var(--k-ink2); line-height: 1.7; }
.k-chatempty { font-size: 13px; color: var(--k-ink2); }
.k-chatfoot {
  border-top: 1px solid var(--k-line);
  padding: 13px 18px;
  font-size: 11px;
  letter-spacing: .16em;
  text-transform: uppercase;
  text-align: center;
}

/* --- Mobil satın alma çubuğu (ürün sayfası) */
.k-buybar {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 69;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 10px var(--k-gut) calc(10px + env(safe-area-inset-bottom));
  background: rgba(251, 250, 246, .94);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  backdrop-filter: saturate(160%) blur(14px);
  border-top: 1px solid var(--k-line);
  transform: translateY(101%);
  transition: transform .35s var(--k-ease);
}
.k-buybar.show { transform: none; }
.k-buybar .k-buybarinfo { min-width: 0; display: flex; flex-direction: column; gap: 2px; }
.k-buybar .k-buybarname {
  font-size: 13px;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.k-buybar .k-buybarprice { font-size: 12.5px; color: var(--k-ink2); }
.k-buybar .k-buy { width: auto; flex: 1; padding: 15px 18px; }
@media (min-width: 900px) { .k-buybar { display: none; } }

/* ==========================================================================
   İÇ SAYFA BAŞLIĞI (arabica: sol üstte aralıklı büyük harf, başka hiçbir şey)
   ========================================================================== */

.k-page { padding-top: clamp(36px, 7vw, 74px); }
.k-pagetitle {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .3em;
  text-transform: uppercase;
  margin-bottom: clamp(40px, 8vw, 96px);
}

/* Felsefe — Türkçe ve İspanyolca yan yana, aralarında ince ayraç.
   Mobilde tek sütuna düşer, aralarında çizgi belirir. */
.k-bilingual {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(40px, 6vw, 72px);
}
@media (min-width: 900px) {
  .k-bilingual { grid-template-columns: 1fr 1fr; gap: clamp(48px, 6vw, 96px); }
  .k-bilingual > * + * {
    border-left: 1px solid var(--k-line);
    padding-left: clamp(48px, 6vw, 96px);
  }
  [dir="rtl"] .k-bilingual > * + * {
    border-left: none; padding-left: 0;
    border-right: 1px solid var(--k-line);
    padding-right: clamp(48px, 6vw, 96px);
  }
}
@media (max-width: 899px) {
  .k-bilingual > * + * { border-top: 1px solid var(--k-line); padding-top: clamp(36px, 7vw, 56px); }
}
.k-bilingual .k-prose { max-width: none; }
/* Yan yana düzende giriş cümlesi biraz küçülüyor — sütun daraldı */
.k-lead2 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(20px, 2.6vw, 27px);
  line-height: 1.3;
  letter-spacing: -.015em;
  margin-bottom: 1.5em;
}

/* Felsefe — tek sütun uzun metin */
.k-prose { max-width: 640px; }
.k-prose p { margin-bottom: 1.35em; font-size: 15px; line-height: 1.85; }
.k-prose p:last-child { margin-bottom: 0; }
.k-prose .k-lead {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(21px, 3.6vw, 30px);
  line-height: 1.35;
  letter-spacing: -.015em;
  margin-bottom: 1.6em;
}
.k-prose ul { list-style: none; margin-bottom: 1.35em; }
.k-prose ul li { padding-left: 18px; position: relative; margin-bottom: .4em; }
.k-prose ul li::before { content: '·'; position: absolute; left: 4px; }
.k-proserule {
  height: 1px;
  background: var(--k-line);
  margin: clamp(48px, 8vw, 88px) 0;
  max-width: 640px;
}
.k-proselang {
  font-size: 11px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--k-ink2);
  margin-bottom: 26px;
}

/* Öğren — sade liste ızgarası */
.k-learn {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(34px, 5vw, 58px) clamp(20px, 3vw, 44px);
}
@media (min-width: 700px) { .k-learn { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1100px) { .k-learn { grid-template-columns: repeat(3, 1fr); } }
.k-learncard { display: block; }
.k-learncard .k-learnimg { display: block; aspect-ratio: 3 / 2; overflow: hidden; background: var(--k-paper2); }
.k-learncard .k-learnimg img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform .8s var(--k-ease);
}
@media (hover: hover) { .k-learncard:hover .k-learnimg img { transform: scale(1.05); } }
.k-learncard h3 {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 500;
  font-size: clamp(20px, 2.6vw, 25px);
  letter-spacing: -.015em;
  line-height: 1.2;
  margin: 16px 0 6px;
}
.k-learncard p { font-size: 13.5px; color: var(--k-ink2); max-width: 34ch; }

/* Contact — arabica: ortada 3 satır, ok işareti */
.k-contact { display: flex; flex-direction: column; gap: 4px; }
.k-contact a {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 0;
  font-size: clamp(13px, 2vw, 15px);
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.k-contact a svg { width: 13px; height: 13px; transition: transform .35s var(--k-ease); }
@media (hover: hover) { .k-contact a:hover svg { transform: translateX(6px); } }
[dir="rtl"] .k-contact a svg { transform: scaleX(-1); }
@media (min-width: 760px) { .k-contact { padding-left: 32%; } }

/* Locations — sadece "yakında" afişi */
.k-soon {
  min-height: 58svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 18px;
}
.k-soon .k-h2 { max-width: 12ch; }

/* Kahveni Bul — tam ekran tek soru */
.k-quiz { min-height: calc(100svh - var(--k-head) * 2); display: flex; flex-direction: column; justify-content: center; }
.k-quizq {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 500;
  font-size: clamp(26px, 5vw, 44px);
  letter-spacing: -.02em;
  line-height: 1.12;
  margin-bottom: clamp(28px, 5vw, 48px);
  max-width: 18ch;
}
.k-quizopts { display: flex; flex-direction: column; gap: 1px; background: var(--k-line); border-top: 1px solid var(--k-line); border-bottom: 1px solid var(--k-line); }
.k-quizopts button {
  background: var(--k-paper);
  border: none;
  cursor: pointer;
  font: inherit;
  text-align: left;
  padding: 20px 44px 20px 0;
  position: relative;
  font-size: clamp(15px, 2.2vw, 18px);
  color: var(--k-ink);
  transition: background .3s var(--k-ease), padding-left .3s var(--k-ease);
}
[dir="rtl"] .k-quizopts button { text-align: right; padding: 20px 0 20px 44px; }
@media (hover: hover) {
  .k-quizopts button:hover { background: var(--k-paper2); padding-left: 16px; }
  [dir="rtl"] .k-quizopts button:hover { padding-left: 44px; padding-right: 16px; }
}
.k-quizprog {
  font-size: 11px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--k-ink2);
  margin-bottom: 18px;
}

/* ==========================================================================
   ORTAK İÇERİK BİLEŞENLERİ
   Eski site.css'teki catbanner / spot / how+step / trustband / grid+card /
   ctaband / inqform / legalwrap kalıplarının yeni tasarımdaki karşılıkları.
   Hepsi aynı kurala uyuyor: çizgi ve boşlukla ayır, kutu ve gölge kullanma.
   ========================================================================== */

/* Sayfa başlığının hemen altındaki tek giriş cümlesi */
.k-lead {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 500;
  font-size: clamp(21px, 3.4vw, 32px);
  line-height: 1.28;
  letter-spacing: -.015em;
  max-width: 22ch;
  margin-top: -12px;
  margin-bottom: clamp(48px, 8vw, 92px);
}
.k-sub { color: var(--k-ink2); max-width: 56ch; margin-top: -8px; }
/* Başlık bloğunun içindeki boşluklar: sayfa adı → giriş cümlesi → açıklama
   tek bir küme gibi dursun, aralarında ölü alan kalmasın. Ardından gelen ilk
   bölüm de tam ölçüde değil, yarı boşlukla başlar. */
.k-pagetitle:has(+ .k-lead) { margin-bottom: clamp(22px, 3.4vw, 40px); }
.k-lead:has(+ .k-sub) { margin-bottom: 18px; }
.k-lead + .k-sec, .k-sub + .k-sec, .k-lead + .k-split, .k-sub + .k-split { padding-top: clamp(44px, 7vw, 86px); }
.k-lead + .k-split, .k-sub + .k-split { margin-top: 0; }

/* Bölüm başlığı + isteğe bağlı açıklama */
.k-secttl {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 500;
  font-size: clamp(26px, 4.4vw, 42px);
  letter-spacing: -.015em;
  line-height: 1.08;
}

/* --- Görsel + metin ikilisi (eski .spot). Çift sıradakiler ters çevrilir. */
.k-split {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(22px, 4vw, 56px);
  align-items: center;
  margin: clamp(56px, 9vw, 110px) 0;
}
@media (min-width: 860px) {
  .k-split { grid-template-columns: 1fr 1fr; }
  .k-split.rev .k-splitimg { order: 2; }
}
.k-splitimg {
  display: block;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--k-paper2);
}
.k-splitimg img { width: 100%; height: 100%; object-fit: cover; display: block; }
.k-split .k-eyebrow { display: block; margin-bottom: 12px; }
.k-split h2 { margin-bottom: 16px; }
.k-split p { color: var(--k-ink2); max-width: 46ch; }
.k-split .k-link { margin-top: 22px; }

/* --- Numaralı adımlar (eski .how/.step) */
.k-steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border-top: 1px solid var(--k-line);
}
@media (min-width: 760px) { .k-steps { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1100px) { .k-steps { grid-template-columns: repeat(4, 1fr); } }
.k-step {
  padding: 26px 24px 30px 0;
  border-bottom: 1px solid var(--k-line);
}
@media (min-width: 760px) {
  .k-step { border-bottom: none; border-right: 1px solid var(--k-line); padding-left: 24px; }
  .k-step:first-child { padding-left: 0; }
  .k-steps > .k-step:last-child { border-right: none; }
  [dir="rtl"] .k-step { border-right: none; border-left: 1px solid var(--k-line); }
  [dir="rtl"] .k-steps > .k-step:last-child { border-left: none; }
}
.k-step .k-stepno {
  font-size: 11px;
  letter-spacing: .2em;
  color: var(--k-ink2);
  display: block;
  margin-bottom: 14px;
}
.k-step h3 {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 500;
  font-size: 20px;
  letter-spacing: -.01em;
  line-height: 1.2;
  margin-bottom: 8px;
}
.k-step p { font-size: 13.5px; color: var(--k-ink2); }

/* --- Genel kart ızgarası (değer/hizmet/paket/şube kartları) */
.k-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(30px, 4.5vw, 54px) clamp(20px, 3vw, 44px);
}
@media (min-width: 640px) { .k-cards { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1040px) { .k-cards.k-cards--3 { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1040px) { .k-cards.k-cards--4 { grid-template-columns: repeat(4, 1fr); } }

.k-card { display: block; }
.k-card .k-cardimg {
  display: block;
  aspect-ratio: 3 / 2;
  overflow: hidden;
  background: var(--k-paper2);
  margin-bottom: 16px;
}
.k-card .k-cardimg img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform .8s var(--k-ease);
}
@media (hover: hover) { a.k-card:hover .k-cardimg img { transform: scale(1.05); } }
.k-card h3 {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 500;
  font-size: clamp(19px, 2.4vw, 24px);
  letter-spacing: -.015em;
  line-height: 1.2;
  margin-bottom: 8px;
}
.k-card p, .k-card .k-cardnote { font-size: 13.5px; color: var(--k-ink2); max-width: 40ch; }
.k-card .k-cardprice { font-size: 13.5px; margin-top: 8px; }
/* Görselsiz kart: üstünde ince çizgi, numaralı liste hissi */
.k-card--line { border-top: 1px solid var(--k-line); padding-top: 20px; }
/* Kart içi özellik listesi (abonelik planları, toptan paketleri) */
.k-card .k-featlist { list-style: none; margin: 16px 0 20px; }
.k-card .k-featlist li {
  position: relative;
  padding-left: 18px;
  font-size: 13.5px;
  line-height: 1.7;
  color: var(--k-ink2);
  margin-bottom: 4px;
}
.k-card .k-featlist li::before { content: '·'; position: absolute; left: 4px; }
[dir="rtl"] .k-card .k-featlist li { padding-left: 0; padding-right: 18px; }
[dir="rtl"] .k-card .k-featlist li::before { left: auto; right: 4px; }

/* --- Sayılar (eski .trustband) */
.k-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px 20px;
  padding: clamp(34px, 5vw, 52px) 0;
  border-top: 1px solid var(--k-line);
  border-bottom: 1px solid var(--k-line);
}
@media (min-width: 760px) { .k-stats { grid-template-columns: repeat(4, 1fr); } }
.k-stat b {
  display: block;
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 500;
  font-size: clamp(26px, 3.6vw, 40px);
  letter-spacing: -.02em;
  line-height: 1;
}
.k-stat span {
  display: block;
  margin-top: 10px;
  font-size: 11px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--k-ink2);
}

/* --- Tam genişlik yeşil şerit (eski .ctaband) */
.k-band {
  background: var(--k-green);
  color: var(--k-paper);
  text-align: center;
  padding: clamp(56px, 9vw, 110px) var(--k-gut);
  margin: clamp(56px, 9vw, 110px) calc(var(--k-gut) * -1) 0;
}
.k-band .k-eyebrow { color: rgba(255, 255, 255, .55); }
.k-band h2 {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 500;
  font-size: clamp(28px, 5vw, 52px);
  letter-spacing: -.02em;
  line-height: 1.06;
  margin: 14px auto 24px;
  max-width: 16ch;
}
.k-band .k-link { color: var(--k-paper); }

/* --- Form (eski .inqform) */
.k-lead2col { display: grid; grid-template-columns: 1fr; gap: clamp(32px, 5vw, 72px); }
@media (min-width: 900px) { .k-lead2col { grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr); } }
.k-leadinfo p { color: var(--k-ink2); max-width: 40ch; margin: 14px 0 22px; }
.k-leadinfo .k-contactline {
  display: flex; align-items: center; gap: 11px;
  font-size: 14px; padding: 7px 0;
}
.k-leadinfo .k-contactline svg { width: 16px; height: 16px; color: var(--k-ink2); }
.k-leadinfo .k-response {
  margin-top: 20px; padding-top: 18px;
  border-top: 1px solid var(--k-line);
  font-size: 12.5px; color: var(--k-ink2);
}

.k-form { display: grid; gap: 14px; }
.k-frow { display: grid; grid-template-columns: 1fr; gap: 14px; }
@media (min-width: 620px) { .k-frow { grid-template-columns: 1fr 1fr; } }
.k-frow.k-full { grid-template-columns: 1fr; }
.k-form input,
.k-form select,
.k-form textarea {
  width: 100%;
  font: inherit;
  font-size: 15px;
  color: var(--k-ink);
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--k-line);
  border-radius: 0;
  padding: 12px 0;
  -webkit-appearance: none;
  appearance: none;
  transition: border-color .25s;
}
.k-form select {
  background-image: linear-gradient(45deg, transparent 50%, var(--k-ink2) 50%), linear-gradient(135deg, var(--k-ink2) 50%, transparent 50%);
  background-position: calc(100% - 11px) 22px, calc(100% - 6px) 22px;
  background-size: 5px 5px;
  background-repeat: no-repeat;
}
[dir="rtl"] .k-form select { background-position: 11px 22px, 16px 22px; }
.k-form textarea { min-height: 110px; resize: vertical; }
.k-form input::placeholder, .k-form textarea::placeholder { color: var(--k-ink2); }
.k-form input:focus, .k-form select:focus, .k-form textarea:focus {
  outline: none;
  border-bottom-color: var(--k-ink);
}
.k-form .k-consent {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 12.5px; color: var(--k-ink2);
  margin-top: 4px;
}
.k-form .k-consent input { width: auto; padding: 0; margin-top: 3px; border: 1px solid var(--k-line); }
.k-form button[type="submit"] {
  justify-self: start;
  margin-top: 14px;
  min-width: 240px;
  padding: 16px 24px;
  background: var(--k-green);
  color: var(--k-paper);
  border: none;
  cursor: pointer;
  font: inherit;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  transition: background .3s var(--k-ease);
}
.k-form button[type="submit"]:hover { background: var(--k-ink); }
.k-form button[type="submit"]:disabled { background: var(--k-paper2); color: var(--k-ink2); cursor: wait; }
[dir="rtl"] .k-form button[type="submit"] { justify-self: end; }

/* Başarı bloğu: site.js gönderimden sonra .show ekliyor (form.id → sentId). */
.k-formsent { display: none; }
.k-formsent.show { display: block; }
.k-formsent h3 {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 500;
  font-size: clamp(22px, 3vw, 28px);
  letter-spacing: -.015em;
  margin-bottom: 10px;
}
.k-formsent p { font-size: 14px; color: var(--k-ink2); max-width: 44ch; }
.k-formsent .k-check {
  display: block;
  font-size: 22px;
  color: var(--k-green2);
  margin-bottom: 14px;
}

/* --- Hukuki metinler (eski .legalwrap) */
.k-legal { max-width: 720px; }
.k-legal .k-updated {
  font-size: 11px; letter-spacing: .16em; text-transform: uppercase;
  color: var(--k-ink2); margin-bottom: clamp(32px, 5vw, 56px);
}
.k-legal h1 {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 500;
  font-size: clamp(28px, 4.6vw, 44px);
  letter-spacing: -.02em;
  line-height: 1.06;
  margin-bottom: 14px;
}
.k-legal h2 {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 500;
  font-size: clamp(19px, 2.4vw, 24px);
  letter-spacing: -.01em;
  line-height: 1.2;
  margin: 44px 0 12px;
  scroll-margin-top: calc(var(--k-head) + 20px);
}
.k-legal p, .k-legal li { font-size: 14.5px; line-height: 1.8; color: var(--k-ink2); }
.k-legal p { margin-bottom: 1.1em; }
.k-legal ul { list-style: none; margin-bottom: 1.1em; }
.k-legal ul li { padding-left: 18px; position: relative; margin-bottom: .5em; }
.k-legal ul li::before { content: '·'; position: absolute; left: 4px; }
[dir="rtl"] .k-legal ul li { padding-left: 0; padding-right: 18px; }
[dir="rtl"] .k-legal ul li::before { left: auto; right: 4px; }
.k-legal strong { color: var(--k-ink); font-weight: 500; }
.k-legal a { border-bottom: 1px solid var(--k-line); }
.k-legal a:hover { border-bottom-color: var(--k-ink); }
.k-legal .k-toc {
  list-style: none;
  border-top: 1px solid var(--k-line);
  border-bottom: 1px solid var(--k-line);
  padding: 20px 0;
  margin-bottom: 8px;
  columns: 2;
  column-gap: 32px;
}
@media (max-width: 620px) { .k-legal .k-toc { columns: 1; } }
.k-legal .k-toc li { padding: 0; margin-bottom: 8px; font-size: 13.5px; }
.k-legal .k-toc li::before { content: none; }
.k-legal .k-footnote { font-size: 12.5px; margin-top: 34px; }

/* --- Basit tablo (öğütme rehberi) */
.k-table { width: 100%; border-collapse: collapse; font-size: 13.5px; }
.k-table th, .k-table td {
  text-align: left;
  padding: 14px 16px 14px 0;
  border-bottom: 1px solid var(--k-line);
  vertical-align: top;
}
[dir="rtl"] .k-table th, [dir="rtl"] .k-table td { text-align: right; padding: 14px 0 14px 16px; }
.k-table th {
  font-weight: 500;
  font-size: 11px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--k-ink2);
}
.k-table td:first-child { color: var(--k-ink); }
.k-table td { color: var(--k-ink2); }
.k-tablewrap { overflow-x: auto; }

/* --- SSS grupları (çoklu başlıklı SSS sayfası) */
.k-faqgroup { margin-bottom: clamp(44px, 6vw, 72px); }
.k-faqgroup > h2 {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 500;
  font-size: clamp(22px, 3vw, 28px);
  letter-spacing: -.015em;
  margin-bottom: 18px;
}
.k-faq a { border-bottom: 1px solid var(--k-line); }
.k-faq a:hover { border-bottom-color: var(--k-ink); }

/* --- Liste satırı (açık pozisyonlar, şube listesi): başlık + meta + eylem */
.k-rows { border-top: 1px solid var(--k-line); }
.k-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px 24px;
  padding: 22px 0;
  border-bottom: 1px solid var(--k-line);
}
.k-row .k-rowmain { display: flex; flex-direction: column; gap: 4px; }
.k-row .k-rowtitle {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 500;
  font-size: clamp(19px, 2.4vw, 23px);
  letter-spacing: -.015em;
  line-height: 1.2;
}
.k-row .k-rowmeta { font-size: 12.5px; color: var(--k-ink2); }

/* --- Puan satırları (ödüller): solda büyük rakam, sağda açıklama */
.k-scores { border-top: 1px solid var(--k-line); }
.k-score {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px 32px;
  padding: 26px 0;
  border-bottom: 1px solid var(--k-line);
}
@media (min-width: 760px) { .k-score { grid-template-columns: 160px 1fr; gap: 40px; align-items: baseline; } }
.k-scorenum {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 500;
  font-size: clamp(28px, 4vw, 44px);
  letter-spacing: -.02em;
  line-height: 1;
}
.k-score h3 {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 500;
  font-size: 20px;
  letter-spacing: -.01em;
  margin-bottom: 8px;
}
.k-score p { font-size: 13.5px; color: var(--k-ink2); max-width: 56ch; }

/* --- Öğütüm inceliği noktaları */
.k-graddots { display: flex; gap: 4px; align-items: center; }
.k-graddots span { width: 7px; height: 7px; border-radius: 50%; background: var(--k-line); }
.k-graddots span.on { background: var(--k-green2); }

/* --- Demleme yöntemi kartı: kutu değil, üstünde çizgi olan sütun */
.k-brewgrid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border-top: 1px solid var(--k-line);
}
@media (min-width: 760px) { .k-brewgrid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1160px) { .k-brewgrid { grid-template-columns: repeat(3, 1fr); } }
.k-brew { padding: 26px 26px 34px 0; border-bottom: 1px solid var(--k-line); }
@media (min-width: 760px) {
  .k-brew { border-right: 1px solid var(--k-line); padding-left: 26px; }
  .k-brew:first-child { padding-left: 0; }
  [dir="rtl"] .k-brew { border-right: none; border-left: 1px solid var(--k-line); }
}
.k-brew h3 {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 500;
  font-size: 22px;
  letter-spacing: -.015em;
  margin: 10px 0 16px;
}
.k-brew .k-brewstats {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  padding: 14px 0;
  border-top: 1px solid var(--k-line);
  border-bottom: 1px solid var(--k-line);
  margin-bottom: 18px;
}
.k-brew .k-brewstats div { font-size: 10.5px; letter-spacing: .14em; text-transform: uppercase; color: var(--k-ink2); }
.k-brew .k-brewstats b {
  display: block;
  margin-top: 5px;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
  color: var(--k-ink);
}
.k-brew ol { list-style: none; counter-reset: s; }
.k-brew ol li {
  counter-increment: s;
  position: relative;
  padding-left: 26px;
  font-size: 13.5px;
  line-height: 1.7;
  color: var(--k-ink2);
  margin-bottom: 8px;
}
.k-brew ol li::before {
  content: counter(s);
  position: absolute; left: 0; top: 0;
  font-size: 11px;
  color: var(--k-ink);
}
[dir="rtl"] .k-brew ol li { padding-left: 0; padding-right: 26px; }
[dir="rtl"] .k-brew ol li::before { left: auto; right: 0; }

/* --- Efsane bölümleri (ruh hayvanları): dönüşümlü tam genişlik satırlar */
.k-myth { display: flex; flex-direction: column; }
.k-mythrow {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(20px, 4vw, 56px);
  align-items: center;
  padding: clamp(48px, 7vw, 90px) 0;
  border-bottom: 1px solid var(--k-line);
}
.k-mythrow:last-child { border-bottom: none; }
@media (min-width: 860px) {
  .k-mythrow { grid-template-columns: 1fr 1fr; }
  .k-mythrow:nth-child(even) .k-mythimg { order: 2; }
}
.k-mythimg { display: block; aspect-ratio: 4 / 5; overflow: hidden; background: var(--k-paper2); }
.k-mythimg img { width: 100%; height: 100%; object-fit: cover; display: block; }
.k-mythrow h2 { margin: 12px 0 16px; }
.k-mythrow .k-mythstory { color: var(--k-ink2); max-width: 44ch; margin-bottom: 14px; }
.k-mythrow .k-mythtag {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 18px;
  line-height: 1.3;
  letter-spacing: -.01em;
  margin-bottom: 10px;
  max-width: 28ch;
}
.k-mythrow .k-mythnotes {
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--k-ink2);
  margin-bottom: 22px;
}


/* ==========================================================================
   BLOG — liste ve yazı
   ========================================================================== */

/* Geri bağlantısı: sayfa adının yerine geçen ince satır */
.k-back {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--k-ink2);
  margin-bottom: clamp(28px, 5vw, 52px);
  transition: color .25s;
}
.k-back svg { width: 13px; height: 13px; }
[dir="rtl"] .k-back svg { transform: scaleX(-1); }
.k-back:hover { color: var(--k-ink); }
@media (hover: hover) { .k-back:hover svg { transform: translateX(-5px); } }

.k-postgrid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(40px, 6vw, 72px) clamp(20px, 3vw, 44px);
}
@media (min-width: 700px) { .k-postgrid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1100px) { .k-postgrid { grid-template-columns: repeat(3, 1fr); } }

.k-post { display: block; }
.k-post .k-postimg {
  display: block;
  aspect-ratio: 3 / 2;
  overflow: hidden;
  background: var(--k-paper2);
}
.k-post .k-postimg img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform .8s var(--k-ease);
}
@media (hover: hover) { .k-post:hover .k-postimg img { transform: scale(1.05); } }
.k-post .k-postmeta {
  display: flex;
  gap: 12px;
  margin: 16px 0 8px;
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--k-ink2);
}
.k-post h2, .k-post h3 {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 500;
  font-size: clamp(20px, 2.6vw, 25px);
  letter-spacing: -.015em;
  line-height: 1.2;
  margin-bottom: 8px;
}
.k-post p { font-size: 13.5px; color: var(--k-ink2); max-width: 40ch; }

/* --- Yazı sayfası: tek sütun, dar ölçü */
.k-article { max-width: 720px; margin: 0 auto; }
.k-article .k-artmeta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--k-ink2);
  margin-bottom: 18px;
}
.k-article h1 {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 500;
  font-size: clamp(30px, 5.4vw, 52px);
  letter-spacing: -.02em;
  line-height: 1.06;
  text-wrap: balance;
}
.k-article .k-artcover {
  display: block;
  margin: clamp(32px, 5vw, 56px) 0;
  aspect-ratio: 3 / 2;
  overflow: hidden;
  background: var(--k-paper2);
}
.k-article .k-artcover img { width: 100%; height: 100%; object-fit: cover; display: block; }
.k-article .k-artbody p { margin-bottom: 1.35em; font-size: 15.5px; line-height: 1.85; }
.k-article .k-artbody p:last-child { margin-bottom: 0; }

.k-artnav {
  max-width: 720px;
  margin: clamp(56px, 9vw, 96px) auto 0;
  padding-top: 26px;
  border-top: 1px solid var(--k-line);
  display: grid;
  gap: 26px;
}
@media (min-width: 700px) { .k-artnav { grid-template-columns: 1fr 1fr; gap: 40px; } }
.k-artnav a { display: block; }
.k-artnav .k-eyebrow { display: block; margin-bottom: 6px; }
.k-artnav .k-artnavtitle {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 500;
  font-size: 17px;
  letter-spacing: -.01em;
  line-height: 1.25;
}
.k-artnav .k-next { text-align: right; }
[dir="rtl"] .k-artnav .k-next { text-align: left; }

/* ==========================================================================
   ÜRÜN DETAY (PDP)
   ========================================================================== */

.k-pdp { display: grid; grid-template-columns: 1fr; gap: clamp(28px, 5vw, 64px); }
@media (min-width: 900px) {
  /* Galeri sütunu artık içeriğine göre daralıyor (galerinin max-width'i var);
     sabit 1.15fr bırakılsaydı görselin sağında ~270px ölü boşluk kalırdı.
     Bilgi sütunu kalan alanı alıyor ama okunabilirlik için üst sınırı var. */
  .k-pdp { grid-template-columns: auto minmax(340px, 620px); gap: clamp(48px, 6vw, 88px); justify-content: center; }
  /* 2026-08-26: galeri sütunu (1.15fr) 1440px kapsayıcıda ~700px'e çıkıyordu;
     4:5 oranında bu ~875px yükseklik demek ve ekrandan ~200px taşıyordu —
     paketin yarısı görünmüyordu. Genişliği, 4:5 yüksekliği + küçük resim
     şeridi ekrana sığacak şekilde sınırlıyoruz.
     NOT: aşağıdaki `position: sticky` şu an FİİLEN ÇALIŞMIYOR — site.css'teki
     `body { overflow-x: hidden }` body'yi kaydırma kabı yapıp sticky'yi
     kırıyor (canlıda da böyle, bu düzenlemeden önce de öyleydi). Bu yüzden
     görselin ilk bakışta okunur boyutta olması daha da önemli: sayfayla
     birlikte yukarı kayıp gidiyor, kullanıcıyı takip etmiyor. */
  .k-pdp .k-gallery {
    position: sticky; top: calc(var(--k-head) + 24px); align-self: start;
    max-width: min(520px, calc((100svh - var(--k-head) - 130px) / 1.25));
  }
}

/* Mobilde galeri KARE: 4:5 dikey oran ekranın tamamını yiyor, ürün adı ve
   "Sepete Ekle" kaydırma gerektiriyordu (bkz. CLAUDE.md → mobilde CTA
   kaydırmadan görünmeli). Masaüstünde 4:5'e dönüyor. */
.k-gallery .k-galmain {
  display: block;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: var(--k-paper2);
}
@media (min-width: 900px) {
  .k-gallery .k-galmain { aspect-ratio: 4 / 5; }
  .k-gallery .k-galthumbs button { flex: 0 0 74px; aspect-ratio: 4 / 5; }
}
.k-gallery .k-galmain img { width: 100%; height: 100%; object-fit: cover; display: block; }
.k-gallery .k-galthumbs {
  display: flex;
  gap: 8px;
  margin-top: 8px;
  overflow-x: auto;
  scrollbar-width: none;
}
.k-gallery .k-galthumbs::-webkit-scrollbar { display: none; }
.k-gallery .k-galthumbs button {
  flex: 0 0 56px;
  aspect-ratio: 1 / 1;
  padding: 0;
  border: none;
  background: var(--k-paper2) center/cover no-repeat;
  cursor: pointer;
  opacity: .5;
  transition: opacity .25s;
}
.k-gallery .k-galthumbs button.on { opacity: 1; }

/* Mobilde dikey ritmi sıkıştır — "Sepete Ekle" ekranın alt kenarına mümkün
   olduğunca yaklaşsın (ürün görselini kırpmadan kazanılabilecek her piksel). */
@media (max-width: 899px) {
  .k-pdp { gap: 22px; }
  .k-back { margin-bottom: 18px; }
  .k-pdp .k-price { margin-top: 12px; }
  .k-pdp .k-qty { margin: 16px 0 10px; }
  .k-pdp .k-stepper button { width: 38px; height: 38px; }
}

.k-pdp .k-info .k-eyebrow { display: block; margin-bottom: 12px; }
.k-pdp .k-info h1 {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 500;
  font-size: clamp(32px, 5vw, 46px);
  letter-spacing: -.02em;
  line-height: 1.05;
}
.k-pdp .k-notes { color: var(--k-ink2); font-size: 14px; margin-top: 8px; }
.k-pdp .k-price { font-size: 18px; margin-top: 18px; }

/* Adet + sepete ekle */
.k-qty { display: flex; align-items: center; gap: 18px; margin: 24px 0 14px; }
.k-qty .k-qtylbl { font-size: 11px; letter-spacing: .18em; text-transform: uppercase; color: var(--k-ink2); }
.k-stepper { display: flex; align-items: center; border: 1px solid var(--k-line); }
.k-stepper button {
  width: 40px; height: 40px;
  background: none; border: none; cursor: pointer;
  font: inherit; font-size: 17px; line-height: 1;
  color: var(--k-ink);
  transition: background .25s;
}
.k-stepper button:hover { background: var(--k-paper2); }
.k-stepper span { min-width: 34px; text-align: center; font-size: 14px; }

.k-buy {
  display: block;
  width: 100%;
  padding: 17px 20px;
  background: var(--k-green);
  color: var(--k-paper);
  border: none;
  cursor: pointer;
  font: inherit;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  transition: background .3s var(--k-ease);
}
.k-buy:hover { background: var(--k-ink); }
.k-buy.soldout { background: var(--k-paper2); color: var(--k-ink2); cursor: not-allowed; }
.k-buynote { font-size: 11.5px; color: var(--k-ink2); text-align: center; margin-top: 10px; }
.k-packnote { font-size: 12.5px; color: var(--k-green2); margin-bottom: 12px; }

.k-pdp .k-desc { margin-top: 28px; color: var(--k-ink2); font-size: 14.5px; line-height: 1.8; }

/* Seçenek satırları: kutu değil, altı çizili metin — minimal kalsın */
.k-opt { margin-top: 26px; }
.k-opt .k-optlbl {
  font-size: 11px; letter-spacing: .18em; text-transform: uppercase;
  color: var(--k-ink2); margin-bottom: 10px;
}
.k-opt .k-optbtns { display: flex; flex-wrap: wrap; gap: 8px 22px; }
/* Kategori ve boy seçenekleri <a> (sayfa değiştiriyorlar), öğütüm seçeneği
   <button> (aynı sayfada kalıyor) — ikisi de AYNI görünmek zorunda, bu yüzden
   her kural iki seçiciye birden yazılı. Butonun tarayıcı varsayılanları
   (arkaplan/kenarlık/font) ayrıca sıfırlanıyor. */
.k-opt .k-optbtns a,
.k-opt .k-optbtns button {
  font-size: 13.5px;
  padding-bottom: 3px;
  border-bottom: 1px solid transparent;
  color: var(--k-ink2);
  transition: color .25s, border-color .25s;
}
.k-opt .k-optbtns button {
  appearance: none; background: none; border: 0; border-bottom: 1px solid transparent;
  /* `font: inherit` DEĞİL: kısayol font-size'ı da sıfırlar ve yukarıdaki
     13.5px'i ezerdi (bu kural sonra geldiği için kazanır). */
  font-family: inherit; letter-spacing: inherit; line-height: inherit;
  padding-left: 0; padding-right: 0; cursor: pointer;
}
.k-opt .k-optbtns a:hover,
.k-opt .k-optbtns button:hover { color: var(--k-ink); }
.k-opt .k-optbtns a.on,
.k-opt .k-optbtns button.on { color: var(--k-ink); border-bottom-color: var(--k-ink); }
.k-opt .k-optbtns a.soldout,
.k-opt .k-optbtns button.soldout { opacity: .42; }
.k-opt .k-optbtns .k-soldtag { font-size: 10px; letter-spacing: .1em; text-transform: uppercase; margin-left: 6px; }

/* Özellikler: etiket/değer, ince çizgilerle */
.k-specs { margin-top: 34px; border-top: 1px solid var(--k-line); }
.k-specs > div {
  display: grid;
  grid-template-columns: 40% 1fr;
  gap: 16px;
  padding: 13px 0;
  border-bottom: 1px solid var(--k-line);
  font-size: 13.5px;
}
.k-specs dt { color: var(--k-ink2); }
.k-specs dd { color: var(--k-ink); }

/* ==========================================================================
   HESAP / GİRİŞ / ÖDEME / SİPARİŞ ONAYI
   Bu dört akış canlı ödeme zinciriyle (PayTR) ve Supabase oturumuyla birlikte
   çalışıyor; JSX'lerine dokunulmadı. Görsel dili buradan hizalıyoruz: aynı
   tipografi, kutu yerine ince çizgi, köşesiz yeşil buton, altı çizgili input.
   Sınıf adları site.css'ten geliyor, seçiciler bilinçli olarak oradaki
   kurallardan sonra ve daha spesifik yazıldı.
   ========================================================================== */

body .authwrap,
body .confirmwrap { padding-top: clamp(40px, 7vw, 76px); padding-bottom: clamp(72px, 12vw, 130px); }
body .checkoutgrid { padding-top: clamp(40px, 7vw, 76px); padding-bottom: clamp(56px, 9vw, 96px); }

/* /checkout/ hâlâ public/checkout/index.html'den (statik) servis ediliyor —
   ödeme akışına dokunmamak için sayfanın script'i ve alanları olduğu gibi
   duruyor, sadece chrome'u ve tipografisi buraya taşındı. Bilinçli olarak
   navigasyonsuz: kasada tek çıkış logo, tek bilgi "güvenli ödeme". */
.k-header--checkout {
  position: static;
  background: var(--k-paper);
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
  border-bottom: 1px solid var(--k-line);
  justify-content: space-between;
}
.k-header--checkout .k-brand { order: 0; margin-left: 0; }
.k-secure {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--k-ink2);
}
.k-secure svg { width: 15px; height: 15px; }
.k-footer--checkout { padding: clamp(40px, 6vw, 64px) 0; text-align: center; }
.k-footer--checkout .k-footlogo { margin: 0 auto 14px; }
.k-footer--checkout .k-foottag { max-width: none; font-size: 20px; }
/* Statik sayfa .pageshell kullanmıyor; üst boşluğu kendi veriyor. */
body .k-header--checkout ~ .wrap .checkoutgrid { padding-top: clamp(32px, 5vw, 56px); }

body .authwrap h1, body .authwrap h2,
body .checkoutgrid h1, body .checkoutgrid h2,
body .confirmwrap h1,
body .accmain h1, body .accmain h2, body .accpanel h2 {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 500;
  letter-spacing: -.015em;
}
body .confirmwrap h1 { font-size: clamp(28px, 4.4vw, 40px); line-height: 1.08; }
body .checkoutgrid h1 { font-size: clamp(24px, 3.4vw, 32px); }

/* Kutulu yüzeyleri düzleştir: gölge/yuvarlak köşe yok, tek hairline kalır. */
body .authform, body .accpanel, body .ovwcard, body .loycard, body .addrcard,
body .ordercard, body .summary, body .confirmwrap .nextsteps, body .confirmwrap .ordernum,
body .checkoutgate, body .formsec {
  background: transparent;
  border-color: var(--k-line);
  border-radius: 0;
  box-shadow: none;
}

/* Form alanları: çerçeve yerine tek alt çizgi (sitenin geri kalanıyla aynı). */
body .authwrap input, body .authwrap select,
body .checkoutgrid input, body .checkoutgrid select, body .checkoutgrid textarea,
body .accmain input, body .accmain select, body .accmain textarea {
  font-family: inherit;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--k-line);
  border-radius: 0;
  padding: 12px 0;
  color: var(--k-ink);
  transition: border-color .25s;
}
body .authwrap input:focus, body .authwrap select:focus,
body .checkoutgrid input:focus, body .checkoutgrid select:focus, body .checkoutgrid textarea:focus,
body .accmain input:focus, body .accmain select:focus, body .accmain textarea:focus {
  outline: none;
  border-bottom-color: var(--k-ink);
}
/* Chrome'un otomatik doldurma mavisi kağıt zemini bozuyordu */
body input:-webkit-autofill,
body input:-webkit-autofill:hover,
body input:-webkit-autofill:focus {
  -webkit-box-shadow: 0 0 0 100px var(--k-paper) inset;
  -webkit-text-fill-color: var(--k-ink);
  caret-color: var(--k-ink);
}

/* Onay kutuları çizgiye dönüşmemeli */
body .authwrap input[type="checkbox"],
body .checkoutgrid input[type="checkbox"],
body .accmain input[type="checkbox"] {
  border: 1px solid var(--k-line);
  padding: 0;
  width: auto;
}

/* Ana eylem butonları: köşesiz, koyu yeşil, aralıklı büyük harf. */
body .authform button[type="submit"],
body .checkoutgrid .placeorder,
body .accmain .addbtn, body .accmain .save,
body .addrform button.save {
  background: var(--k-green);
  color: var(--k-paper);
  border: none;
  border-radius: 0;
  font-family: inherit;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  padding: 16px 22px;
  transition: background .3s var(--k-ease);
}
body .authform button[type="submit"]:hover,
body .checkoutgrid .placeorder:hover,
body .accmain .addbtn:hover, body .accmain .save:hover { background: var(--k-ink); }
/* İkincil eylemler (Giriş Yap, Google ile devam, Vazgeç): dolgu yok, çizgi var —
   birincil eylemle aynı ağırlıkta görünmemeli. */
body .googlebtn,
body .checkoutgrid .gateloginbtn,
body .checkoutgrid .btn:not(.placeorder),
body .accmain .cancel {
  background: transparent;
  color: var(--k-ink);
  border: 1px solid var(--k-line);
  border-radius: 0;
  font-family: inherit;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .16em;
  text-transform: uppercase;
  padding: 15px 22px;
  transition: border-color .25s;
}
body .googlebtn:hover,
body .checkoutgrid .gateloginbtn:hover,
body .accmain .cancel:hover { border-color: var(--k-ink); }
/* Google butonunda logo ve metin yan yana kalsın */
body .googlebtn { display: flex; align-items: center; justify-content: center; gap: 10px; text-transform: none; letter-spacing: .04em; font-size: 14px; }

/* Sekmeler (giriş/üye ol, kart/havale, hesap menüsü): alt çizgili metin. */
body .authtabs, body .paytabs { border-bottom: 1px solid var(--k-line); }
body .authtabs button, body .paytabs button {
  background: transparent;
  border: none;
  border-bottom: 2px solid transparent;
  border-radius: 0;
  font-family: inherit;
  font-size: 12px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--k-ink2);
  padding: 12px 4px;
}
body .authtabs button.on, body .paytabs button.on {
  color: var(--k-ink);
  border-bottom-color: var(--k-ink);
  background: transparent;
}

body .accsidebar a, body .accsidebar button {
  border-radius: 0;
  font-family: inherit;
  letter-spacing: .04em;
}
body .accsidebar a.on, body .accsidebar button.on {
  background: transparent;
  color: var(--k-ink);
  border-left: 1px solid var(--k-ink);
}
[dir="rtl"] body .accsidebar a.on, [dir="rtl"] body .accsidebar button.on {
  border-left: none;
  border-right: 1px solid var(--k-ink);
}

body .confirmwrap .checkmark, body .checkoutgrid .checkmark {
  background: var(--k-green);
  border-radius: 0;
}
body .defbadge, body .ordertop .date, body .sumsecure {
  border-radius: 0;
  letter-spacing: .08em;
}

/* Sayfa geçiş perdesi: aynı dilde, daha sessiz. */
body .routeveil { min-height: 52vh; }
body .routeveil-logo { opacity: .35; }

/* ==========================================================================
   RTL (ar) düzeltmeleri — yön bağımlı gradient ve ikon konumları
   ========================================================================== */

[dir="rtl"] .k-hero .k-slide::after {
  background:
    linear-gradient(to top, rgba(8, 20, 14, .74) 0%, rgba(8, 20, 14, .22) 48%, rgba(8, 20, 14, .52) 100%),
    linear-gradient(to left, rgba(8, 20, 14, .34) 0%, rgba(8, 20, 14, 0) 62%);
}
[dir="rtl"] .k-faq summary { padding: 22px 0 22px 40px; }
[dir="rtl"] .k-faq summary::after { right: auto; left: 4px; }
[dir="rtl"] .k-faq summary::before { right: auto; left: 10px; }
[dir="rtl"] .k-link::after,
[dir="rtl"] .k-navlinks a::after { transform-origin: right; }
[dir="rtl"] .k-menu .k-close { margin-right: 0; margin-left: -9px; }
[dir="rtl"] .k-header .k-burger { margin-left: 0; margin-right: -8px; }
[dir="rtl"] .k-brand { margin-left: 0; margin-right: 14px; }
@media (min-width: 900px) {
  [dir="rtl"] .k-brand { margin-right: 0; }
  [dir="rtl"] .k-navlinks { margin-left: 0; margin-right: 56px; }
  [dir="rtl"] .k-contact { padding-left: 0; padding-right: 32%; }
}

/* Eski katmandan gelen yüzen widget'ları yeni sadelikte tut */
body .aichatbtn .label { display: none; }

/* --- Hediye/keşif setleri (/setler/) ------------------------------------ */
/* Set mockup'ları yatay (≈3:2), ürün galerisinin 4:5 dikey kırpması kutunun
   kenarındaki paketleri kesiyordu. `contain` ile kutunun tamamı görünür —
   hediye ürününde kutunun bütünü satışın kendisi. */
.k-setmedia {
  display: block;
  aspect-ratio: 3 / 2;
  overflow: hidden;
  background: var(--k-paper2);
}
.k-setmedia img { width: 100%; height: 100%; object-fit: contain; display: block; }
@media (min-width: 900px) {
  .k-pdp .k-setmedia { position: sticky; top: calc(var(--k-head) + 24px); align-self: start; }
}

.k-setintro {
  max-width: 60ch;
  margin: 10px 0 34px;
  font-size: 15px;
  line-height: 1.65;
  color: var(--k-ink2);
}

.k-setsaving {
  margin: 6px 0 0;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--k-green);
}

/* Kutu içeriği — her harman kendi ürün sayfasına gider */
.k-setcontents { margin-top: 26px; }
.k-setcontents ul { list-style: none; margin: 10px 0 0; padding: 0; }
.k-setcontents li { border-top: 1px solid var(--k-line); }
.k-setcontents li:last-child { border-bottom: 1px solid var(--k-line); }
.k-setcontents li a {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 13px 0;
  color: inherit;
  text-decoration: none;
}
.k-setcontents li a b { font-size: 14px; font-weight: 600; }
.k-setcontents li a span { font-size: 12.5px; color: var(--k-ink2); }
.k-setcontents li a:hover b, .k-setcontents li a:focus-visible b { text-decoration: underline; }

/* Set kartları vitrinde: kahve paketleri dikey (4:5) çekildiği için ızgara o
   orana göre kırpıyor; set kutuları YATAY olduğundan aynı kırpma kutunun
   kenarındaki paketleri kesiyordu. Set kartlarında oran yatay ve görsel
   `contain` — hediye kutusunda kutunun bütünü ürünün kendisi. */
.k-prod--set .k-prodimg { aspect-ratio: 3 / 2; }
.k-prod--set .k-prodimg img { object-fit: contain; }

/* 404 — notFound() çağıran React sayfaları için (bkz. app/[locale]/not-found.js).
   Statik public/404.html ile aynı marka tonu, yeni tasarım diliyle. */
.k-404 { min-height: 52svh; display: flex; flex-direction: column; justify-content: center; }
.k-404 h1 {
  font-family: var(--k-serif, inherit);
  font-size: clamp(32px, 6vw, 56px);
  line-height: 1.05;
  letter-spacing: -.02em;
  margin: 0;
}
.k-404 p { max-width: 46ch; margin: 16px 0 0; font-size: 15px; line-height: 1.65; color: var(--k-ink2); }
.k-404cta { display: flex; flex-wrap: wrap; gap: 28px; margin-top: 30px; }

/* Kampanya fiyatı — üstü çizili liste fiyatı, indirimli fiyatın solunda.
   2026-08-26'da eklendi; sitede daha önce indirim/liste fiyatı gösterimi yoktu. */
.k-oldprice {
  margin-inline-end: 8px;
  color: var(--k-ink2);
  text-decoration: line-through;
  text-decoration-thickness: 1px;
  font-weight: 400;
  opacity: .7;
}
.k-price .k-oldprice { font-size: .72em; }
.k-prodprice .k-oldprice, .k-panelprice .k-oldprice { font-size: .88em; }

/* Vitrin kartındaki boy etiketi (250g / 1kg). 2026-08-26'da 1kg ürünler de
   vitrine girdi; aynı harmanın iki kartı yan yana durduğu için ad tek başına
   ayırt edici değil. */
.k-prodsize {
  color: var(--k-ink2);
  font-weight: 400;
  opacity: .75;
}

/* ==========================================================================
   DEĞERLENDİRMELER
   --------------------------------------------------------------------------
   2026-08-27'de eklendi. Sınıf öneki `k-review*` — mevcut `.k-rev` (reveal
   animasyonu) ile çakışmıyor, CSS sınıf eşleşmesi tam eşleşme olduğu için
   `.k-rev` kuralı `k-reviews`'a uygulanmaz.
   ========================================================================== */

/* Yıldız dizisi. Boş yıldız da AYNI karakterle çiziliyor, sadece rengi soluk:
   farklı karakter (☆) kullanmak fontlar arasında farklı genişliğe düşüyor ve
   dizi kaymış görünüyordu. */
.k-stars {
  display: inline-flex;
  gap: 1px;
  font-size: var(--k-star, 14px);
  line-height: 1;
  color: var(--k-line);
  letter-spacing: .02em;
}
.k-stars .on { color: #b8892b; }

/* Ürün adının altındaki özet — puana tıklayınca bölüme kayıyor. */
.k-ratinglink {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 10px;
  font-size: 13px;
  color: var(--k-ink);
  text-decoration: none;
}
.k-ratinglink:hover .k-ratingcount { text-decoration: underline; }
.k-ratingcount { color: var(--k-ink2); }

.k-reviews { scroll-margin-top: calc(var(--k-head) + 20px); }
.k-reviews .k-head { align-items: baseline; }
.k-reviews .k-head .k-link { background: none; border: 0; cursor: pointer; color: inherit; }

/* Özet: ortalama solda, dağılım sağda. Mobilde alt alta. */
.k-reviewsum {
  display: grid;
  gap: 24px;
  padding: 22px 0 26px;
  border-bottom: 1px solid var(--k-line);
}
@media (min-width: 720px) {
  .k-reviewsum { grid-template-columns: 210px 1fr; gap: 48px; align-items: center; }
}
.k-reviewavg { display: flex; flex-direction: column; gap: 7px; align-items: flex-start; }
.k-reviewnum {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 44px;
  line-height: 1;
  letter-spacing: -.02em;
  font-variant-numeric: tabular-nums;
}
.k-reviewcount { font-size: 13px; color: var(--k-ink2); }

/* Dağılım çubukları: tek bir ortalamadan daha çok şey söylüyor — 10 kişinin
   5 verdiği ürünle 5'i 5, 5'i 4 veren ürün aynı ortalamayı alabilir. */
.k-reviewbars { display: flex; flex-direction: column; gap: 6px; max-width: 420px; }
.k-reviewbar { display: grid; grid-template-columns: 28px 1fr 28px; gap: 10px; align-items: center; font-size: 12px; color: var(--k-ink2); }
.k-reviewbarn { font-variant-numeric: tabular-nums; }
.k-reviewbarc { text-align: right; font-variant-numeric: tabular-nums; }
.k-reviewbartrack { display: block; height: 6px; background: var(--k-paper2); overflow: hidden; }
.k-reviewbartrack span { display: block; height: 100%; background: var(--k-green2); }

.k-reviewempty { color: var(--k-ink2); font-size: 15px; padding: 18px 0 4px; margin: 0; }
.k-reviewsent {
  margin: 18px 0 0;
  padding: 14px 18px;
  background: var(--k-paper2);
  border-inline-start: 3px solid var(--k-green2);
  font-size: 14.5px;
}

/* --- Form --- */
.k-reviewform { padding: 24px 0 8px; border-bottom: 1px solid var(--k-line); }
.k-reviewgrid { display: grid; gap: 18px; }
@media (min-width: 620px) { .k-reviewgrid { grid-template-columns: 1fr 1fr; gap: 20px; } }
.k-reviewfield { display: flex; flex-direction: column; gap: 6px; margin-bottom: 18px; }
.k-reviewfield label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--k-ink2);
}
.k-reviewfield input,
.k-reviewfield textarea {
  font: inherit;
  font-size: 15px;
  padding: 11px 13px;
  border: 1px solid var(--k-line);
  background: var(--k-paper);
  color: var(--k-ink);
  border-radius: 2px;
  width: 100%;
}
.k-reviewfield textarea { resize: vertical; min-height: 110px; line-height: 1.55; }
.k-reviewfield input:focus, .k-reviewfield textarea:focus {
  outline: none; border-color: var(--k-green2);
}
.k-reviewnote { font-size: 12px; color: var(--k-ink2); margin: 0; }
.k-reviewerr { color: #8c2f1c; font-size: 14px; margin: 0 0 14px; }
.k-reviewactions { display: flex; align-items: center; gap: 22px; flex-wrap: wrap; margin-bottom: 12px; }
.k-reviewactions .k-link { background: none; border: 0; cursor: pointer; color: var(--k-ink2); }

/* Yıldız seçici — gerçek radio input'lar, görsel olarak gizli. Klavyeyle
   seçilebiliyor ve ekran okuyucu "5 üzerinden 4" diyebiliyor. */
.k-starpick { display: inline-flex; gap: 4px; }
.k-starpick label {
  cursor: pointer;
  font-size: 28px;
  line-height: 1;
  color: var(--k-line);
  transition: color .15s;
  letter-spacing: 0;
  text-transform: none;
}
.k-starpick label.on { color: #b8892b; }
.k-starpick input {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}
.k-starpick input:focus-visible + span { outline: 2px solid var(--k-green2); outline-offset: 2px; }

/* --- Liste --- */
.k-reviewlist { list-style: none; padding: 0; margin: 0; }
.k-reviewlist li { padding: 24px 0; border-bottom: 1px solid var(--k-line); }
.k-reviewlist li:last-child { border-bottom: 0; }
.k-reviewhead { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; margin-bottom: 8px; }
.k-reviewauthor { font-size: 14px; font-weight: 600; }
.k-reviewdate { font-size: 12.5px; color: var(--k-ink2); }
.k-reviewverified {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--k-green2);
  border: 1px solid currentColor;
  padding: 3px 7px;
  line-height: 1;
  border-radius: 2px;
}
.k-reviewtitle { font-size: 15.5px; font-weight: 600; margin: 0 0 6px; }
.k-reviewbody { font-size: 15px; line-height: 1.65; margin: 0; max-width: 68ch; white-space: pre-line; }
.k-reviewsku { font-size: 12.5px; color: var(--k-ink2); margin: 10px 0 0; }

/* Vitrin kartındaki yıldızlar — sadece puan varsa çıkıyor. */
.k-prodrating { display: flex; align-items: center; gap: 6px; font-size: 12px; color: var(--k-ink2); }

/* Kavurma notu — MÜŞTERİ YORUMU DEĞİL, kavurma ekibinin kendi notu.
   Değerlendirmelerden görsel olarak da ayrışması şart: farklı zemin, serif
   gövde, imza satırı. İkisi karışırsa uzman notu müşteri yorumu sanılır. */
.k-roastnote {
  background: var(--k-paper2);
  padding: clamp(28px, 5vw, 52px) clamp(22px, 4vw, 48px);
  border-radius: 3px;
}
.k-roastnote .k-eyebrow { display: block; margin-bottom: 12px; }
.k-roastnote .k-h2 { margin: 0 0 22px; font-size: clamp(24px, 3.2vw, 34px); }
.k-roastnotebody { max-width: 66ch; }
.k-roastnotebody p {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(16px, 1.7vw, 18px);
  line-height: 1.62;
  margin: 0 0 16px;
}
.k-roastsign {
  font-family: var(--k-sans, 'Jost', sans-serif) !important;
  font-size: 11px !important;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--k-ink2);
  margin-top: 24px !important;
  margin-bottom: 0 !important;
}

/* Mekanlar — fabrika satış kartı. Sayfa eskiden yalnızca "Yakında" diyordu;
   artık gerçek ve ziyaret edilebilir tek noktayı anlatıyor. */
.k-lead { font-size: clamp(16px, 2vw, 19px); line-height: 1.6; color: var(--k-ink2); max-width: 58ch; margin: 0 0 clamp(32px, 5vw, 52px); }

.k-loccard {
  background: var(--k-paper2);
  border-radius: 3px;
  padding: clamp(28px, 5vw, 56px) clamp(22px, 4vw, 52px);
  margin-bottom: clamp(48px, 8vw, 96px);
}
.k-loccard .k-eyebrow { display: block; margin-bottom: 12px; }
.k-loccard .k-h2 { margin: 0 0 26px; }
.k-locbody { max-width: 62ch; }

.k-locmeta { display: grid; gap: 20px; margin: 0 0 26px; }
@media (min-width: 640px) { .k-locmeta { grid-template-columns: repeat(auto-fit, minmax(190px, 1fr)); gap: 28px; } }
.k-locmeta dt {
  font-size: 11px; font-weight: 600; letter-spacing: .16em;
  text-transform: uppercase; color: var(--k-ink2); margin-bottom: 6px;
}
.k-locmeta dd { margin: 0; font-size: 15px; line-height: 1.55; }
.k-locmeta dd span { display: block; }
.k-locmeta dd a { color: inherit; text-decoration: none; }
.k-locmeta dd a:hover { text-decoration: underline; }

.k-locnote { font-size: 15px; line-height: 1.65; color: var(--k-ink2); margin: 0 0 24px; }
.k-locsoon .k-eyebrow { display: block; margin-bottom: 10px; }
.k-locsoon .k-h2 { margin: 0 0 12px; }
.k-locsoon p { color: var(--k-ink2); }

/* ==========================================================================
   "HANGİ KİMOR SANA GÖRE?" — anasayfanın ilk ticari cevabı
   --------------------------------------------------------------------------
   2026-08-28: dört harman eskiden hero'nun altındaki İKİ marka panelinden
   sonra, her biri ayrı tam ekran panel olarak geliyordu. Ziyaretçi dördünü
   hiçbir zaman yan yana göremiyor, dolayısıyla seçemiyordu. Marka hikâyesi
   destekleyici katman; yeni ziyaretçinin önce ne satıldığını anlaması lazım.
   ========================================================================== */
.k-choose { padding: clamp(56px, 9vw, 110px) var(--k-gut) clamp(40px, 6vw, 72px); }
.k-choosehead { max-width: 60ch; margin-bottom: clamp(32px, 5vw, 56px); }
.k-choosehead .k-eyebrow { display: block; margin-bottom: 12px; }
.k-choosehead .k-h2 { margin: 0 0 16px; }
.k-choosehead p { font-size: clamp(15px, 1.8vw, 17px); line-height: 1.6; color: var(--k-ink2); margin: 0; }

.k-choosegrid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(28px, 4vw, 44px) clamp(14px, 2.4vw, 32px);
}
@media (min-width: 900px) { .k-choosegrid { grid-template-columns: repeat(4, 1fr); } }

.k-choosecard { display: flex; flex-direction: column; }
.k-chooseshot {
  display: block;
  background: var(--k-paper2);
  aspect-ratio: 4 / 5;
  overflow: hidden;
  margin-bottom: 16px;
  border-radius: 2px;
}
.k-chooseshot img {
  width: 100%; height: 100%;
  object-fit: contain;
  padding: 8% 12%;
  display: block;
  transition: transform .7s var(--k-ease);
}
@media (hover: hover) { .k-choosecard:hover .k-chooseshot img { transform: scale(1.05); } }

.k-choosecard h3 {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 500; font-size: clamp(20px, 2.4vw, 25px);
  letter-spacing: -.01em; line-height: 1.1; margin: 0 0 7px;
}
/* Tat notu kartlar arasında 1 ya da 2 satır oluyor (mobilde 168px genişlikte
   Amazon tek satır, diğer üçü iki satır). Yükseklik farkı altındaki kavrum ve
   fiyat satırlarını 20px kaydırıp ızgarayı hizasız gösteriyordu. İki satırlık
   yer AYRILIYOR: min-height olduğu için daha uzun çeviriler yine büyüyebilir,
   sadece kısa olanlar boşluğu koruyor. */
.k-choosenotes {
  font-size: 13.5px;
  line-height: 1.5;
  color: var(--k-ink2);
  margin: 0 0 14px;
  min-height: 3em; /* 2 satır × 1.5 satır yüksekliği */
}

/* Kavrum, harmanları ayıran en somut özellik — beş noktalı ölçek (paketin
   üstündekiyle aynı) metinden hızlı okunuyor, kelime de ekran okuyucu ve
   kesinlik için duruyor. */
.k-chooseroast { display: flex; align-items: center; gap: 8px; margin-bottom: 14px; flex-wrap: wrap; }
.k-chooseroastlabel {
  font-size: 10.5px; font-weight: 600; letter-spacing: .14em;
  text-transform: uppercase; color: var(--k-ink2);
}
.k-roastdots { display: inline-flex; gap: 3px; }
.k-roastdots i {
  width: 7px; height: 7px; border-radius: 50%;
  border: 1px solid var(--k-ink2); display: block;
}
.k-roastdots i.on { background: var(--k-ink2); }
.k-chooseroastword { font-size: 12.5px; color: var(--k-ink); }

/* Fiyat ve CTA kartın ALTINA yaslı: ızgara kartları aynı yüksekliğe
   getirdiği için bu ikisi satır boyunca hizalanıyor — tat notu bir satır
   uzasa bile kaymıyorlar. */
.k-chooseprice { font-size: 15px; font-weight: 600; margin-top: auto; margin-bottom: 12px; }
.k-choosecard .k-link { align-self: flex-start; }

.k-choosequiz {
  margin: clamp(34px, 5vw, 56px) 0 0;
  font-size: 14.5px;
  color: var(--k-ink2);
}

/* =========================================================================
   KAHVENİ BUL  (2026-09-08)
   =========================================================================
   Test anasayfanın ilk bloğu oldu. İki kip aynı bileşenden çıkıyor:
   --hero  koyu yeşil zemin, sayfanın en üstü, header'ın altına giriyor
   --sayfa açık zemin, /ogren/kahveni-bul/ tam sayfa

   MOBİL ÖNCE YAZILDI. Ölçü kararları:
   · Şıklar 56 px yüksekliğinde — parmak hedefi için alt sınır 44 px, ama
     iki satıra taşan şık ("Kabuğu yeni soyulmuş portakal") 44'te sıkışıyor.
   · Şık metni SOLA yaslı, ortalanmış değil: dört şık alt alta okunurken göz
     sol kenarı takip ediyor, ortalı metin her satırda yeniden yer arıyor.
   · Mobilde tek sütun, 620 px'ten sonra 2x2. Dört şıkkı dar ekranda iki
     sütuna sıkıştırmak metni üç satıra kırıyordu.
   · min-height: 100svh (100vh DEĞİL) — mobil tarayıcıda adres çubuğu
     kayarken 100vh bloğu ekrandan taşırıyor ve son şık görünmüyordu.
   ========================================================================= */

.k-kbul {
  box-sizing: border-box;
  position: relative;
}
.k-kbul *,
.k-kbul *::before,
.k-kbul *::after { box-sizing: border-box; }

.k-kbul__ic {
  width: 100%;
  max-width: 660px;
  margin: 0 auto;
}

/* --- slayt kipi: hero galerisinin ilk slaytı ---
   Kendi zemini/dolgusu YOK. Hero'nun fotoğrafı, perdesi ve alt bandı zaten
   var; test onların içine yerleşiyor. .k-herotext sınıfını da taşıdığı için
   metin gölgesini ve slayt geçiş animasyonunu hero'dan miras alıyor. */
.k-kbul--slayt { max-width: 720px; }
.k-kbul--slayt .k-kbul__soru {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 500;
  letter-spacing: -.02em;
  line-height: 1.04;
  /* Hero h1'inden bir tık küçük: altına dört şık giriyor, aynı boyda
     kalsaydı şıklar mobilde ekrandan taşıyordu. */
  font-size: clamp(28px, 5.6vw, 52px);
  margin: 12px 0 20px;
  text-wrap: balance;
}
.k-kbul--slayt .k-kbul__secenekler {
  display: grid;
  gap: 8px;
  grid-template-columns: 1fr;
}
@media (min-width: 700px) {
  .k-kbul--slayt .k-kbul__secenekler { grid-template-columns: 1fr 1fr; gap: 10px; }
}
.k-kbul--slayt .k-kbul__secenekler button {
  font: inherit;
  font-size: 15px;
  text-align: left;
  min-height: 52px;
  padding: 12px 16px;
  color: #fff;
  background: rgba(8, 20, 14, .34);
  border: 1px solid rgba(255, 255, 255, .34);
  border-radius: 2px;
  cursor: pointer;
  /* Şıkların kendi gölgesi yok: kutunun içindeler, zaten okunuyorlar.
     .k-herotext > * gölgesi metni bulanıklaştırıyordu. */
  text-shadow: none;
  backdrop-filter: blur(2px);
  transition: background .18s var(--k-ease), border-color .18s var(--k-ease);
}
.k-kbul--slayt .k-kbul__secenekler button:hover {
  background: rgba(8, 20, 14, .58);
  border-color: rgba(255, 255, 255, .75);
}
.k-kbul--slayt .k-kbul__geri {
  font: inherit;
  font-size: 13px;
  background: none;
  border: 0;
  padding: 10px 2px;
  margin: 8px -2px 0;
  cursor: pointer;
  color: rgba(255, 255, 255, .8);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.k-kbul--slayt .k-kbul__geri:hover { color: #fff; }
.k-kbul--slayt .k-kbul__notlar { color: rgba(255, 255, 255, .86); margin: 0 0 22px; }
.k-kbul--slayt .k-kbul__aksiyon { display: flex; flex-wrap: wrap; align-items: center; gap: 12px 26px; }
.k-kbul--slayt .k-kbul__tekrar {
  font: inherit;
  font-size: 13.5px;
  background: none;
  border: 0;
  padding: 8px 2px;
  cursor: pointer;
  color: rgba(255, 255, 255, .78);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* Galeri göstergesi otomatik geçiş durunca dolmayı bıraksın: dolan çubuk
   "birazdan geçecek" demek, oysa artık geçmiyor. */
.k-hero--durdu .k-dots button.on::after { animation: none; transform: scaleX(1); }
.k-hero .k-dots__count {
  align-self: center;
  flex: 0 0 auto;
  margin-left: 4px;
  color: rgba(255, 255, 255, .82);
  font-size: 11px;
  font-variant-numeric: tabular-nums;
  letter-spacing: .08em;
  text-shadow: 0 1px 8px rgba(8, 20, 14, .7);
}
[dir="rtl"] .k-hero .k-dots__count { margin-left: 0; margin-right: 4px; }

/* --- tam sayfa kipi --- */
.k-kbul--sayfa {
  padding: clamp(40px, 7vw, 90px) var(--k-gut) clamp(56px, 8vw, 110px);
  background: var(--k-paper);
  color: var(--k-ink);
}

/* --- başlık / giriş --- */
.k-kbul__baslik {
  font-size: clamp(28px, 6vw, 46px);
  line-height: 1.1;
  margin: 10px 0 14px;
}
.k-kbul__metin {
  margin: 0 0 28px;
  max-width: 46ch;
  opacity: .82;
}

/* --- sayaç + geri --- */
.k-kbul__ust {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 10px;
}
.k-kbul__sayac {
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
  opacity: .7;
}
.k-kbul__geri {
  font: inherit;
  font-size: 13px;
  background: none;
  border: 0;
  padding: 8px 4px;      /* görsel olarak küçük, dokunma alanı geniş */
  margin: -8px -4px;
  cursor: pointer;
  color: inherit;
  opacity: .7;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.k-kbul__geri:hover { opacity: 1; }

/* --- ilerleme çubuğu --- */
.k-kbul__cubuk {
  height: 2px;
  background: currentColor;
  opacity: .22;
  margin-bottom: clamp(20px, 4vw, 34px);
}
.k-kbul__cubuk > span {
  display: block;
  height: 100%;
  background: currentColor;
  transition: width .35s var(--k-ease);
}

/* --- soru --- */
.k-kbul__soru {
  font-size: clamp(22px, 5vw, 34px);
  line-height: 1.2;
  margin: 0 0 clamp(18px, 3vw, 26px);
  text-wrap: balance;
}

/* --- şıklar --- */
.k-kbul__secenekler {
  display: grid;
  gap: 10px;
}
@media (min-width: 620px) {
  .k-kbul__secenekler { grid-template-columns: 1fr 1fr; gap: 12px; }
}
.k-kbul__secenekler button {
  font: inherit;
  font-size: 16px;
  text-align: left;
  min-height: 56px;
  padding: 14px 18px;
  border-radius: 2px;
  cursor: pointer;
  transition: background .18s var(--k-ease), border-color .18s var(--k-ease), transform .12s var(--k-ease);
}
.k-kbul__secenekler button:active { transform: scale(.985); }

.k-kbul--sayfa .k-kbul__secenekler button {
  background: #fff;
  border: 1px solid var(--k-line);
  color: var(--k-ink);
}
.k-kbul--sayfa .k-kbul__secenekler button:hover {
  border-color: var(--k-green);
  background: var(--k-paper2);
}

/* --- başla / ürüne git düğmesi --- */
.k-kbul__basla {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font: inherit;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: .04em;
  min-height: 52px;
  padding: 0 30px;
  border: 0;
  border-radius: 2px;
  cursor: pointer;
  text-decoration: none;
  background: var(--k-cream);
  color: var(--k-ink);
  transition: opacity .18s var(--k-ease);
}
.k-kbul__basla:hover { opacity: .88; }
.k-kbul--sayfa .k-kbul__basla { background: var(--k-green); color: #fff; }

/* --- sonuç --- */
.k-kbul__ad { font-size: clamp(30px, 6vw, 48px); margin: 8px 0 6px; }
.k-kbul__notlar { margin: 0 0 6px; font-size: 16px; opacity: .9; }
.k-kbul__niye { margin: 0 0 26px; font-size: 14px; opacity: .62; }
.k-kbul__gorsel {
  display: block;
  width: 100%;
  max-width: 300px;
  height: auto;
  margin: 0 0 28px;
}
.k-kbul__aksiyon {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px 24px;
}
.k-kbul__tekrar {
  font: inherit;
  font-size: 14px;
  background: none;
  border: 0;
  padding: 10px 2px;
  cursor: pointer;
  color: inherit;
  opacity: .72;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.k-kbul__tekrar:hover { opacity: 1; }


/* =========================================================================
   ÖĞÜTÜM BULUCU  (2026-09-08)
   =========================================================================
   Öğütüm seçicisinin altında duran, kapalı başlayan yardımcı. Seçimini bilen
   müşteriyi durdurmuyor — tek satırlık bir bağlantı; bilmeyen açıp
   ekipmanını seçiyor ve doğru öğütüm işaretleniyor.
   ========================================================================= */

.k-ogyard { margin-top: 10px; }

.k-ogyard__ac {
  font: inherit;
  font-size: 13px;
  background: none;
  border: 0;
  padding: 8px 2px;          /* görsel olarak küçük, dokunma alanı geniş */
  margin: -8px -2px;
  cursor: pointer;
  color: var(--k-ink2);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.k-ogyard__ac:hover { color: var(--k-ink); }

.k-ogyard__kutu {
  margin-top: 10px;
  padding: 14px;
  border: 1px solid var(--k-line);
  background: var(--k-paper2);
}
.k-ogyard__ust {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
}
.k-ogyard__baslik { font-size: 13.5px; font-weight: 600; }
.k-ogyard__kapat {
  font: inherit;
  font-size: 12px;
  background: none;
  border: 0;
  padding: 6px 2px;
  margin: -6px -2px;
  cursor: pointer;
  color: var(--k-ink2);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.k-ogyard__secenekler { display: grid; gap: 8px; }
.k-ogyard__secenekler button,
.k-ogyard__espresso {
  font: inherit;
  font-size: 14px;
  text-align: left;
  min-height: 48px;          /* parmak hedefi */
  padding: 11px 14px;
  background: #fff;
  border: 1px solid var(--k-line);
  color: var(--k-ink);
  cursor: pointer;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: border-color .18s var(--k-ease), background .18s var(--k-ease);
}
.k-ogyard__secenekler button:hover,
.k-ogyard__espresso:hover { border-color: var(--k-green); background: var(--k-paper); }

/* Espresso satırı öğütüm DEĞİŞTİRMİYOR, başka ürüne gidiyor — bu yüzden
   diğerlerinden görsel olarak ayrılıyor: sağda nereye gittiğini söyleyen
   ikinci bir satır var. */
.k-ogyard__espresso { justify-content: space-between; }
.k-ogyard__espresso span {
  flex-shrink: 0;
  font-size: 12px;
  color: var(--k-green2);
  text-decoration: underline;
  text-underline-offset: 3px;
}
@media (max-width: 420px) {
  /* Dar ekranda iki metin yan yana sıkışıyordu; alt alta geçiyorlar. */
  .k-ogyard__espresso { flex-direction: column; align-items: flex-start; gap: 4px; }
}

.k-ogyard__sonuc {
  margin: 10px 0 0;
  font-size: 13px;
  color: var(--k-green2);
}


/* Öğütümünü Bul — Öğren sayfasındaki bağımsız, tek soruluk araç */
.k-grindfinder {
  box-sizing: border-box;
  width: 100%;
  min-height: calc(100svh - var(--k-head));
  display: grid;
  align-items: center;
  padding: clamp(48px, 8vw, 96px) var(--k-gut);
  background: var(--k-paper);
}
.k-grindfinder__ic { width: 100%; max-width: 760px; margin: 0 auto; }
.k-grindfinder h1 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(36px, 7vw, 68px);
  font-weight: 500;
  line-height: 1.04;
  letter-spacing: -.025em;
  margin: 12px 0 18px;
  text-wrap: balance;
}
.k-grindfinder__intro { max-width: 52ch; color: var(--k-ink2); margin: 0 0 30px; }
.k-grindfinder__options { display: grid; grid-template-columns: 1fr; gap: 10px; }
@media (min-width: 680px) {
  .k-grindfinder__options { grid-template-columns: 1fr 1fr; gap: 12px; }
}
.k-grindfinder__options button {
  min-height: 62px;
  padding: 14px 18px;
  border: 1px solid var(--k-line);
  border-radius: 2px;
  background: #fff;
  color: var(--k-ink);
  font: inherit;
  font-size: 16px;
  text-align: left;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  transition: border-color .18s var(--k-ease), background .18s var(--k-ease);
}
.k-grindfinder__options button:hover { border-color: var(--k-green); background: var(--k-paper2); }
.k-grindfinder__options button span { color: var(--k-green2); font-size: 20px; }
[dir="rtl"] .k-grindfinder__options button { text-align: right; }
.k-grindfinder__result > p {
  max-width: 55ch;
  color: var(--k-ink2);
  font-size: clamp(17px, 2vw, 20px);
  line-height: 1.65;
  margin: 0 0 30px;
}
.k-grindfinder__actions { display: flex; flex-wrap: wrap; align-items: center; gap: 14px 24px; }
.k-grindfinder__actions .k-kbul__basla { background: var(--k-green); color: #fff; }
.k-grindfinder__actions button {
  border: 0;
  background: none;
  color: var(--k-ink2);
  font: inherit;
  padding: 10px 2px;
  text-decoration: underline;
  text-underline-offset: 3px;
  cursor: pointer;
}

/* Navigasyondaki "yeni" rozeti — kampanya açıkken işaretli bölümde çıkıyor
   (bkz. SiteChrome26 NAV_ITEMS, lib/kampanya.js). Büyük harf dönüşümü
   üstteki nav kuralından geliyor; rozet kendi küçük ölçeğini koruyor. */
.k-navnew{display:inline-block;margin-inline-start:7px;padding:2px 6px;border-radius:999px;background:#b28d43;color:#fff;font-size:8.5px;font-weight:700;letter-spacing:.08em;vertical-align:2px}
.k-header.over .k-navnew{background:#d8df9c;color:#163b2c}
.k-menu .k-navnew{font-size:10px;vertical-align:4px}

/* ==========================================================================
   KAMPANYA POP-UP'I (components/KampanyaPopup.js)
   --------------------------------------------------------------------------
   2026-09-18: kampanya anasayfada hero'nun üstünde tam genişlikte bir şeritti
   ve markanın ilk ekranını devralıyordu. Artık site genelinde bir kez açılan
   bir kutu; hero yine ilk ekran.

   Düzen: masaüstünde iki sütun (dikey kampanya karesi solda, metin sağda),
   mobilde tek sütun (kare üstte, 4:3'e kırpılı). Kutu KREM zeminli ve koyu
   yazılı — kampanya karesi koyu olduğu için kutunun kendisi de koyu olsaydı
   görselle metin birbirine karışırdı.
   ========================================================================== */
/* `margin: auto` ŞART: tarayıcının kendi kuralı modal dialog'u
   `inset: 0 + margin: auto` ile ortalıyor, ama site.css'teki genel
   `* { margin: 0 }` sıfırlaması onu eziyor ve kutu sol üst köşeye
   yapışıyordu (2026-09-18'de tam bu şekilde çıktı). */
.kt-pop { border: 0; padding: 0; margin: auto; background: transparent; max-width: min(960px, calc(100vw - 32px)); max-height: calc(100svh - 32px); overflow: visible; }
.kt-pop::backdrop { background: rgba(7, 20, 16, .62); -webkit-backdrop-filter: blur(3px); backdrop-filter: blur(3px); }
.kt-pop-kart {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  background: var(--k-paper);
  color: var(--k-ink);
  border: 1px solid var(--k-line);
  box-shadow: 0 30px 70px rgba(7, 20, 16, .35);
  max-height: calc(100svh - 32px);
  overflow: auto;
  animation: kt-pop-gir .42s var(--k-ease) both;
}
@keyframes kt-pop-gir { from { opacity: 0; transform: translateY(14px) scale(.985); } to { opacity: 1; transform: none; } }
@media (prefers-reduced-motion: reduce) { .kt-pop-kart { animation: none; } }

.kt-pop-gorsel { position: relative; background: #0b1811; }
.kt-pop-gorsel img { display: block; width: 100%; height: 100%; object-fit: cover; }

.kt-pop-x {
  position: absolute; top: 10px; inset-inline-end: 10px; z-index: 2;
  width: 38px; height: 38px; display: grid; place-items: center;
  border: 0; border-radius: 50%; cursor: pointer;
  background: rgba(7, 20, 16, .55); color: #fff;
  -webkit-backdrop-filter: blur(4px); backdrop-filter: blur(4px);
  transition: background .2s var(--k-ease);
}
.kt-pop-x svg { width: 18px; height: 18px; }
.kt-pop-x:hover { background: rgba(7, 20, 16, .8); }
.kt-pop-x:focus-visible { outline: 2px solid var(--k-cream); outline-offset: 2px; }

.kt-pop-metin { padding: 26px var(--k-gut) 28px; display: flex; flex-direction: column; align-items: flex-start; gap: 13px; }
.kt-pop-tag { display: flex; align-items: center; gap: 9px; font: 600 10.5px/1 'Jost', sans-serif; letter-spacing: .16em; text-transform: uppercase; color: #8c6a32; }
.kt-pop-tag:before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: #b28d43; }
.kt-pop-metin h2 { margin: 0; font: 500 clamp(27px, 4.6vw, 40px)/1.08 'Fraunces', Georgia, serif; letter-spacing: -.035em; max-width: 18ch; text-wrap: balance; }
.kt-pop-metin > p { margin: 0; font-size: 14.5px; line-height: 1.6; color: var(--k-ink2); max-width: 42ch; }

.kt-pop-fiyatlar { list-style: none; margin: 3px 0 0; padding: 0; display: flex; flex-wrap: wrap; gap: 9px; }
.kt-pop-fiyatlar li { display: flex; align-items: baseline; gap: 9px; padding: 8px 13px; border: 1px solid var(--k-line); background: #fff; }
.kt-pop-boy { font: 600 10.5px/1 'Jost', sans-serif; letter-spacing: .12em; text-transform: uppercase; color: var(--k-ink2); }
.kt-pop-fiyat { display: flex; align-items: baseline; gap: 7px; }
.kt-pop-fiyat s { font-size: 12.5px; color: #9a9890; }
.kt-pop-fiyat strong { font: 600 16px/1 'Jost', sans-serif; }

.kt-pop-aksiyon { display: flex; flex-wrap: wrap; align-items: center; gap: 12px 20px; margin-top: 6px; }
.kt-pop-cta {
  display: inline-flex; align-items: center; justify-content: space-between; gap: 22px;
  min-height: 52px; padding: 15px 22px;
  background: var(--k-green); color: var(--k-paper);
  font-size: 15px; font-weight: 600; text-decoration: none;
  transition: background .2s var(--k-ease);
}
.kt-pop-cta span { font-size: 20px; line-height: 1; }
.kt-pop-cta:hover { background: var(--k-green2); }
.kt-pop-sonra { min-height: 44px; padding: 0; border: 0; background: none; cursor: pointer; font: 400 14px 'Jost', sans-serif; color: var(--k-ink2); text-decoration: underline; text-underline-offset: 4px; }
.kt-pop-sonra:hover { color: var(--k-ink); }
.kt-pop-rozet { font: 600 11.5px/1 'Jost', sans-serif; letter-spacing: .05em; padding: 7px 11px; background: var(--k-cream); color: #4a3a12; }

/* MOBİL — 2026-09-18 yeniden yazıldı.
   Berk telefonda "taşmış, çok büyük resim" dedi. Üç sebep birden vardı:
   1) dialog genişliği `fit-content`ti ve içindeki görselin doğal genişliği
      (1080px) kutuyu zorluyordu — artık açık `width` veriliyor,
   2) görsel 4:3 kutuda ekranın üçte birini kaplıyordu — ince bant oldu,
   3) yükseklik yalnızca svh ile sınırlıydı; px tavan eklendi.
   Buton ve "şimdi değil" tam genişlik: tek elle erişilebilir olsun. */
@media (max-width: 760px) {
  .kt-pop { width: min(420px, calc(100vw - 24px)); max-width: none; max-height: min(620px, calc(100svh - 24px)); }
  .kt-pop-kart { max-height: min(620px, calc(100svh - 24px)); }
  /* `aspect-ratio` + `max-height` BİRLİKTE kullanılmaz: yükseklik tavanı
     devreye girince kutu oranı korumak için GENİŞLİĞİ daraltıyor ve bant
     kartın sağında boşluk bırakıyordu. Sabit yükseklik + `object-fit: cover`
     hem tam genişlik veriyor hem kırpmayı görsele bırakıyor. */
  .kt-pop-gorsel { height: 150px; }
  .kt-pop-metin { padding: 18px 18px max(20px, env(safe-area-inset-bottom)); gap: 10px; }
  .kt-pop-metin h2 { font-size: 24px; max-width: 20ch; }
  .kt-pop-metin > p { font-size: 13.5px; max-width: none; }
  .kt-pop-fiyatlar { gap: 8px; }
  .kt-pop-fiyatlar li { padding: 6px 11px; }
  .kt-pop-aksiyon { width: 100%; gap: 10px; }
  .kt-pop-cta { flex: 1 1 100%; justify-content: center; gap: 12px; min-height: 50px; }
  .kt-pop-sonra { width: 100%; text-align: center; }
  .kt-pop-x { top: 8px; inset-inline-end: 8px; width: 34px; height: 34px; }
}
@media (min-width: 761px) {
  .kt-pop-kart { grid-template-columns: minmax(0, 42%) minmax(0, 58%); }
  .kt-pop-metin { padding: 44px 40px; gap: 15px; }
  .kt-pop-x { background: rgba(7, 20, 16, .35); }
}
