/* =========================================================
   KOSANDRA — giyim ve moda teması
   
   Tasarım dili: Kâhin Kassandra. Gören ama inanılmayan.
   Parşömen zemin (kehanetin yazıldığı yüzey), obsidyen
   mürekkep, ölçülü pirinç vurgu (Delfi tapınağı). Klasik
   yüksek kontrastlı serif başlık + geometrik gövde.
   Yerleşim mimari: tam genişlik, kılcal çizgiler, katı ızgara.

   YORUM KURALI: Bu dosyadaki hiçbir yorumun içinde yildiz ve
   bolu isareti yan yana GECMEMELIDIR. Gecerse yorum erken
   kapanir ve o satirdan sonraki tum kurallar sessizce cope
   gider. Sinif desenlerinden bahsederken yildiz kullanmayin,
   "ks- ile baslayan kurallar" gibi duz yazin.
   ========================================================= */

/* ---------------------------------------------------------
   1. TOKENLAR
   --------------------------------------------------------- */
:root {
  --c-ink:     #15171B;
  --c-brass:   #A98B54;
  --c-sale:    #8C2F2A;
  --c-star:    #A98B54;

  --c-bg:      #F6F3ED;
  --c-surface: #FFFFFF;
  --c-veil:    #EDE8DF;
  --c-smoke:   #6B6862;
  --c-line:    #E3DCD0;

  --f-heading: 'Cormorant Garamond', Georgia, serif;
  --f-body:    'Jost', system-ui, -apple-system, sans-serif;
  --fs-base:   15px;
  --heading-weight: 500;
  --label-tracking: 2px;

  --container-max: 1440px;
  --gutter:      48px;
  --section-gap: 88px;
  --radius:      0px;

  --reveal-speed: 700ms;
  --ease: cubic-bezier(.22,.61,.36,1);

  --ann-bg:    #15171B;
  --ann-color: #F6F3ED;

  --card-ratio: 3 / 4;
  --card-fit:   cover;

  --header-h: 74px;
}

/* ---------------------------------------------------------
   2. SIFIRLAMA

   Bağlantı sıfırlaması bilerek ELEMENT seviyesinde (0,0,1)
   tutuldu. Bileşik bir seçici (.ks a) kullanılsaydı özgüllüğü
   (0,1,1) olur ve .ks-btn gibi tek sınıflı bileşen kurallarını
   sessizce ezerdi; link olarak render edilen butonlarda metin
   görünmez olurdu.

   [hidden] kuralı zorunludur: JS tarafında el.hidden ile açılıp
   kapanan öğeler (kupon alanı, fatura formu, arama paneli)
   kendi sınıflarında display taşıdığı için tarayıcı varsayılanı
   ezilir ve öğe sayfa açılır açılmaz görünür kalırdı.
   --------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body.ks {
  margin: 0;
  background: var(--c-bg, #F6F3ED);
  color: var(--c-ink, #15171B);
  font-family: var(--f-body, sans-serif);
  font-size: var(--fs-base, 15px);
  font-weight: 400;
  line-height: 1.62;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
input, select, textarea { font: inherit; color: inherit; }
ul, ol { margin: 0; padding: 0; list-style: none; }
figure, blockquote { margin: 0; }
table { border-collapse: collapse; width: 100%; }

[hidden] { display: none !important; }

:focus-visible {
  outline: 2px solid var(--c-brass, #A98B54);
  outline-offset: 3px;
}

/* ---------------------------------------------------------
   3. YERLEŞİM

   Tam genişlik varsayılandır: içerik ekranın tamamını kullanır,
   sadece kenar boşluğu bırakır. Özelleştiriciden kapatılırsa
   body üzerine ks-boxed sınıfı gelir ve içerik ortalanır.
   --------------------------------------------------------- */
.ks-wrap {
  width: 100%;
  margin: 0 auto;
  padding-inline: clamp(16px, 4vw, var(--gutter, 48px));
}
body.ks-boxed .ks-wrap { max-width: var(--container-max, 1440px); }

.ks-wrap--narrow { max-width: 860px; }
.ks-wrap--form   { max-width: 560px; }

.ks-section { padding-block: clamp(40px, 7vw, var(--section-gap, 88px)); }
.ks-section--tight { padding-block: clamp(28px, 4vw, 48px); }
.ks-section--flush { padding-block: 0; }

.ks-rule { height: 1px; background: var(--c-line, #E3DCD0); border: 0; margin: 0; }

/* Bölüm başlığı: küçük büyük-harf etiket, serif başlık, ölçülü açıklama */
.ks-head { margin-bottom: clamp(24px, 3vw, 44px); }
.ks-head--center { text-align: center; }
.ks-head--split {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 24px; flex-wrap: wrap;
}
.ks-eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  font-size: 11px; font-weight: 500;
  letter-spacing: var(--label-tracking, 2px);
  text-transform: uppercase;
  color: var(--c-brass, #A98B54);
  margin-bottom: 12px;
}
.ks-eyebrow::before {
  content: ""; width: 22px; height: 1px;
  background: currentColor; flex: none;
}
.ks-head--center .ks-eyebrow::before { display: none; }
.ks-title {
  font-family: var(--f-heading, serif);
  font-weight: var(--heading-weight, 500);
  font-size: clamp(28px, 4.2vw, 52px);
  line-height: 1.08;
  letter-spacing: -.01em;
  margin: 0;
  text-wrap: balance;
}
.ks-title--sm { font-size: clamp(22px, 2.6vw, 32px); }
.ks-lede {
  margin: 14px 0 0;
  max-width: 62ch;
  color: var(--c-smoke, #6B6862);
  font-size: 15px;
}
.ks-head--center .ks-lede { margin-inline: auto; }

/* ---------------------------------------------------------
   4. TİPOGRAFİ
   --------------------------------------------------------- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--f-heading, serif);
  font-weight: var(--heading-weight, 500);
  line-height: 1.14;
  margin: 0 0 .5em;
  letter-spacing: -.01em;
}
p { margin: 0 0 1em; }
p:last-child { margin-bottom: 0; }

.ks-label {
  font-size: 11px; font-weight: 500;
  letter-spacing: var(--label-tracking, 2px);
  text-transform: uppercase;
  color: var(--c-smoke, #6B6862);
}
.ks-muted { color: var(--c-smoke, #6B6862); }
.ks-serif { font-family: var(--f-heading, serif); }

/* Uzun metin (blog yazısı, sözleşme sayfası, ürün açıklaması) */
.ks-prose { max-width: 72ch; font-size: 16px; line-height: 1.75; }
.ks-prose h2 { font-size: clamp(22px, 2.4vw, 30px); margin-top: 1.6em; }
.ks-prose h3 { font-size: clamp(19px, 2vw, 23px); margin-top: 1.4em; }
.ks-prose img { margin: 1.6em 0; }
.ks-prose ul, .ks-prose ol { margin: 0 0 1em 1.2em; }
.ks-prose ul { list-style: disc; }
.ks-prose ol { list-style: decimal; }
.ks-prose li { margin-bottom: .4em; }
.ks-prose a { color: var(--c-brass, #A98B54); text-decoration: underline; text-underline-offset: 3px; }
.ks-prose blockquote {
  margin: 1.8em 0;
  padding-left: 22px;
  border-left: 2px solid var(--c-brass, #A98B54);
  font-family: var(--f-heading, serif);
  font-size: 1.22em;
  line-height: 1.45;
}

/* ---------------------------------------------------------
   5. BUTONLAR
   --------------------------------------------------------- */
.ks-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  padding: 15px 30px;
  border: 1px solid var(--c-ink, #15171B);
  border-radius: var(--radius, 0px);
  background: var(--c-ink, #15171B);
  color: var(--c-bg, #F6F3ED);
  font-family: var(--f-body, sans-serif);
  font-size: 11.5px; font-weight: 500;
  letter-spacing: var(--label-tracking, 2px);
  text-transform: uppercase;
  line-height: 1;
  text-align: center;
  cursor: pointer;
  transition: background .3s var(--ease), color .3s var(--ease), border-color .3s var(--ease);
}
.ks-btn:hover { background: transparent; color: var(--c-ink, #15171B); }
.ks-btn svg { width: 16px; height: 16px; flex: none; }

.ks-btn--ghost { background: transparent; color: var(--c-ink, #15171B); }
.ks-btn--ghost:hover { background: var(--c-ink, #15171B); color: var(--c-bg, #F6F3ED); }

.ks-btn--brass { background: var(--c-brass, #A98B54); border-color: var(--c-brass, #A98B54); color: #fff; }
.ks-btn--brass:hover { background: transparent; color: var(--c-brass, #A98B54); }

.ks-btn--light { background: var(--c-bg, #F6F3ED); border-color: var(--c-bg, #F6F3ED); color: var(--c-ink, #15171B); }
.ks-btn--light:hover { background: transparent; color: var(--c-bg, #F6F3ED); border-color: var(--c-bg, #F6F3ED); }

.ks-btn--block { display: flex; width: 100%; }
.ks-btn--lg { padding: 18px 40px; font-size: 12.5px; }
.ks-btn--sm { padding: 10px 18px; font-size: 10.5px; }
.ks-btn[disabled], .ks-btn.is-disabled { opacity: .45; pointer-events: none; }

/* Alt çizgi ile büyüyen metin bağlantısı */
.ks-link {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11.5px; font-weight: 500;
  letter-spacing: var(--label-tracking, 2px);
  text-transform: uppercase;
  padding-bottom: 4px;
  border-bottom: 1px solid var(--c-ink, #15171B);
  transition: color .25s var(--ease), border-color .25s var(--ease), gap .25s var(--ease);
}
.ks-link:hover { color: var(--c-brass, #A98B54); border-color: var(--c-brass, #A98B54); gap: 13px; }
.ks-link svg { width: 15px; height: 15px; }

/* ---------------------------------------------------------
   6. FORM ÖĞELERİ
   --------------------------------------------------------- */
.ks-field { margin-bottom: 20px; }
.ks-field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.ks-field-row--3 { grid-template-columns: 1fr 1fr auto; }

.ks-flabel {
  display: block;
  margin-bottom: 8px;
  font-size: 11px; font-weight: 500;
  letter-spacing: var(--label-tracking, 2px);
  text-transform: uppercase;
  color: var(--c-smoke, #6B6862);
}
.ks-req { color: var(--c-sale, #8C2F2A); }

.ks-input, .ks-select, .ks-textarea {
  width: 100%;
  padding: 14px 16px;
  background: var(--c-surface, #fff);
  border: 1px solid var(--c-line, #E3DCD0);
  border-radius: var(--radius, 0px);
  font-size: 14px;
  color: var(--c-ink, #15171B);
  transition: border-color .22s var(--ease), box-shadow .22s var(--ease);
}
.ks-input::placeholder, .ks-textarea::placeholder { color: #A9A49B; }
.ks-input:focus, .ks-select:focus, .ks-textarea:focus {
  outline: none;
  border-color: var(--c-ink, #15171B);
  box-shadow: 0 0 0 3px rgba(169,139,84,.16);
}
.ks-textarea { min-height: 140px; resize: vertical; }
.ks-select {
  appearance: none;
  padding-right: 40px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%236B6862' stroke-width='1.5'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 16px;
}

/* CountryPicker artık themes/shared/country-picker.css'ten geliyor —
   burada yalnızca kosandra'nın kendi paletine uyarlanması için --cp-
   değişkenleri :root'ta yeniden tanımlanır (panel document.body'ye
   taşındığı için .cp-wrap scope OLAMAZ, bkz. country-picker.css docblock'u).
   .cp-btn zaten .ks-input sınıfını da taşır (kenarlık/dolgu/renk oradan gelir). */
:root {
  --cp-bg:     var(--c-surface, #fff);
  --cp-line:   var(--c-line, #E3DCD0);
  --cp-ink:    var(--c-ink, #15171B);
  --cp-radius: var(--radius, 0px);
  --cp-hover:  var(--c-veil, #EDE8DF);
}
.cp-btn:focus { outline: none; border-color: var(--c-ink, #15171B); box-shadow: 0 0 0 3px rgba(169,139,84,.16); }

.ks-check {
  display: flex; align-items: flex-start; gap: 11px;
  font-size: 13.5px; line-height: 1.5;
  color: var(--c-smoke, #6B6862);
  cursor: pointer;
}
.ks-check input[type=checkbox], .ks-check input[type=radio] {
  width: 16px; height: 16px; margin-top: 3px; flex: none;
  accent-color: var(--c-ink, #15171B);
  cursor: pointer;
}
.ks-check a { color: var(--c-ink, #15171B); text-decoration: underline; }

/* Uyarı kutuları */
.ks-alert {
  padding: 14px 18px;
  margin-bottom: 20px;
  border: 1px solid;
  border-radius: var(--radius, 0px);
  font-size: 13.5px;
}
.ks-alert--error   { background: #FBF1F0; border-color: #E4C6C3; color: var(--c-sale, #8C2F2A); }
.ks-alert--success { background: #F1F5F0; border-color: #C8D9C6; color: #3B6B3F; }
.ks-alert--info    { background: var(--c-veil, #EDE8DF); border-color: var(--c-line, #E3DCD0); color: var(--c-ink, #15171B); }

/* ---------------------------------------------------------
   7. DUYURU BANDI VE ÜST MENÜ

   Logo ortada, gezinme solda, aksiyonlar sağda: klasik lüks
   moda kurgusu. Tam genişlikte oturur, altında kılcal çizgi.
   --------------------------------------------------------- */
.ks-ann {
  background: var(--ann-bg, #15171B);
  color: var(--ann-color, #F6F3ED);
  font-size: 11.5px;
  letter-spacing: var(--label-tracking, 2px);
  text-transform: uppercase;
  text-align: center;
  padding: 10px 16px;
}
.ks-ann__line { display: inline-block; }

.ks-header-wrap { position: relative; z-index: 900; }
.ks-header-wrap.is-sticky { position: sticky; top: 0; }

.ks-header {
  background: var(--c-bg, #F6F3ED);
  border-bottom: 1px solid var(--c-line, #E3DCD0);
}
.ks-header__bar {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 20px;
  min-height: var(--header-h, 74px);
}
.ks-header__nav  { justify-self: start; }
.ks-header__logo { justify-self: center; }
.ks-header__acts { justify-self: end; display: flex; align-items: center; gap: 4px; }

.ks-logo {
  font-family: var(--f-heading, serif);
  font-weight: var(--heading-weight, 500);
  font-size: 25px;
  letter-spacing: 6px;
  text-transform: uppercase;
  line-height: 1;
  white-space: nowrap;
}
.ks-logo img { max-height: 40px; width: auto; }

.ks-nav { display: flex; align-items: center; gap: 26px; }
.ks-nav__item { position: relative; }
.ks-nav__link {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 26px 0;
  font-size: 11.5px; font-weight: 500;
  letter-spacing: var(--label-tracking, 2px);
  text-transform: uppercase;
  transition: color .25s var(--ease);
}
.ks-nav__link:hover { color: var(--c-brass, #A98B54); }
.ks-nav__link svg { width: 12px; height: 12px; opacity: .55; transition: transform .25s var(--ease); }
.ks-nav__item:hover .ks-nav__link svg { transform: rotate(180deg); }

/* Mega menü: tam genişlik, sütunlu */
.ks-mega {
  position: absolute; top: 100%; left: 0;
  min-width: 240px;
  background: var(--c-surface, #fff);
  border: 1px solid var(--c-line, #E3DCD0);
  padding: 22px 26px;
  opacity: 0; visibility: hidden;
  transform: translateY(-6px);
  transition: opacity .25s var(--ease), transform .25s var(--ease), visibility .25s;
}
.ks-nav__item:hover .ks-mega,
.ks-nav__item:focus-within .ks-mega { opacity: 1; visibility: visible; transform: translateY(0); }
.ks-mega__list { display: flex; flex-direction: column; gap: 11px; }
.ks-mega__link {
  font-size: 13.5px;
  color: var(--c-smoke, #6B6862);
  transition: color .2s var(--ease), padding-left .2s var(--ease);
}
.ks-mega__link:hover { color: var(--c-ink, #15171B); padding-left: 5px; }

.ks-iconbtn {
  position: relative;
  width: 42px; height: 42px;
  display: grid; place-items: center;
  border-radius: var(--radius, 0px);
  transition: color .22s var(--ease), background .22s var(--ease);
}
.ks-iconbtn:hover { color: var(--c-brass, #A98B54); }
.ks-iconbtn svg { width: 19px; height: 19px; }
.ks-iconbtn__count {
  position: absolute; top: 5px; right: 3px;
  min-width: 17px; height: 17px;
  padding: 0 4px;
  display: grid; place-items: center;
  background: var(--c-ink, #15171B);
  color: var(--c-bg, #F6F3ED);
  border-radius: 999px;
  font-size: 10px; font-weight: 500;
  font-variant-numeric: tabular-nums;
}
.ks-burger { display: none; }

/* Arama katmanı */
.ks-search-overlay {
  position: fixed; inset: 0; z-index: 1200;
  background: var(--c-bg, #F6F3ED);
  display: flex; align-items: center; justify-content: center;
  padding: 24px;
  opacity: 0; visibility: hidden;
  transition: opacity .3s var(--ease), visibility .3s;
}
.ks-search-overlay.is-open { opacity: 1; visibility: visible; }
.ks-search-overlay__close { position: absolute; top: 26px; right: 26px; width: 44px; height: 44px; display: grid; place-items: center; }
.ks-search-overlay__close svg { width: 24px; height: 24px; }
.ks-search-form { width: min(720px, 100%); }
.ks-search-form input {
  width: 100%;
  padding: 14px 0;
  background: none;
  border: 0; border-bottom: 1px solid var(--c-ink, #15171B);
  font-family: var(--f-heading, serif);
  font-size: clamp(24px, 4vw, 42px);
  color: var(--c-ink, #15171B);
  outline: none;
}
.ks-search-form input::placeholder { color: #B6B0A6; }
.ks-search-form__hint {
  margin-top: 16px;
  font-size: 11px;
  letter-spacing: var(--label-tracking, 2px);
  text-transform: uppercase;
  color: var(--c-smoke, #6B6862);
}

/* Mobil çekmece */
.ks-drawer-backdrop {
  position: fixed; inset: 0; z-index: 1100;
  background: rgba(21,23,27,.42);
  opacity: 0; visibility: hidden;
  transition: opacity .3s var(--ease), visibility .3s;
}
.ks-drawer-backdrop.is-open { opacity: 1; visibility: visible; }
.ks-drawer {
  position: fixed; top: 0; left: 0; bottom: 0; z-index: 1150;
  width: min(360px, 88vw);
  background: var(--c-bg, #F6F3ED);
  display: flex; flex-direction: column;
  transform: translateX(-100%);
  transition: transform .34s var(--ease);
}
.ks-drawer.is-open { transform: translateX(0); }
.ks-drawer__head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 22px;
  border-bottom: 1px solid var(--c-line, #E3DCD0);
}
.ks-drawer__body { flex: 1; overflow-y: auto; padding: 12px 22px 28px; }
.ks-drawer__link {
  display: block;
  padding: 15px 0;
  border-bottom: 1px solid var(--c-line, #E3DCD0);
  font-size: 12.5px; font-weight: 500;
  letter-spacing: var(--label-tracking, 2px);
  text-transform: uppercase;
}
.ks-drawer__sub { padding: 4px 0 14px 14px; display: flex; flex-direction: column; gap: 10px; }
.ks-drawer__sub a { font-size: 13.5px; color: var(--c-smoke, #6B6862); letter-spacing: 0; text-transform: none; }
.ks-drawer__foot { padding: 18px 22px; border-top: 1px solid var(--c-line, #E3DCD0); display: flex; flex-direction: column; gap: 10px; }

/* ---------------------------------------------------------
   8. ÜRÜN KARTI
   --------------------------------------------------------- */
.ks-grid {
  display: grid;
  grid-template-columns: repeat(var(--cols, 4), minmax(0, 1fr));
  gap: clamp(14px, 1.6vw, 26px) clamp(12px, 1.4vw, 22px);
}

.ks-card { position: relative; display: flex; flex-direction: column; }

/* Gorsel katmanlarinin konumlandirma kutusu. Etiketler, favori butonu ve
   "Sepete Ekle" bu kutuya gore konumlanir; .ks-card'a gore konumlansalardi
   bottom:12px kartin en altina, yani urun adinin uzerine denk gelirdi. */
.ks-card__top { position: relative; }

.ks-card__media {
  position: relative;
  display: block;
  aspect-ratio: var(--card-ratio, 3 / 4);
  overflow: hidden;
  background: var(--c-veil, #EDE8DF);
  border-radius: var(--radius, 0px);
}
.ks-card__img {
  width: 100%; height: 100%;
  object-fit: var(--card-fit, cover);
  transition: transform .8s var(--ease), opacity .5s var(--ease);
}
.ks-card__img--alt { position: absolute; inset: 0; opacity: 0; }
.ks-card:hover .ks-card__img--alt { opacity: 1; }
body.ks-zoom .ks-card:hover .ks-card__img { transform: scale(1.045); }

.ks-tags { position: absolute; top: 12px; left: 12px; display: flex; flex-direction: column; gap: 6px; z-index: 2; }
.ks-tag {
  padding: 5px 10px;
  background: var(--c-ink, #15171B);
  color: var(--c-bg, #F6F3ED);
  font-size: 9.5px; font-weight: 500;
  letter-spacing: var(--label-tracking, 2px);
  text-transform: uppercase;
  line-height: 1;
}
.ks-tag--sale  { background: var(--c-sale, #8C2F2A); color: #fff; }
.ks-tag--new   { background: var(--c-brass, #A98B54); color: #fff; }
.ks-tag--out   { background: var(--c-smoke, #6B6862); color: #fff; }

.ks-fav {
  position: absolute; top: 10px; right: 10px; z-index: 2;
  width: 36px; height: 36px;
  display: grid; place-items: center;
  background: var(--c-surface, #fff);
  border-radius: 999px;
  opacity: 0;
  transform: translateY(-4px);
  transition: opacity .25s var(--ease), transform .25s var(--ease), color .2s;
}
.ks-card:hover .ks-fav { opacity: 1; transform: translateY(0); }
.ks-fav svg { width: 17px; height: 17px; }
/* favorites.js 'is-fav' sinifini cevirir; is-active baska bilesenlerin
   kaliplarina uysun diye ikisi de kabul edilir. */
.ks-fav:hover, .ks-fav.is-fav, .ks-fav.is-active { color: var(--c-sale, #8C2F2A); }
.ks-fav.is-fav svg, .ks-fav.is-active svg { fill: currentColor; }

.ks-card__atc {
  position: absolute; left: 12px; right: 12px; bottom: 12px; z-index: 2;
  opacity: 0; transform: translateY(8px);
  transition: opacity .28s var(--ease), transform .28s var(--ease);
}
.ks-card:hover .ks-card__atc { opacity: 1; transform: translateY(0); }

.ks-card__body { padding: 14px 2px 0; display: flex; flex-direction: column; gap: 5px; }
.ks-card__brand {
  font-size: 10.5px;
  letter-spacing: var(--label-tracking, 2px);
  text-transform: uppercase;
  color: var(--c-smoke, #6B6862);
}
.ks-card__name {
  font-family: var(--f-heading, serif);
  font-size: 19px;
  font-weight: var(--heading-weight, 500);
  line-height: 1.22;
  margin: 0;
}
.ks-card__name a:hover { color: var(--c-brass, #A98B54); }
.ks-card__excerpt {
  font-size: 12.5px;
  color: var(--c-smoke, #6B6862);
  line-height: 1.5;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.ks-card__price { display: flex; align-items: baseline; gap: 9px; font-size: 14.5px; }
.ks-card__price ins { text-decoration: none; color: var(--c-sale, #8C2F2A); font-weight: 500; }
.ks-card__price del { color: var(--c-smoke, #6B6862); font-size: 13px; }

.ks-stars { display: inline-flex; align-items: center; gap: 3px; }
.ks-stars svg { width: 13px; height: 13px; color: var(--c-star, #A98B54); }
.ks-stars__count { margin-left: 5px; font-size: 11.5px; color: var(--c-smoke, #6B6862); }

/* Renk seçenekleri (kart üstünde küçük noktalar) */
.ks-swatches { display: flex; gap: 5px; margin-top: 3px; }
.ks-swatch {
  width: 13px; height: 13px;
  border-radius: 999px;
  border: 1px solid var(--c-line, #E3DCD0);
}
.ks-swatch--more { font-size: 10px; color: var(--c-smoke, #6B6862); line-height: 13px; }

/* ---------------------------------------------------------
   9. ANA SAYFA BÖLÜMLERİ
   --------------------------------------------------------- */

/* 9.1 Editoryal hero — tam kanama görsel, üzerinde metin bloğu */
.ks-hero { position: relative; width: 100%; overflow: hidden; }
.ks-hero__media { position: absolute; inset: 0; }
.ks-hero__media img { width: 100%; height: 100%; object-fit: cover; }
.ks-hero__veil { position: absolute; inset: 0; }
.ks-hero__inner {
  position: relative; z-index: 2;
  display: flex; flex-direction: column;
  min-height: var(--hero-h, 76vh);
  padding-block: clamp(48px, 8vw, 110px);
}
.ks-hero--left   .ks-hero__inner { align-items: flex-start; text-align: left; justify-content: center; }
.ks-hero--center .ks-hero__inner { align-items: center; text-align: center; justify-content: center; }
.ks-hero--right  .ks-hero__inner { align-items: flex-end; text-align: right; justify-content: center; }
.ks-hero--bottom .ks-hero__inner { justify-content: flex-end; }
.ks-hero__box { max-width: 640px; }
.ks-hero__eyebrow {
  display: block;
  font-size: 11px; letter-spacing: 4px; text-transform: uppercase;
  margin-bottom: 18px;
}
.ks-hero__title {
  font-family: var(--f-heading, serif);
  font-weight: var(--heading-weight, 500);
  font-size: clamp(34px, 6.4vw, 84px);
  line-height: 1.02;
  letter-spacing: -.015em;
  margin: 0;
  text-wrap: balance;
}
.ks-hero__text { margin: 20px 0 0; font-size: 16px; line-height: 1.6; max-width: 46ch; }
.ks-hero--center .ks-hero__text { margin-inline: auto; }
.ks-hero--right  .ks-hero__text { margin-left: auto; }
.ks-hero__cta { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.ks-hero--center .ks-hero__cta { justify-content: center; }
.ks-hero--right  .ks-hero__cta { justify-content: flex-end; }

/* 9.2 Sezon Öngörüsü — temanın imza bölümü.
   Kassandra'nın kehaneti: gelecek okunur, numaralandırılmış
   maddeler halinde sunulur. Numaralandırma burada süs değil,
   içerik gerçekten sıralı bir öngörü listesidir. */
.ks-oracle__grid {
  display: grid;
  grid-template-columns: repeat(var(--cols, 3), minmax(0, 1fr));
  gap: 1px;
  background: var(--c-line, #E3DCD0);
  border: 1px solid var(--c-line, #E3DCD0);
}
.ks-oracle__item {
  background: var(--c-bg, #F6F3ED);
  padding: clamp(24px, 2.6vw, 40px);
  display: flex; flex-direction: column; gap: 14px;
  transition: background .3s var(--ease);
}
.ks-oracle__item:hover { background: var(--c-surface, #fff); }
.ks-oracle__no {
  font-family: var(--f-heading, serif);
  font-size: 13px;
  letter-spacing: 3px;
  color: var(--c-brass, #A98B54);
}
.ks-oracle__title {
  font-family: var(--f-heading, serif);
  font-weight: var(--heading-weight, 500);
  font-size: clamp(20px, 2vw, 27px);
  line-height: 1.16;
  margin: 0;
}
.ks-oracle__text { font-size: 14px; color: var(--c-smoke, #6B6862); margin: 0; }
.ks-oracle__media { aspect-ratio: 4 / 3; overflow: hidden; margin-bottom: 4px; }
.ks-oracle__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.ks-oracle__item:hover .ks-oracle__media img { transform: scale(1.04); }

/* 9.3 Kategori ızgarası — tam genişlik döşeme */
.ks-cats {
  display: grid;
  grid-template-columns: repeat(var(--cols, 3), minmax(0, 1fr));
  gap: clamp(10px, 1.2vw, 18px);
}
.ks-cat {
  position: relative;
  display: block;
  aspect-ratio: var(--tile-ratio, 4 / 5);
  overflow: hidden;
  background: var(--c-veil, #EDE8DF);
}
.ks-cat img { width: 100%; height: 100%; object-fit: cover; transition: transform .9s var(--ease); }
.ks-cat:hover img { transform: scale(1.05); }
.ks-cat__shade { position: absolute; inset: 0; background: linear-gradient(to top, rgba(21,23,27,.55), transparent 58%); }
.ks-cat__cap {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: clamp(16px, 2vw, 28px);
  color: #fff;
  display: flex; flex-direction: column; gap: 7px;
}
.ks-cat__name {
  font-family: var(--f-heading, serif);
  font-weight: var(--heading-weight, 500);
  font-size: clamp(19px, 2vw, 27px);
  line-height: 1.1;
  margin: 0;
}
.ks-cat__meta { font-size: 10.5px; letter-spacing: var(--label-tracking, 2px); text-transform: uppercase; opacity: .82; }

/* 9.4 Yatay ürün şeridi (carousel) */
.ks-carousel { position: relative; }
.ks-carousel__track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(var(--item-w, 260px), 1fr);
  gap: clamp(12px, 1.4vw, 22px);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding-bottom: 4px;
}
.ks-carousel__track::-webkit-scrollbar { display: none; }
.ks-carousel__track > * { scroll-snap-align: start; }
.ks-carousel__nav { display: flex; gap: 8px; }
.ks-carousel__btn {
  width: 42px; height: 42px;
  display: grid; place-items: center;
  border: 1px solid var(--c-line, #E3DCD0);
  border-radius: var(--radius, 0px);
  transition: background .22s var(--ease), color .22s var(--ease), border-color .22s var(--ease);
}
.ks-carousel__btn:hover { background: var(--c-ink, #15171B); color: var(--c-bg, #F6F3ED); border-color: var(--c-ink, #15171B); }
.ks-carousel__btn svg { width: 17px; height: 17px; }

/* 9.5 İkiye bölünmüş tanıtım */
.ks-split { display: grid; grid-template-columns: 1fr 1fr; align-items: stretch; }
.ks-split--reverse .ks-split__media { order: 2; }
.ks-split__media { position: relative; min-height: 420px; overflow: hidden; }
.ks-split__media img { width: 100%; height: 100%; object-fit: cover; }
.ks-split__body {
  display: flex; flex-direction: column; justify-content: center;
  padding: clamp(30px, 5vw, 84px);
  background: var(--c-veil, #EDE8DF);
}
.ks-split__body--dark { background: var(--c-ink, #15171B); color: var(--c-bg, #F6F3ED); }
.ks-split__body--dark .ks-lede { color: rgba(246,243,237,.72); }
.ks-split__body--dark .ks-btn { border-color: var(--c-bg, #F6F3ED); background: var(--c-bg, #F6F3ED); color: var(--c-ink, #15171B); }
.ks-split__body--dark .ks-btn:hover { background: transparent; color: var(--c-bg, #F6F3ED); }

/* 9.6 Lookbook şeridi */
.ks-look { position: relative; }
.ks-look__track {
  display: grid; grid-auto-flow: column;
  grid-auto-columns: minmax(var(--item-w, 320px), 1fr);
  gap: clamp(10px, 1.2vw, 18px);
  overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: none;
}
.ks-look__track::-webkit-scrollbar { display: none; }
.ks-look__item { position: relative; aspect-ratio: 2 / 3; overflow: hidden; scroll-snap-align: start; }
.ks-look__item img { width: 100%; height: 100%; object-fit: cover; transition: transform .9s var(--ease); }
.ks-look__item:hover img { transform: scale(1.05); }
.ks-look__cap {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 20px;
  background: linear-gradient(to top, rgba(21,23,27,.6), transparent);
  color: #fff;
}
.ks-look__cap span { display: block; font-size: 10.5px; letter-spacing: var(--label-tracking, 2px); text-transform: uppercase; opacity: .85; }
.ks-look__cap strong { font-family: var(--f-heading, serif); font-weight: var(--heading-weight, 500); font-size: 21px; }

/* 9.7 Alıntı bandı — koyu, tam genişlik */
.ks-quote { background: var(--c-ink, #15171B); color: var(--c-bg, #F6F3ED); text-align: center; }
.ks-quote__mark { font-family: var(--f-heading, serif); font-size: 56px; line-height: 1; color: var(--c-brass, #A98B54); margin-bottom: 8px; }
.ks-quote__text {
  font-family: var(--f-heading, serif);
  font-weight: var(--heading-weight, 500);
  font-size: clamp(23px, 3.4vw, 44px);
  line-height: 1.22;
  margin: 0 auto;
  max-width: 22ch;
  text-wrap: balance;
}
.ks-quote__by { margin-top: 22px; font-size: 11px; letter-spacing: 3px; text-transform: uppercase; color: var(--c-brass, #A98B54); }

/* 9.8 Marka logoları */
.ks-brands { display: grid; grid-template-columns: repeat(var(--cols, 6), minmax(0, 1fr)); gap: 1px; background: var(--c-line, #E3DCD0); border: 1px solid var(--c-line, #E3DCD0); }
.ks-brands__item {
  background: var(--c-bg, #F6F3ED);
  min-height: 108px;
  display: grid; place-items: center;
  padding: 18px;
  transition: background .25s var(--ease);
}
.ks-brands__item:hover { background: var(--c-surface, #fff); }
.ks-brands__item img { max-height: 40px; max-width: 130px; object-fit: contain; filter: grayscale(1); opacity: .62; transition: filter .25s, opacity .25s; }
.ks-brands__item:hover img { filter: grayscale(0); opacity: 1; }
.ks-brands__name { font-family: var(--f-heading, serif); font-size: 18px; letter-spacing: 1px; color: var(--c-smoke, #6B6862); }

/* 9.9 Editoryal ikili */
.ks-pair { display: grid; grid-template-columns: repeat(var(--cols, 2), minmax(0, 1fr)); gap: clamp(14px, 1.6vw, 26px); }
.ks-pair__item { position: relative; display: block; overflow: hidden; aspect-ratio: 16 / 11; }
.ks-pair__item img { width: 100%; height: 100%; object-fit: cover; transition: transform .9s var(--ease); }
.ks-pair__item:hover img { transform: scale(1.04); }
.ks-pair__body {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: clamp(20px, 2.6vw, 40px);
  background: linear-gradient(to top, rgba(21,23,27,.6), transparent 62%);
  color: #fff;
}
.ks-pair__title { font-family: var(--f-heading, serif); font-weight: var(--heading-weight, 500); font-size: clamp(21px, 2.4vw, 32px); margin: 0 0 10px; }

/* 9.10 Güven şeridi */
.ks-values { display: grid; grid-template-columns: repeat(var(--cols, 4), minmax(0, 1fr)); gap: 1px; background: var(--c-line, #E3DCD0); border-block: 1px solid var(--c-line, #E3DCD0); }
.ks-values__item {
  background: var(--c-bg, #F6F3ED);
  padding: clamp(22px, 2.4vw, 34px);
  display: flex; align-items: flex-start; gap: 15px;
}
.ks-values__icon { width: 26px; height: 26px; flex: none; color: var(--c-brass, #A98B54); }
.ks-values__icon svg { width: 100%; height: 100%; }
.ks-values__t { font-size: 12px; font-weight: 500; letter-spacing: var(--label-tracking, 2px); text-transform: uppercase; margin: 0 0 6px; }
.ks-values__d { font-size: 13px; color: var(--c-smoke, #6B6862); margin: 0; line-height: 1.5; }

/* 9.11 Günlük (blog) */
.ks-journal { display: grid; grid-template-columns: repeat(var(--cols, 3), minmax(0, 1fr)); gap: clamp(18px, 2vw, 34px); }
.ks-post__media { display: block; aspect-ratio: 3 / 2; overflow: hidden; background: var(--c-veil, #EDE8DF); }
.ks-post__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .9s var(--ease); }
.ks-post:hover .ks-post__media img { transform: scale(1.05); }
.ks-post__meta { display: flex; gap: 12px; margin: 16px 0 9px; font-size: 10.5px; letter-spacing: var(--label-tracking, 2px); text-transform: uppercase; color: var(--c-brass, #A98B54); }
.ks-post__title { font-family: var(--f-heading, serif); font-weight: var(--heading-weight, 500); font-size: clamp(20px, 1.9vw, 25px); line-height: 1.2; margin: 0 0 10px; }
.ks-post__title a:hover { color: var(--c-brass, #A98B54); }
.ks-post__excerpt { font-size: 13.5px; color: var(--c-smoke, #6B6862); line-height: 1.6; margin: 0 0 14px; }

/* 9.12 Bülten bandı */
.ks-news { background: var(--c-veil, #EDE8DF); text-align: center; }
.ks-news__form { display: flex; flex-wrap: wrap; gap: 10px; max-width: 520px; margin: 26px auto 0; }
.ks-news__consent { flex: 0 0 100%; order: 3; margin-top: 12px; text-align: left; }
.ks-news__form input {
  flex: 1; min-width: 0;
  padding: 15px 16px;
  background: var(--c-surface, #fff);
  border: 1px solid var(--c-line, #E3DCD0);
  border-radius: var(--radius, 0px);
  font-size: 14px; outline: none;
}
.ks-news__form input:focus { border-color: var(--c-ink, #15171B); }
.ks-news__note { margin-top: 14px; font-size: 12px; color: var(--c-smoke, #6B6862); }

/* 9.13 Kayan yazı bandı */
.ks-marquee { overflow: hidden; background: var(--c-ink, #15171B); color: var(--c-bg, #F6F3ED); padding: 15px 0; }
.ks-marquee__track { display: flex; gap: 52px; width: max-content; animation: ks-slide var(--speed, 30s) linear infinite; }
.ks-marquee:hover .ks-marquee__track { animation-play-state: paused; }
.ks-marquee__item { font-family: var(--f-heading, serif); font-size: 21px; letter-spacing: 2px; white-space: nowrap; display: inline-flex; align-items: center; gap: 52px; }
.ks-marquee__item::after { content: "\2022"; color: var(--c-brass, #A98B54); }
@keyframes ks-slide { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* 9.14 Instagram ızgarası */
.ks-insta { display: grid; grid-template-columns: repeat(var(--cols, 6), minmax(0, 1fr)); gap: 2px; }
.ks-insta__item { position: relative; aspect-ratio: 1 / 1; overflow: hidden; display: block; }
.ks-insta__item img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease); }
.ks-insta__item:hover img { transform: scale(1.07); }
.ks-insta__item::after {
  content: ""; position: absolute; inset: 0;
  background: rgba(21,23,27,.28);
  opacity: 0; transition: opacity .25s var(--ease);
}
.ks-insta__item:hover::after { opacity: 1; }

/* 9.15 Geri sayımlı kampanya */
.ks-count { background: var(--c-ink, #15171B); color: var(--c-bg, #F6F3ED); text-align: center; }
.ks-count__clock { display: flex; justify-content: center; gap: clamp(12px, 2vw, 30px); margin: 28px 0 30px; }
.ks-count__unit { min-width: 74px; }
.ks-count__num {
  font-family: var(--f-heading, serif);
  font-size: clamp(30px, 4.4vw, 54px);
  line-height: 1;
  font-variant-numeric: tabular-nums;
  color: var(--c-brass, #A98B54);
}
.ks-count__lab { display: block; margin-top: 8px; font-size: 10px; letter-spacing: 2px; text-transform: uppercase; opacity: .72; }

/* 9.16 Müşteri yorumları */
.ks-testi { display: grid; grid-template-columns: repeat(var(--cols, 3), minmax(0, 1fr)); gap: 1px; background: var(--c-line, #E3DCD0); border: 1px solid var(--c-line, #E3DCD0); }
.ks-testi__item { background: var(--c-bg, #F6F3ED); padding: clamp(24px, 2.6vw, 38px); display: flex; flex-direction: column; gap: 14px; }
.ks-testi__text { font-family: var(--f-heading, serif); font-size: 19px; line-height: 1.42; margin: 0; }
.ks-testi__who { margin-top: auto; font-size: 11px; letter-spacing: var(--label-tracking, 2px); text-transform: uppercase; color: var(--c-smoke, #6B6862); }

/* ---------------------------------------------------------
   10. MAĞAZA / LİSTELEME
   --------------------------------------------------------- */
.ks-crumbs { display: flex; flex-wrap: wrap; gap: 8px; font-size: 11px; letter-spacing: 1px; text-transform: uppercase; color: var(--c-smoke, #6B6862); padding-block: 20px; }
.ks-crumbs a:hover { color: var(--c-ink, #15171B); }
.ks-crumbs__sep { opacity: .5; }

.ks-pagehead { padding-block: clamp(24px, 4vw, 56px); border-bottom: 1px solid var(--c-line, #E3DCD0); }
.ks-pagehead--center { text-align: center; }
.ks-pagehead__count { margin-top: 12px; font-size: 11px; letter-spacing: var(--label-tracking, 2px); text-transform: uppercase; color: var(--c-smoke, #6B6862); }

.ks-shop { display: grid; grid-template-columns: 250px minmax(0, 1fr); gap: clamp(24px, 3vw, 54px); align-items: start; padding-block: clamp(24px, 3vw, 44px); }
.ks-shop--nosidebar { grid-template-columns: minmax(0, 1fr); }

.ks-filters { position: sticky; top: 96px; display: flex; flex-direction: column; gap: 26px; }
.ks-filter__title { font-size: 11px; font-weight: 500; letter-spacing: var(--label-tracking, 2px); text-transform: uppercase; margin: 0 0 13px; padding-bottom: 11px; border-bottom: 1px solid var(--c-line, #E3DCD0); }
.ks-filter__list { display: flex; flex-direction: column; gap: 9px; }
.ks-filter__link { font-size: 13.5px; color: var(--c-smoke, #6B6862); transition: color .2s var(--ease), padding-left .2s var(--ease); }
.ks-filter__link:hover, .ks-filter__link.is-active { color: var(--c-ink, #15171B); padding-left: 4px; }
.ks-filter__link.is-active { font-weight: 500; }
.ks-filter__swatches { display: flex; flex-wrap: wrap; gap: 8px; }
.ks-filter__swatch { width: 26px; height: 26px; border: 1px solid var(--c-line, #E3DCD0); display: grid; place-items: center; font-size: 10px; }
.ks-filter__swatch.is-active { outline: 1px solid var(--c-ink, #15171B); outline-offset: 2px; }
.ks-filter__price { display: flex; align-items: center; gap: 8px; }
.ks-filter__price input { width: 100%; padding: 9px 10px; border: 1px solid var(--c-line, #E3DCD0); font-size: 13px; background: var(--c-surface, #fff); }

.ks-toolbar {
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; flex-wrap: wrap;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--c-line, #E3DCD0);
  margin-bottom: 26px;
}
.ks-toolbar__left { display: flex; align-items: center; gap: 14px; }
.ks-toolbar__count { font-size: 11px; letter-spacing: var(--label-tracking, 2px); text-transform: uppercase; color: var(--c-smoke, #6B6862); }
.ks-toolbar__sort { display: flex; align-items: center; gap: 10px; }
.ks-toolbar__sort select { padding: 9px 34px 9px 12px; border: 1px solid var(--c-line, #E3DCD0); background-color: var(--c-surface, #fff); font-size: 12.5px; }
.ks-filter-toggle { display: none; }

.ks-empty { text-align: center; padding: clamp(48px, 8vw, 110px) 20px; }
.ks-empty__icon { width: 54px; height: 54px; margin: 0 auto 22px; color: var(--c-brass, #A98B54); }
.ks-empty__icon svg { width: 100%; height: 100%; }
.ks-empty__title { font-family: var(--f-heading, serif); font-size: clamp(23px, 3vw, 33px); margin: 0 0 12px; }
.ks-empty__text { color: var(--c-smoke, #6B6862); margin: 0 0 26px; }

.ks-pagination { display: flex; justify-content: center; gap: 7px; margin-top: clamp(34px, 4vw, 58px); flex-wrap: wrap; }
.ks-pagination a, .ks-pagination span {
  min-width: 42px; height: 42px;
  display: grid; place-items: center;
  padding: 0 12px;
  border: 1px solid var(--c-line, #E3DCD0);
  font-size: 13px;
  font-variant-numeric: tabular-nums;
  transition: background .2s var(--ease), color .2s var(--ease), border-color .2s var(--ease);
}
.ks-pagination a:hover { border-color: var(--c-ink, #15171B); }
.ks-pagination .is-current { background: var(--c-ink, #15171B); color: var(--c-bg, #F6F3ED); border-color: var(--c-ink, #15171B); }
.ks-pagination .is-disabled { opacity: .38; pointer-events: none; }

/* ---------------------------------------------------------
   11. ÜRÜN DETAY
   --------------------------------------------------------- */
.ks-pdp { display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(0, .85fr); gap: clamp(24px, 3.4vw, 68px); align-items: start; padding-block: clamp(20px, 3vw, 40px); }

.ks-gal { display: flex; flex-direction: column; gap: 10px; }
.ks-gal--thumbs { flex-direction: row-reverse; }
.ks-gal__main { flex: 1; min-width: 0; background: var(--c-veil, #EDE8DF); overflow: hidden; aspect-ratio: 3 / 4; }
.ks-gal__main img { width: 100%; height: 100%; object-fit: cover; }
.ks-gal__thumbs { display: flex; gap: 10px; flex-wrap: wrap; }
.ks-gal--thumbs .ks-gal__thumbs { flex-direction: column; flex-wrap: nowrap; width: 84px; flex: none; }
.ks-gal__thumb { width: 84px; aspect-ratio: 3 / 4; overflow: hidden; background: var(--c-veil, #EDE8DF); opacity: .55; transition: opacity .2s var(--ease); }
.ks-gal__thumb.is-active, .ks-gal__thumb:hover { opacity: 1; }
.ks-gal__thumb img { width: 100%; height: 100%; object-fit: cover; }
.ks-gal__stack { display: flex; flex-direction: column; gap: 10px; }
.ks-gal__stack img { width: 100%; }

.ks-buy { position: relative; }
.ks-buy.is-sticky { position: sticky; top: 96px; }
.ks-buy__brand { font-size: 11px; letter-spacing: var(--label-tracking, 2px); text-transform: uppercase; color: var(--c-brass, #A98B54); margin-bottom: 12px; display: inline-block; }
.ks-buy__title { font-family: var(--f-heading, serif); font-weight: var(--heading-weight, 500); font-size: clamp(27px, 3.4vw, 42px); line-height: 1.1; margin: 0 0 14px; }
.ks-buy__meta { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; margin-bottom: 20px; font-size: 12px; color: var(--c-smoke, #6B6862); }
.ks-buy__tags { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 20px; }
.ks-buy__tag { display: inline-flex; align-items: center; padding: 5px 12px; border: 1px solid var(--c-line, #E3DCD0); border-radius: 999px; font-size: 11px; font-weight: 600; color: var(--c-smoke, #6B6862); }
.ks-buy__price { display: flex; align-items: baseline; gap: 12px; margin-bottom: 8px; }
.ks-buy__price ins { text-decoration: none; font-family: var(--f-heading, serif); font-size: clamp(25px, 3vw, 34px); color: var(--c-sale, #8C2F2A); }
.ks-buy__price .ks-buy__now { font-family: var(--f-heading, serif); font-size: clamp(25px, 3vw, 34px); }
.ks-buy__price del { color: var(--c-smoke, #6B6862); font-size: 16px; }
.ks-buy__save { font-size: 11px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--c-sale, #8C2F2A); margin-bottom: 20px; }
.ks-buy__excerpt { color: var(--c-smoke, #6B6862); font-size: 14.5px; margin-bottom: 24px; padding-bottom: 24px; border-bottom: 1px solid var(--c-line, #E3DCD0); }

.ks-opt { margin-bottom: 22px; }
.ks-opt__head { display: flex; align-items: baseline; justify-content: space-between; margin-bottom: 11px; }
.ks-opt__name { font-size: 11px; font-weight: 500; letter-spacing: var(--label-tracking, 2px); text-transform: uppercase; }
.ks-opt__picked { font-size: 12.5px; color: var(--c-smoke, #6B6862); }
.ks-opt__list { display: flex; flex-wrap: wrap; gap: 8px; }
.ks-opt__btn {
  min-width: 48px;
  padding: 11px 15px;
  border: 1px solid var(--c-line, #E3DCD0);
  background: var(--c-surface, #fff);
  font-size: 12.5px;
  transition: border-color .2s var(--ease), background .2s var(--ease), color .2s var(--ease);
}
.ks-opt__btn:hover { border-color: var(--c-ink, #15171B); }
.ks-opt__btn.is-active { background: var(--c-ink, #15171B); color: var(--c-bg, #F6F3ED); border-color: var(--c-ink, #15171B); }
.ks-opt__btn.is-out { opacity: .4; text-decoration: line-through; cursor: not-allowed; }
.ks-opt__color { width: 38px; height: 38px; min-width: 0; padding: 0; border-radius: 999px; position: relative; }
.ks-opt__color.is-active { outline: 1px solid var(--c-ink, #15171B); outline-offset: 3px; }
.ks-opt__img { width: 54px; height: 54px; min-width: 0; padding: 0; overflow: hidden; }
.ks-opt__img img { width: 100%; height: 100%; object-fit: cover; }

.ks-qty { display: inline-flex; align-items: center; border: 1px solid var(--c-line, #E3DCD0); }
.ks-qty button { width: 44px; height: 48px; display: grid; place-items: center; font-size: 17px; }
.ks-qty button:hover { background: var(--c-veil, #EDE8DF); }
.ks-qty input { width: 52px; height: 48px; border: 0; text-align: center; background: none; font-size: 14px; font-variant-numeric: tabular-nums; }

.ks-buy__actions { display: flex; gap: 10px; margin: 22px 0 18px; }
.ks-buy__actions .ks-btn { flex: 1; }
.ks-buy__favbtn { width: 52px; flex: none; display: grid; place-items: center; border: 1px solid var(--c-line, #E3DCD0); transition: color .2s, border-color .2s; }
.ks-buy__favbtn:hover, .ks-buy__favbtn.is-fav, .ks-buy__favbtn.is-active { color: var(--c-sale, #8C2F2A); border-color: var(--c-sale, #8C2F2A); }
.ks-buy__favbtn svg { width: 19px; height: 19px; }
.ks-buy__favbtn.is-fav svg, .ks-buy__favbtn.is-active svg { fill: currentColor; }

.ks-stock { display: inline-flex; align-items: center; gap: 8px; font-size: 12px; margin-bottom: 18px; }
.ks-stock::before { content: ""; width: 7px; height: 7px; border-radius: 999px; background: currentColor; }
.ks-stock--in  { color: #3B6B3F; }
.ks-stock--low { color: var(--c-brass, #A98B54); }
.ks-stock--out { color: var(--c-sale, #8C2F2A); }

.ks-share { display: flex; align-items: center; gap: 12px; margin-top: 20px; padding-top: 20px; border-top: 1px solid var(--c-line, #E3DCD0); }
.ks-share__lab { font-size: 10.5px; letter-spacing: var(--label-tracking, 2px); text-transform: uppercase; color: var(--c-smoke, #6B6862); }
.ks-share a { width: 34px; height: 34px; display: grid; place-items: center; border: 1px solid var(--c-line, #E3DCD0); border-radius: 999px; transition: background .2s, color .2s, border-color .2s; }
.ks-share a:hover { background: var(--c-ink, #15171B); color: var(--c-bg, #F6F3ED); border-color: var(--c-ink, #15171B); }
.ks-share svg { width: 15px; height: 15px; }

/* Dijital ürün bilgisi */
.ks-digital { display: flex; align-items: center; gap: 12px; padding: 14px 16px; background: var(--c-veil, #EDE8DF); margin-bottom: 20px; font-size: 13px; }
.ks-digital svg { width: 20px; height: 20px; flex: none; color: var(--c-brass, #A98B54); }

/* Sekmeler */
.ks-tabs { border-top: 1px solid var(--c-line, #E3DCD0); padding-top: clamp(30px, 4vw, 56px); }
.ks-tabs__nav { display: flex; gap: 30px; border-bottom: 1px solid var(--c-line, #E3DCD0); margin-bottom: 30px; flex-wrap: wrap; }
.ks-tabs__btn {
  padding: 0 0 15px;
  font-size: 11.5px; font-weight: 500;
  letter-spacing: var(--label-tracking, 2px);
  text-transform: uppercase;
  color: var(--c-smoke, #6B6862);
  border-bottom: 1px solid transparent;
  margin-bottom: -1px;
  transition: color .2s var(--ease), border-color .2s var(--ease);
}
.ks-tabs__btn:hover { color: var(--c-ink, #15171B); }
.ks-tabs__btn.is-active { color: var(--c-ink, #15171B); border-color: var(--c-ink, #15171B); }
.ks-tabs__panel { display: none; }
.ks-tabs__panel.is-active { display: block; }
.ks-spec { max-width: 720px; }
.ks-spec__row { display: grid; grid-template-columns: 200px minmax(0, 1fr); gap: 16px; padding: 13px 0; border-bottom: 1px solid var(--c-line, #E3DCD0); font-size: 14px; }
.ks-spec__row dt { color: var(--c-smoke, #6B6862); margin: 0; }
.ks-spec__row dd { margin: 0; }

/* Yorumlar */
.ks-reviews { display: flex; flex-direction: column; gap: 22px; max-width: 780px; }
.ks-review { padding-bottom: 22px; border-bottom: 1px solid var(--c-line, #E3DCD0); }
.ks-review:last-child { border-bottom: 0; }
.ks-review__top { display: flex; align-items: center; justify-content: space-between; gap: 14px; margin-bottom: 9px; flex-wrap: wrap; }
.ks-review__who { font-size: 12px; font-weight: 500; letter-spacing: 1px; text-transform: uppercase; }
.ks-review__date { font-size: 11.5px; color: var(--c-smoke, #6B6862); }
.ks-review__title { font-family: var(--f-heading, serif); font-size: 19px; margin: 0 0 7px; }
.ks-review__body { font-size: 14px; color: var(--c-smoke, #6B6862); margin: 0; }

/* ---------------------------------------------------------
   12. SEPET
   --------------------------------------------------------- */
.ks-cart { display: grid; grid-template-columns: minmax(0, 1fr) 380px; gap: clamp(24px, 3vw, 56px); align-items: start; padding-block: clamp(24px, 3vw, 48px); }
.ks-cart__row {
  display: grid;
  grid-template-columns: 108px minmax(0, 1fr) auto auto;
  gap: 20px; align-items: center;
  padding: 22px 0;
  border-bottom: 1px solid var(--c-line, #E3DCD0);
}
.ks-cart__row:first-child { border-top: 1px solid var(--c-line, #E3DCD0); }
.ks-cart__img { width: 108px; aspect-ratio: 3 / 4; object-fit: cover; background: var(--c-veil, #EDE8DF); }
.ks-cart__name { font-family: var(--f-heading, serif); font-size: 20px; margin: 0 0 6px; }
.ks-cart__var { font-size: 12px; color: var(--c-smoke, #6B6862); margin: 0 0 4px; }
.ks-cart__unit { font-size: 13px; color: var(--c-smoke, #6B6862); }
.ks-cart__line { font-size: 16px; white-space: nowrap; font-variant-numeric: tabular-nums; }
.ks-cart__rm { width: 36px; height: 36px; display: grid; place-items: center; color: var(--c-smoke, #6B6862); transition: color .2s; }
.ks-cart__rm:hover { color: var(--c-sale, #8C2F2A); }
.ks-cart__rm svg { width: 17px; height: 17px; }
.ks-cart__custom { margin-top: 8px; font-size: 12px; color: var(--c-smoke, #6B6862); }
.ks-cart__custom span { display: block; }

.ks-summary { background: var(--c-veil, #EDE8DF); padding: clamp(22px, 2.4vw, 34px); position: sticky; top: 96px; }
.ks-summary__title { font-family: var(--f-heading, serif); font-size: 23px; margin: 0 0 20px; padding-bottom: 16px; border-bottom: 1px solid var(--c-line, #E3DCD0); }
.ks-summary__row { display: flex; justify-content: space-between; gap: 14px; font-size: 14px; margin-bottom: 12px; }
.ks-summary__row--total {
  margin-top: 18px; padding-top: 16px;
  border-top: 1px solid var(--c-line, #E3DCD0);
  font-family: var(--f-heading, serif);
  font-size: 21px;
}
.ks-summary__row--save { color: var(--c-sale, #8C2F2A); }
.ks-summary__note { margin-top: 14px; font-size: 12px; color: var(--c-smoke, #6B6862); text-align: center; }
.ks-summary .ks-btn { margin-top: 20px; }

.ks-coupon { margin: 18px 0; }
.ks-coupon__toggle { font-size: 12px; letter-spacing: 1px; text-transform: uppercase; border-bottom: 1px solid currentColor; padding-bottom: 2px; }
.ks-coupon__form { display: flex; gap: 8px; margin-top: 13px; }
.ks-coupon__form input { flex: 1; min-width: 0; padding: 12px 13px; border: 1px solid var(--c-line, #E3DCD0); background: var(--c-surface, #fff); font-size: 13px; }
.ks-coupon__applied { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 11px 13px; background: var(--c-surface, #fff); border: 1px dashed var(--c-brass, #A98B54); font-size: 13px; margin-top: 12px; }

/* ---------------------------------------------------------
   13. ÖDEME
   --------------------------------------------------------- */
.ks-co { display: grid; grid-template-columns: minmax(0, 1fr) 400px; gap: clamp(24px, 3vw, 56px); align-items: start; padding-block: clamp(24px, 3vw, 44px); }
.ks-co__col { min-width: 0; }
.ks-co__side { align-self: stretch; }
.ks-co__card { background: var(--c-surface, #fff); border: 1px solid var(--c-line, #E3DCD0); padding: clamp(22px, 2.4vw, 32px); margin-bottom: 18px; }
.ks-co__step { display: flex; align-items: center; gap: 13px; margin: 0 0 22px; padding-bottom: 15px; border-bottom: 1px solid var(--c-line, #E3DCD0); }
.ks-co__no {
  width: 28px; height: 28px; flex: none;
  display: grid; place-items: center;
  border: 1px solid var(--c-ink, #15171B);
  border-radius: 999px;
  font-family: var(--f-heading, serif);
  font-size: 13px;
}
.ks-co__steptitle { font-family: var(--f-heading, serif); font-weight: var(--heading-weight, 500); font-size: 22px; margin: 0; }
.ks-co__notice { display: flex; align-items: center; gap: 10px; padding: 13px 16px; background: var(--c-veil, #EDE8DF); font-size: 13px; margin-bottom: 16px; flex-wrap: wrap; }
.ks-co__notice a, .ks-co__notice button { font-weight: 500; border-bottom: 1px solid currentColor; }

.ks-co__seg { display: flex; gap: 9px; margin-bottom: 20px; }
.ks-co__segbtn {
  flex: 1;
  padding: 13px 16px;
  border: 1px solid var(--c-line, #E3DCD0);
  background: var(--c-surface, #fff);
  font-size: 11.5px; font-weight: 500;
  letter-spacing: var(--label-tracking, 2px);
  text-transform: uppercase;
  transition: background .2s var(--ease), color .2s var(--ease), border-color .2s var(--ease);
}
.ks-co__segbtn:hover { border-color: var(--c-ink, #15171B); }
.ks-co__segbtn.is-active { background: var(--c-ink, #15171B); color: var(--c-bg, #F6F3ED); border-color: var(--c-ink, #15171B); }

.ks-co__pay { display: flex; flex-direction: column; gap: 10px; }
.ks-co__payopt {
  display: flex; align-items: center; gap: 13px;
  padding: 16px 18px;
  border: 1px solid var(--c-line, #E3DCD0);
  cursor: pointer;
  transition: border-color .2s var(--ease), background .2s var(--ease);
}
.ks-co__payopt:hover { border-color: var(--c-ink, #15171B); }
.ks-co__payopt:has(input:checked) { border-color: var(--c-ink, #15171B); background: var(--c-veil, #EDE8DF); }
.ks-co__payopt input { width: 17px; height: 17px; flex: none; accent-color: var(--c-ink, #15171B); }
.ks-co__payinfo { display: flex; flex-direction: column; gap: 3px; min-width: 0; }
.ks-co__payname { font-size: 13.5px; font-weight: 500; }
.ks-co__paydesc { font-size: 12px; color: var(--c-smoke, #6B6862); line-height: 1.45; }
.ks-co__paylogo { margin-left: auto; max-height: 22px; width: auto; flex: none; }

.ks-co__items { display: flex; flex-direction: column; margin-bottom: 18px; }
.ks-co__item { display: flex; align-items: center; gap: 13px; padding: 12px 0; border-bottom: 1px solid var(--c-line, #E3DCD0); }
.ks-co__item:last-child { border-bottom: 0; }
.ks-co__itemimg { width: 58px; aspect-ratio: 3 / 4; object-fit: cover; background: var(--c-veil, #EDE8DF); flex: none; }
.ks-co__itemname { font-size: 13.5px; font-weight: 500; margin: 0 0 3px; }
.ks-co__itemmeta { font-size: 11.5px; color: var(--c-smoke, #6B6862); }
.ks-co__itemprice { margin-left: auto; font-size: 13.5px; white-space: nowrap; font-variant-numeric: tabular-nums; }
.ks-co__secure { display: flex; align-items: center; justify-content: center; gap: 7px; margin-top: 12px; font-size: 11.5px; color: var(--c-smoke, #6B6862); }
.ks-co__secure svg { width: 14px; height: 14px; }

/* Aranabilir il/ilçe seçici */
.ks-cs { position: relative; }
.ks-cs__trigger {
  display: flex; align-items: center; justify-content: space-between; gap: 10px;
  width: 100%; text-align: left;
  padding: 14px 16px;
  background: var(--c-surface, #fff);
  border: 1px solid var(--c-line, #E3DCD0);
  font-size: 14px;
  transition: border-color .2s var(--ease);
}
.ks-cs__trigger[aria-expanded="true"] { border-color: var(--c-ink, #15171B); }
.ks-cs__label { flex: 1; min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.ks-cs__arrow { width: 15px; height: 15px; flex: none; color: var(--c-smoke, #6B6862); transition: transform .2s var(--ease); }
.ks-cs__trigger[aria-expanded="true"] .ks-cs__arrow { transform: rotate(180deg); }
.ks-cs__panel {
  position: absolute; z-index: 320;
  top: calc(100% + 4px); left: 0; right: 0;
  background: var(--c-surface, #fff);
  border: 1px solid var(--c-ink, #15171B);
  box-shadow: 0 14px 34px rgba(21,23,27,.13);
  overflow: hidden;
}
.ks-cs__search { display: block; width: 100%; padding: 11px 14px; border: 0; border-bottom: 1px solid var(--c-line, #E3DCD0); background: var(--c-veil, #EDE8DF); font-size: 13.5px; outline: none; }
.ks-cs__list { max-height: 230px; overflow-y: auto; }
.ks-cs__opt { padding: 10px 14px; font-size: 13.5px; cursor: pointer; transition: background .12s, color .12s; }
.ks-cs__opt:hover, .ks-cs__opt.is-selected { background: var(--c-veil, #EDE8DF); color: var(--c-ink, #15171B); }
.ks-cs__opt.is-hidden { display: none; }

/* ---------------------------------------------------------
   14. HESABIM
   --------------------------------------------------------- */
.ks-acct { display: grid; grid-template-columns: 240px minmax(0, 1fr); gap: clamp(24px, 3vw, 54px); align-items: start; padding-block: clamp(24px, 3vw, 48px); }
.ks-acct__nav { display: flex; flex-direction: column; gap: 2px; position: sticky; top: 96px; }
.ks-acct__link {
  display: flex; align-items: center; gap: 12px;
  padding: 13px 15px;
  font-size: 12px; font-weight: 500;
  letter-spacing: 1.2px; text-transform: uppercase;
  color: var(--c-smoke, #6B6862);
  transition: background .2s var(--ease), color .2s var(--ease);
}
.ks-acct__link svg { width: 17px; height: 17px; flex: none; }
.ks-acct__link:hover { color: var(--c-ink, #15171B); background: var(--c-veil, #EDE8DF); }
.ks-acct__link.is-active { background: var(--c-ink, #15171B); color: var(--c-bg, #F6F3ED); }
.ks-acct__panel { background: var(--c-surface, #fff); border: 1px solid var(--c-line, #E3DCD0); padding: clamp(22px, 2.6vw, 36px); }
.ks-acct__panel + .ks-acct__panel { margin-top: 18px; }
.ks-acct__ptitle { font-family: var(--f-heading, serif); font-size: 25px; margin: 0 0 20px; padding-bottom: 15px; border-bottom: 1px solid var(--c-line, #E3DCD0); }

.ks-stats { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 1px; background: var(--c-line, #E3DCD0); border: 1px solid var(--c-line, #E3DCD0); margin-bottom: 18px; }
.ks-stat { background: var(--c-surface, #fff); padding: 22px; }
.ks-stat__num { font-family: var(--f-heading, serif); font-size: 32px; line-height: 1; }
.ks-stat__lab { display: block; margin-top: 8px; font-size: 10.5px; letter-spacing: var(--label-tracking, 2px); text-transform: uppercase; color: var(--c-smoke, #6B6862); }

.ks-otable { width: 100%; font-size: 13.5px; }
.ks-otable th { text-align: left; padding: 12px 10px; border-bottom: 1px solid var(--c-line, #E3DCD0); font-size: 10.5px; letter-spacing: var(--label-tracking, 2px); text-transform: uppercase; color: var(--c-smoke, #6B6862); font-weight: 500; }
.ks-otable td { padding: 15px 10px; border-bottom: 1px solid var(--c-line, #E3DCD0); }
.ks-otable tr:last-child td { border-bottom: 0; }

.ks-badge {
  display: inline-flex; align-items: center;
  padding: 5px 11px;
  border-radius: 999px;
  font-size: 10.5px; letter-spacing: 1px; text-transform: uppercase;
  background: var(--c-veil, #EDE8DF);
  color: var(--c-smoke, #6B6862);
}
.ks-badge--ok   { background: #EDF4EC; color: #3B6B3F; }
.ks-badge--wait { background: #F7F1E4; color: var(--c-brass, #A98B54); }
.ks-badge--bad  { background: #FBF1F0; color: var(--c-sale, #8C2F2A); }

.ks-addr { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 16px; }
.ks-addr__item { border: 1px solid var(--c-line, #E3DCD0); padding: 20px; position: relative; }
.ks-addr__item.is-default { border-color: var(--c-ink, #15171B); }
.ks-addr__title { font-size: 12px; font-weight: 500; letter-spacing: 1.2px; text-transform: uppercase; margin: 0 0 10px; }
.ks-addr__body { font-size: 13.5px; color: var(--c-smoke, #6B6862); line-height: 1.55; margin: 0 0 14px; }
.ks-addr__acts { display: flex; gap: 12px; font-size: 11.5px; letter-spacing: 1px; text-transform: uppercase; }
.ks-addr__acts button, .ks-addr__acts a { border-bottom: 1px solid currentColor; padding-bottom: 2px; }

/* ---------------------------------------------------------
   15. KİMLİK SAYFALARI
   --------------------------------------------------------- */
.ks-auth { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); min-height: 72vh; }
.ks-auth--single { grid-template-columns: minmax(0, 1fr); }
.ks-auth__aside { position: relative; overflow: hidden; background: var(--c-ink, #15171B); }
.ks-auth__aside img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: .5; }
.ks-auth__asidebody {
  position: relative; z-index: 1;
  height: 100%;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: clamp(30px, 4vw, 64px);
  color: var(--c-bg, #F6F3ED);
}
.ks-auth__asidetitle { font-family: var(--f-heading, serif); font-weight: var(--heading-weight, 500); font-size: clamp(26px, 3.2vw, 42px); line-height: 1.1; margin: 0 0 12px; }
.ks-auth__asidetext { font-size: 14.5px; color: rgba(246,243,237,.76); max-width: 40ch; margin: 0; }
.ks-auth__form { display: flex; align-items: center; justify-content: center; padding: clamp(34px, 5vw, 80px) clamp(20px, 4vw, 48px); }
.ks-auth__inner { width: 100%; max-width: 420px; }
.ks-auth__title { font-family: var(--f-heading, serif); font-weight: var(--heading-weight, 500); font-size: clamp(28px, 3.4vw, 40px); margin: 0 0 10px; }
.ks-auth__lede { color: var(--c-smoke, #6B6862); font-size: 14.5px; margin: 0 0 30px; }
.ks-auth__row { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 22px; flex-wrap: wrap; }
.ks-auth__foot { margin-top: 26px; text-align: center; font-size: 13.5px; color: var(--c-smoke, #6B6862); }
.ks-auth__foot a { color: var(--c-ink, #15171B); border-bottom: 1px solid currentColor; }

.ks-pwd { position: relative; }
.ks-pwd input { padding-right: 46px; }
.ks-pwd__eye { position: absolute; right: 14px; top: 50%; transform: translateY(-50%); color: var(--c-smoke, #6B6862); line-height: 0; }
.ks-pwd__eye:hover { color: var(--c-ink, #15171B); }
.ks-pwd__eye svg { width: 18px; height: 18px; }

.ks-orbar { display: flex; align-items: center; gap: 14px; margin: 26px 0; font-size: 10.5px; letter-spacing: var(--label-tracking, 2px); text-transform: uppercase; color: var(--c-smoke, #6B6862); }
.ks-orbar::before, .ks-orbar::after { content: ""; flex: 1; height: 1px; background: var(--c-line, #E3DCD0); }
.ks-social { display: flex; flex-direction: column; gap: 10px; }
.ks-social__btn {
  display: flex; align-items: center; justify-content: center; gap: 11px;
  padding: 13px;
  border: 1px solid var(--c-line, #E3DCD0);
  font-size: 13px; font-weight: 500;
  transition: border-color .2s var(--ease), background .2s var(--ease);
}
.ks-social__btn:hover { border-color: var(--c-ink, #15171B); background: var(--c-veil, #EDE8DF); }
.ks-social__btn svg { width: 17px; height: 17px; }

/* Doğrulama ve sipariş takibi ekranları */
.ks-note { max-width: 520px; margin: 0 auto; text-align: center; padding: clamp(40px, 6vw, 80px) 0; }
.ks-note__icon { width: 72px; height: 72px; margin: 0 auto 22px; display: grid; place-items: center; border-radius: 999px; background: var(--c-veil, #EDE8DF); color: var(--c-brass, #A98B54); }
.ks-note__icon svg { width: 32px; height: 32px; }
.ks-note__icon--ok  { background: #EDF4EC; color: #3B6B3F; }
.ks-note__icon--bad { background: #FBF1F0; color: var(--c-sale, #8C2F2A); }
.ks-note__title { font-family: var(--f-heading, serif); font-size: clamp(26px, 3.4vw, 38px); margin: 0 0 12px; }
.ks-note__text { color: var(--c-smoke, #6B6862); margin: 0 0 28px; }
.ks-note__acts { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* Sipariş adımları */
.ks-steps { display: flex; gap: 0; margin: 30px 0; }
.ks-steps__i { flex: 1; text-align: center; position: relative; padding-top: 30px; font-size: 11px; letter-spacing: 1px; text-transform: uppercase; color: var(--c-smoke, #6B6862); }
.ks-steps__i::before { content: ""; position: absolute; top: 0; left: 50%; transform: translateX(-50%); width: 15px; height: 15px; border-radius: 999px; border: 1px solid var(--c-line, #E3DCD0); background: var(--c-bg, #F6F3ED); z-index: 2; }
.ks-steps__i::after { content: ""; position: absolute; top: 7px; left: 0; right: 0; height: 1px; background: var(--c-line, #E3DCD0); }
.ks-steps__i:first-child::after { left: 50%; }
.ks-steps__i:last-child::after { right: 50%; }
.ks-steps__i.is-done { color: var(--c-ink, #15171B); }
.ks-steps__i.is-done::before { background: var(--c-ink, #15171B); border-color: var(--c-ink, #15171B); }

/* ---------------------------------------------------------
   16. BLOG (GÜNLÜK)
   --------------------------------------------------------- */
.ks-blog { display: grid; grid-template-columns: minmax(0, 1fr) 280px; gap: clamp(24px, 3vw, 56px); align-items: start; padding-block: clamp(24px, 3vw, 48px); }
.ks-blog--full { grid-template-columns: minmax(0, 1fr); }
.ks-blog__side { position: sticky; top: 96px; display: flex; flex-direction: column; gap: 28px; }
.ks-blog__hero { position: relative; aspect-ratio: 21 / 9; overflow: hidden; margin-bottom: clamp(24px, 3vw, 40px); }
.ks-blog__hero img { width: 100%; height: 100%; object-fit: cover; }
.ks-article { max-width: 760px; margin: 0 auto; padding-block: clamp(24px, 3vw, 48px); }
.ks-article__meta { display: flex; gap: 14px; flex-wrap: wrap; font-size: 10.5px; letter-spacing: var(--label-tracking, 2px); text-transform: uppercase; color: var(--c-brass, #A98B54); margin-bottom: 16px; }
.ks-article__title { font-family: var(--f-heading, serif); font-weight: var(--heading-weight, 500); font-size: clamp(30px, 4.4vw, 54px); line-height: 1.08; margin: 0 0 20px; text-wrap: balance; }
.ks-article__lede { font-size: 18px; color: var(--c-smoke, #6B6862); line-height: 1.6; margin: 0 0 30px; padding-bottom: 26px; border-bottom: 1px solid var(--c-line, #E3DCD0); }
.ks-share-row { display: flex; align-items: center; gap: 12px; margin-top: 34px; padding-top: 26px; border-top: 1px solid var(--c-line, #E3DCD0); }

/* ---------------------------------------------------------
   17. İLETİŞİM VE STATİK SAYFA
   --------------------------------------------------------- */
.ks-contact { display: grid; grid-template-columns: 340px minmax(0, 1fr); gap: clamp(24px, 3vw, 56px); align-items: start; padding-block: clamp(24px, 3vw, 48px); }
.ks-contact__info { display: flex; flex-direction: column; gap: 24px; }
.ks-contact__item { display: flex; gap: 14px; }
.ks-contact__icon { width: 22px; height: 22px; flex: none; color: var(--c-brass, #A98B54); }
.ks-contact__icon svg { width: 100%; height: 100%; }
.ks-contact__lab { font-size: 10.5px; letter-spacing: var(--label-tracking, 2px); text-transform: uppercase; color: var(--c-smoke, #6B6862); margin: 0 0 5px; }
.ks-contact__val { font-size: 14.5px; margin: 0; }
.ks-map { width: 100%; aspect-ratio: 16 / 7; border: 1px solid var(--c-line, #E3DCD0); }
.ks-map iframe { width: 100%; height: 100%; border: 0; display: block; }

/* ---------------------------------------------------------
   18. 404

   Kassandra teması burada en yerinde: gördüğünü söyleyen ama
   inanılmayan kâhin. Sayfa bulunamadığında metin bunu üstlenir.
   --------------------------------------------------------- */
.ks-404 { text-align: center; padding-block: clamp(60px, 10vw, 140px); }
.ks-404__num { font-family: var(--f-heading, serif); font-size: clamp(80px, 16vw, 200px); line-height: .9; color: var(--c-brass, #A98B54); margin: 0 0 16px; }
.ks-404__title { font-family: var(--f-heading, serif); font-size: clamp(24px, 3.4vw, 38px); margin: 0 0 14px; }
.ks-404__text { color: var(--c-smoke, #6B6862); max-width: 46ch; margin: 0 auto 30px; }
.ks-404__acts { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ---------------------------------------------------------
   19. FOOTER
   --------------------------------------------------------- */
.ks-footer { background: var(--c-ink, #15171B); color: var(--c-bg, #F6F3ED); margin-top: auto; }
.ks-footer__top { padding-block: clamp(40px, 5vw, 72px); }
.ks-footer__cols { display: grid; grid-template-columns: 1.4fr repeat(3, 1fr); gap: clamp(24px, 3vw, 52px); }
.ks-footer__brand { font-family: var(--f-heading, serif); font-size: 27px; letter-spacing: 6px; text-transform: uppercase; margin: 0 0 16px; }
.ks-footer__about { font-size: 13.5px; color: rgba(246,243,237,.66); line-height: 1.65; max-width: 40ch; margin: 0 0 20px; }
.ks-footer__ctitle { font-size: 10.5px; font-weight: 500; letter-spacing: var(--label-tracking, 2px); text-transform: uppercase; color: var(--c-brass, #A98B54); margin: 0 0 16px; }
.ks-footer__list { display: flex; flex-direction: column; gap: 11px; }
.ks-footer__list a { font-size: 13.5px; color: rgba(246,243,237,.72); transition: color .2s var(--ease), padding-left .2s var(--ease); }
.ks-footer__list a:hover { color: var(--c-bg, #F6F3ED); padding-left: 4px; }
.ks-footer__social { display: flex; gap: 9px; }
.ks-footer__social a { width: 36px; height: 36px; display: flex; align-items: center; justify-content: center; line-height: 0; border: 1px solid rgba(246,243,237,.24); border-radius: 999px; transition: background .2s, color .2s, border-color .2s; }
.ks-footer__social a:hover { background: var(--c-bg, #F6F3ED); color: var(--c-ink, #15171B); border-color: var(--c-bg, #F6F3ED); }
.ks-footer__social svg { display: block; width: 16px; height: 16px; flex-shrink: 0; }
.ks-footer__bottom {
  border-top: 1px solid rgba(246,243,237,.14);
  padding-block: 22px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; flex-wrap: wrap;
  font-size: 12px; color: rgba(246,243,237,.6);
}
.ks-footer__pay { display: flex; gap: 8px; align-items: center; }
.ks-footer__pay img { height: 22px; width: auto; opacity: .8; }

/* WhatsApp ve yukarı çık */
.ks-float { position: fixed; right: 20px; bottom: 20px; z-index: 800; display: flex; flex-direction: column; gap: 10px; }
.ks-float a, .ks-float button {
  width: 46px; height: 46px;
  display: grid; place-items: center;
  border-radius: 999px;
  background: var(--c-ink, #15171B);
  color: var(--c-bg, #F6F3ED);
  box-shadow: 0 6px 20px rgba(21,23,27,.22);
  transition: transform .2s var(--ease), background .2s var(--ease);
}
.ks-float a:hover, .ks-float button:hover { transform: translateY(-2px); background: var(--c-brass, #A98B54); }
.ks-float svg { width: 20px; height: 20px; }
.ks-float__wa { background: #25D366 !important; color: #fff !important; }
.ks-totop { opacity: 0; visibility: hidden; transition: opacity .25s var(--ease), visibility .25s, transform .2s var(--ease), background .2s; }
.ks-totop.is-on { opacity: 1; visibility: visible; }

/* ---------------------------------------------------------
   20. CANLI ARAMA PANELİ — tema uyarlaması
   Taban stiller themes/shared/live-search.css icindedir;
   burada sadece renk ve kose degiskenleri eslenir.
   --------------------------------------------------------- */
.ls-panel {
  --ls-bg:     var(--c-surface, #FFFFFF);
  --ls-ink:    var(--c-ink, #15171B);
  --ls-muted:  var(--c-smoke, #6B6862);
  --ls-line:   var(--c-line, #E3DCD0);
  --ls-accent: var(--c-ink, #15171B);
  --ls-hover:  var(--c-veil, #EDE8DF);
  --ls-radius: var(--radius, 0px);
}
.ls-item__name { font-family: var(--f-heading, serif); font-size: 16px; }
.ls-more { font-size: 10.5px; letter-spacing: var(--label-tracking, 2px); text-transform: uppercase; }

/* ---------------------------------------------------------
   21. HAREKET
   --------------------------------------------------------- */
.ks-reveal { opacity: 0; transform: translateY(22px); }
body.ks-reveal-on .ks-reveal { transition: opacity var(--reveal-speed, 700ms) var(--ease), transform var(--reveal-speed, 700ms) var(--ease); }
body.ks-reveal-on .ks-reveal.is-in, body:not(.ks-reveal-on) .ks-reveal { opacity: 1; transform: none; }
.ks-stagger > * { transition-delay: calc(var(--i, 0) * 70ms); }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; scroll-behavior: auto !important; }
  .ks-reveal { opacity: 1 !important; transform: none !important; }
}

/* ---------------------------------------------------------
   22. DUYARLI DÜZEN
   --------------------------------------------------------- */
@media (max-width: 1200px) {
  .ks-grid { --cols: 3; }
  .ks-insta { --cols: 4; }
  .ks-brands { --cols: 4; }
  .ks-footer__cols { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 1024px) {
  .ks-shop { grid-template-columns: minmax(0, 1fr); }
  .ks-filters { position: static; display: none; }
  .ks-filters.is-open { display: flex; }
  .ks-filter-toggle { display: inline-flex; }
  .ks-cart { grid-template-columns: minmax(0, 1fr); }
  .ks-co { grid-template-columns: minmax(0, 1fr); }
  .ks-acct { grid-template-columns: minmax(0, 1fr); }
  .ks-acct__nav { position: static; flex-direction: row; overflow-x: auto; gap: 4px; }
  .ks-acct__link { white-space: nowrap; }
  .ks-blog { grid-template-columns: minmax(0, 1fr); }
  .ks-blog__side { position: static; }
  .ks-contact { grid-template-columns: minmax(0, 1fr); }
  .ks-summary, .ks-buy.is-sticky { position: static; }
  .ks-pdp { grid-template-columns: minmax(0, 1fr); }
  .ks-gal--thumbs { flex-direction: column; }
  .ks-gal--thumbs .ks-gal__thumbs { flex-direction: row; width: auto; flex-wrap: wrap; }
}

@media (max-width: 900px) {
  .ks-nav { display: none; }
  .ks-burger { display: grid; }
  .ks-header__bar { grid-template-columns: auto 1fr auto; }
  .ks-header__nav { justify-self: start; }
  .ks-header__logo { justify-self: center; }
  .ks-split { grid-template-columns: minmax(0, 1fr); }
  .ks-split--reverse .ks-split__media { order: 0; }
  .ks-split__media { min-height: 300px; }
  .ks-oracle__grid { --cols: 2; }
  .ks-testi { --cols: 2; }
  .ks-journal { --cols: 2; }
  .ks-values { --cols: 2; }
  .ks-cats { --cols: 2; }
  .ks-auth { grid-template-columns: minmax(0, 1fr); }
  .ks-auth__aside { display: none; }
  .ks-spec__row { grid-template-columns: minmax(0, 1fr); gap: 4px; }
}

@media (max-width: 680px) {
  .ks-grid { --cols: 2; }
  .ks-insta { --cols: 3; }
  .ks-brands { --cols: 3; }
  .ks-oracle__grid { --cols: 1; }
  .ks-testi { --cols: 1; }
  .ks-journal { --cols: 1; }
  .ks-values { --cols: 1; }
  .ks-pair { --cols: 1; }
  .ks-footer__cols { grid-template-columns: 1fr; }
  .ks-field-row, .ks-field-row--3 { grid-template-columns: minmax(0, 1fr); }
  .ks-cart__row { grid-template-columns: 82px minmax(0, 1fr) auto; row-gap: 12px; }
  .ks-cart__img { width: 82px; }
  .ks-cart__line { grid-column: 2 / -1; }
  .ks-co__seg { flex-direction: column; }
  .ks-count__clock { gap: 10px; }
  .ks-count__unit { min-width: 60px; }
  .ks-logo { font-size: 20px; letter-spacing: 4px; }
  .ks-float { right: 14px; bottom: 14px; }
}

@media (max-width: 420px) {
  .ks-grid { --cols: 1; }
  .ks-cats { --cols: 1; }
  .ks-insta { --cols: 2; }
  .ks-brands { --cols: 2; }
}

/* ---------------------------------------------------------
   23. YAZDIRMA
   --------------------------------------------------------- */
@media print {
  .ks-header-wrap, .ks-footer, .ks-float, .ks-drawer, .ks-drawer-backdrop,
  .ks-search-overlay, .ks-ann { display: none !important; }
  body.ks { background: #fff; color: #000; }
  .ks-wrap { padding-inline: 0; }
}

/* ---------------------------------------------------------
   24. BİLDİRİM ŞERİDİ (toast)
   theme.js içindeki showToast() tarafından oluşturulur.
   Şerit bir arayüz öğesi olduğu için başlık serifi değil
   gövde ailesi kullanır.
   --------------------------------------------------------- */
.ks-toasts {
  position: fixed;
  right: 20px;
  /* .ks-float (46px yüzen buton, bottom:20px) ile aynı köşeyi paylaşıyor;
     şerit onun ÜSTÜNDE durmalı, yoksa butonu örter. */
  bottom: 80px;
  z-index: 9000;
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: flex-end;
  pointer-events: none;
}

.ks-toast {
  pointer-events: auto;
  cursor: pointer;
  max-width: min(360px, calc(100vw - 40px));
  padding: 12px 18px;
  border: 1px solid var(--c-line);
  border-left-width: 3px;
  background: var(--c-surface);
  color: var(--c-ink);
  font-family: var(--f-body);
  font-size: 14px;
  line-height: 1.45;
  box-shadow: 0 8px 28px rgba(21, 23, 27, .14);
  opacity: 0;
  transform: translateY(10px);
  transition: opacity .25s ease, transform .25s ease;
}

.ks-toast.is-acik { opacity: 1; transform: translateY(0); }

.ks-toast--olumlu { border-left-color: var(--c-brass); }
.ks-toast--hata   { border-left-color: var(--c-sale); color: var(--c-sale); }
.ks-toast--uyari  { border-left-color: var(--c-smoke); }

@media (max-width: 560px) {
  .ks-toasts { right: 14px; left: 14px; bottom: 74px; align-items: stretch; }
  .ks-toast  { max-width: none; }
}

@media (prefers-reduced-motion: reduce) {
  .ks-toast { transition: opacity .01ms; transform: none; }
}

/* Özel alan zengin metni (Quill ql-content) — tablo hücresinde taşma/boşluk olmasın */
.ql-content{font-size:inherit;line-height:1.6}
.ql-content p{margin:0 0 8px}
.ql-content p:last-child{margin-bottom:0}
.ql-content ul,.ql-content ol{margin:0 0 8px;padding-left:20px}
.ql-content img{max-width:100%;height:auto}
.ql-content a{text-decoration:underline}

/* Alt seritteki Cerez Politikasi baglantisi. Footer link sutunlari theme_mod
   oldugu icin magaza sahibi duzenleyince kaybolabiliyor, alt serit duzenlenemez. */
.ks-footer__bottom .ks-footer__legal { color: rgba(246,243,237,.6); text-decoration: underline; text-underline-offset: 3px; }
.ks-footer__bottom .ks-footer__legal:hover { color: rgba(246,243,237,.9); }
