/* ==========================================================================
   VALUEBRAND — Tasarım Sistemi
   Palet, logodaki pudra gülü / eskitme altın / mürekkep tonlarından türetildi.
   ========================================================================== */

/* ---------- 1. Tokenlar ---------- */
:root {
  /* Yüzeyler */
  --blush-50:  #FDF6F4;
  --blush-100: #FAEDE9;
  --blush-200: #F4DDD7;
  --paper:     #FFFFFF;

  /* Gül */
  --rose-200: #E7C3C9;
  --rose-300: #D9A3AD;
  --rose-400: #C4838F;
  --rose-500: #A35D6C;   /* birincil */
  --rose-600: #96505F;
  --rose-700: #7A3E4C;

  /* Altın */
  --gold-300: #E0C79A;
  --gold-400: #CBA76A;
  --gold-500: #B68F4D;
  --gold-600: #9A7638;
  --gold-700: #8A6A32;   /* beyaz metinli buton zemini */
  --gold-800: #74582A;

  /* Mürekkep */
  --ink-900: #2A2426;
  --ink-800: #3A3234;
  --ink-700: #4E4446;
  --ink-500: #7C6E71;
  --ink-400: #8A7C7F;
  --ink-300: #C3B7B9;

  /* Çizgi & gölge */
  --line:        #ECDFDB;
  --line-strong: #DCC9C4;
  --shadow-sm: 0 1px 2px rgba(42,36,38,.05), 0 2px 8px rgba(42,36,38,.04);
  --shadow-md: 0 4px 16px rgba(42,36,38,.07), 0 12px 32px rgba(42,36,38,.06);
  --shadow-lg: 0 12px 40px rgba(42,36,38,.12), 0 32px 64px rgba(42,36,38,.08);

  /* Durum */
  --success: #2F7D5B;
  --danger:  #B23A3A;
  --info:    #3B6E8F;

  /* Tipografi */
  --font-display: "Cormorant Garamond", "Georgia", "Times New Roman", serif;
  --font-body: "Jost", "Segoe UI", -apple-system, BlinkMacSystemFont, Roboto, Helvetica, Arial, sans-serif;

  /* Ölçek */
  --container: 1360px;
  --container-narrow: 820px;
  --header-h: 132px;
  --header-h-mobile: 64px;
  --radius-sm: 4px;
  --radius: 8px;
  --radius-lg: 16px;

  --ease: cubic-bezier(.22,.61,.36,1);
  --ease-out: cubic-bezier(.16,1,.3,1);
}

/* ---------- 2. Sıfırlama ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; }
}

body {
  margin: 0;
  background: var(--blush-50);
  color: var(--ink-800);
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.65;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
body.no-scroll { overflow: hidden; }

img { max-width: 100%; display: block; }
/* JS ile eklenen ikon SVG'lerinin varsayılan boyutu (width özniteliği olmayanlar).
   Daha sonra gelen sınıf kuralları bu değeri ezer. */
svg:not([width]) { width: 1.25em; height: 1.25em; flex: 0 0 auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; cursor: pointer; border: 0; background: none; }
input, select, textarea { font: inherit; color: inherit; }
ul, ol { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4, h5 { margin: 0; font-weight: 500; line-height: 1.2; }
p { margin: 0 0 1em; }
p:last-child { margin-bottom: 0; }
hr { border: 0; border-top: 1px solid var(--line); margin: 32px 0; }

::selection { background: var(--rose-200); color: var(--ink-900); }

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

/* ---------- 3. Tipografi yardımcıları ---------- */
.display-1 { font-family: var(--font-display); font-size: clamp(2.6rem, 6.2vw, 5rem); font-weight: 300; line-height: 1.04; letter-spacing: -.015em; }
.display-2 { font-family: var(--font-display); font-size: clamp(2rem, 4.2vw, 3.35rem); font-weight: 300; line-height: 1.1; letter-spacing: -.01em; }
.display-3 { font-family: var(--font-display); font-size: clamp(1.6rem, 3vw, 2.35rem); font-weight: 400; line-height: 1.18; }
.serif { font-family: var(--font-display); }

.eyebrow {
  font-size: 11px;
  letter-spacing: .28em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--gold-700);
}
.muted { color: var(--ink-500); }
.small { font-size: 13px; }
.tiny  { font-size: 12px; }
.center { text-align: center; }

.rule-ornament {
  display: flex; align-items: center; justify-content: center; gap: 14px;
  color: var(--gold-400);
}
.rule-ornament::before, .rule-ornament::after {
  content: ""; height: 1px; width: min(80px, 14vw);
  background: linear-gradient(90deg, transparent, var(--gold-300), transparent);
}

/* ---------- 4. Yerleşim ---------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: 24px; }
.container-narrow { width: 100%; max-width: var(--container-narrow); margin-inline: auto; padding-inline: 24px; }
@media (max-width: 640px) { .container, .container-narrow { padding-inline: 16px; } }

.section { padding-block: clamp(56px, 8vw, 104px); }
.section-tight { padding-block: clamp(36px, 5vw, 64px); }
.section-head { text-align: center; margin-bottom: clamp(28px, 4vw, 52px); }
.section-head p { max-width: 56ch; margin-inline: auto; color: var(--ink-500); }

.stack > * + * { margin-top: 16px; }
.row { display: flex; align-items: center; gap: 12px; }
.row-between { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.grow { flex: 1 1 auto; min-width: 0; }

/* ---------- 5. Butonlar ---------- */
.btn {
  --btn-bg: var(--ink-900);
  --btn-fg: #fff;
  --btn-bd: var(--ink-900);
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  min-height: 48px; padding: 0 26px;
  background: var(--btn-bg); color: var(--btn-fg);
  border: 1px solid var(--btn-bd);
  border-radius: var(--radius-sm);
  font-size: 12.5px; font-weight: 500; letter-spacing: .16em; text-transform: uppercase;
  transition: background .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease), transform .18s var(--ease), box-shadow .25s var(--ease);
  text-align: center; white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn:active { transform: translateY(0); }
.btn[disabled], .btn.is-disabled { opacity: .45; pointer-events: none; }

.btn-primary { --btn-bg: var(--rose-500); --btn-bd: var(--rose-500); }
.btn-primary:hover { --btn-bg: var(--rose-600); --btn-bd: var(--rose-600); }
.btn-dark:hover { --btn-bg: var(--ink-800); --btn-bd: var(--ink-800); }
.btn-ghost { --btn-bg: transparent; --btn-fg: var(--ink-900); --btn-bd: var(--line-strong); }
.btn-ghost:hover { --btn-bg: var(--ink-900); --btn-fg: #fff; --btn-bd: var(--ink-900); }
.btn-gold { --btn-bg: var(--gold-700); --btn-bd: var(--gold-700); }
.btn-gold:hover { --btn-bg: var(--gold-800); --btn-bd: var(--gold-800); }
.btn-block { display: flex; width: 100%; }
.btn-sm { min-height: 38px; padding: 0 16px; font-size: 11px; }
.btn-lg { min-height: 56px; padding: 0 34px; }

.link-underline {
  position: relative; display: inline-block;
  font-size: 12.5px; letter-spacing: .16em; text-transform: uppercase; font-weight: 500;
}
.link-underline::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -4px; height: 1px;
  background: currentColor; transform-origin: right; transition: transform .35s var(--ease-out);
}
.link-underline:hover::after { transform: scaleX(0); transform-origin: left; }

/* ---------- 6. Form ---------- */
.field { display: block; margin-bottom: 18px; }
.field > .label,
.label {
  display: block; margin-bottom: 7px;
  font-size: 11px; letter-spacing: .16em; text-transform: uppercase;
  font-weight: 500; color: var(--ink-500);
}
.input, .select, .textarea {
  width: 100%; min-height: 48px; padding: 12px 14px;
  background: var(--paper); border: 1px solid var(--line-strong);
  border-radius: var(--radius-sm); font-size: 15px; color: var(--ink-900);
  transition: border-color .2s, box-shadow .2s;
}
.textarea { min-height: 128px; resize: vertical; }
.input:hover, .select:hover, .textarea:hover { border-color: var(--rose-300); }
.input:focus, .select:focus, .textarea:focus {
  outline: none; border-color: var(--rose-500); box-shadow: 0 0 0 3px rgba(172,102,117,.14);
}
.input::placeholder, .textarea::placeholder { color: var(--ink-300); }
.select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1.5 6 6.5l5-5' fill='none' stroke='%237C6E71' stroke-width='1.4' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center; padding-right: 38px;
}
.field-error .input, .field-error .select, .field-error .textarea { border-color: var(--danger); }
.error-text { display: none; margin-top: 5px; font-size: 12px; color: var(--danger); }
.field-error .error-text { display: block; }

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 0 18px; }
@media (max-width: 560px) { .grid-2 { grid-template-columns: 1fr; } }

.check {
  display: flex; gap: 11px; align-items: flex-start;
  padding: 12px 0; cursor: pointer; font-size: 13.5px; line-height: 1.55;
}
.check input[type="checkbox"] {
  appearance: none; flex: 0 0 auto; width: 19px; height: 19px; margin: 1px 0 0;
  border: 1px solid var(--line-strong); border-radius: 3px; background: var(--paper);
  cursor: pointer; transition: background .18s, border-color .18s; position: relative;
}
.check input[type="checkbox"]:checked { background: var(--rose-500); border-color: var(--rose-500); }
.check input[type="checkbox"]:checked::after {
  content: ""; position: absolute; left: 6px; top: 2px; width: 5px; height: 10px;
  border: solid #fff; border-width: 0 2px 2px 0; transform: rotate(45deg);
}
.check a { color: var(--rose-600); text-decoration: underline; text-underline-offset: 2px; }

/* ---------- 7. Üst bar & başlık ---------- */
.announce {
  background: var(--ink-900); color: var(--blush-100);
  font-size: 11.5px; letter-spacing: .16em; text-transform: uppercase;
  text-align: center; padding: 9px 16px; position: relative; z-index: 60;
}
.announce b { color: var(--gold-300); font-weight: 500; }
.announce-track { display: flex; justify-content: center; gap: 40px; }
.announce-track span:not(:first-child) { display: none; }
@media (min-width: 900px) { .announce-track span:not(:first-child) { display: inline; } }

.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(253,246,244,.88);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow .3s var(--ease), background .3s var(--ease);
}
.site-header.is-stuck { box-shadow: 0 1px 24px rgba(42,36,38,.07); background: rgba(253,246,244,.96); }

.header-main {
  display: grid; grid-template-columns: 1fr auto 1fr; align-items: center;
  gap: 16px; padding: 14px 0;
}
.brand { justify-self: center; display: inline-flex; align-items: center; gap: 12px; }
.brand img { width: 54px; height: 54px; border-radius: 50%; object-fit: cover; box-shadow: var(--shadow-sm); }
.brand-name { display: none; }
@media (min-width: 700px) {
  .brand img { width: 62px; height: 62px; }
  .brand-name { display: block; font-family: var(--font-display); font-size: 25px; letter-spacing: .15em; line-height: 1; color: var(--ink-900); }
  .brand-tag { display: block; font-size: 8.5px; letter-spacing: .3em; text-transform: uppercase; color: var(--gold-600); margin-top: 5px; }
}
@media (min-width: 1000px) { .brand-name { font-size: 27px; letter-spacing: .16em; } }

.header-actions { display: flex; align-items: center; gap: 2px; justify-self: end; }
.header-nav-left { display: flex; align-items: center; gap: 4px; }

.icon-btn {
  position: relative; display: inline-flex; align-items: center; justify-content: center;
  width: 42px; height: 42px; border-radius: 50%; color: var(--ink-800);
  transition: background .2s, color .2s;
}
.icon-btn:hover { background: var(--blush-200); color: var(--rose-600); }
.icon-btn svg { width: 21px; height: 21px; }
.icon-btn .badge {
  position: absolute; top: 3px; right: 2px; min-width: 18px; height: 18px; padding: 0 5px;
  background: var(--rose-500); color: #fff; border-radius: 9px;
  font-size: 10.5px; font-weight: 500; line-height: 18px; text-align: center;
  transform: scale(0); transition: transform .3s var(--ease-out);
}
.icon-btn .badge.on { transform: scale(1); }

.nav-desktop { display: none; }
@media (min-width: 1000px) {
  .nav-desktop { display: flex; align-items: center; justify-content: center; gap: 34px; padding-bottom: 12px; }
  .nav-desktop a {
    position: relative; font-size: 12px; letter-spacing: .18em; text-transform: uppercase;
    font-weight: 500; color: var(--ink-700); padding: 4px 0; transition: color .2s;
  }
  .nav-desktop a::after {
    content: ""; position: absolute; left: 50%; right: 50%; bottom: 0; height: 1px;
    background: var(--rose-500); transition: left .3s var(--ease-out), right .3s var(--ease-out);
  }
  .nav-desktop a:hover { color: var(--rose-600); }
  .nav-desktop a:hover::after, .nav-desktop a[aria-current="page"]::after { left: 0; right: 0; }
  .nav-desktop a[aria-current="page"] { color: var(--rose-600); }
  .burger { display: none !important; }
}

/* ---------- 8. Çekmeceler (mobil menü, sepet, arama) ---------- */
.scrim {
  position: fixed; inset: 0; background: rgba(42,36,38,.42);
  backdrop-filter: blur(2px); opacity: 0; pointer-events: none;
  transition: opacity .35s var(--ease); z-index: 90;
}
.scrim.on { opacity: 1; pointer-events: auto; }

.drawer {
  position: fixed; top: 0; bottom: 0; z-index: 100;
  width: min(430px, 92vw); background: var(--blush-50);
  display: flex; flex-direction: column;
  overflow: hidden;              /* içerik kutunun dışına taşıp ekranda kalmasın */
  visibility: hidden;            /* kapalıyken hiçbir şey boyanmasın */
  transition: transform .42s var(--ease-out), visibility 0s linear .42s;
  box-shadow: var(--shadow-lg);
}
.drawer-right { right: 0; transform: translateX(102%); }
.drawer-left  { left: 0;  transform: translateX(-102%); }
.drawer.on {
  transform: translateX(0); visibility: visible;
  transition: transform .42s var(--ease-out), visibility 0s linear 0s;
}

.drawer-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 22px; border-bottom: 1px solid var(--line); flex: 0 0 auto;
}
.drawer-title { font-size: 12px; letter-spacing: .22em; text-transform: uppercase; font-weight: 500; }
.drawer-body { flex: 1 1 auto; min-height: 0; overflow-y: auto; -webkit-overflow-scrolling: touch; overscroll-behavior: contain; padding: 20px 22px; }
.drawer-foot { flex: 0 0 auto; padding: 20px 22px calc(20px + env(safe-area-inset-bottom)); border-top: 1px solid var(--line); background: var(--paper); }

.mobile-nav a {
  display: flex; align-items: center; justify-content: space-between;
  padding: 15px 0; border-bottom: 1px solid var(--line);
  font-family: var(--font-display); font-size: 21px; color: var(--ink-900);
}
.mobile-nav a:hover { color: var(--rose-600); }
.mobile-nav .sub { font-family: var(--font-body); font-size: 13px; letter-spacing: .1em; text-transform: uppercase; }

/* Arama katmanı */
.search-panel {
  position: fixed; left: 0; right: 0; top: 0; z-index: 100;
  background: var(--blush-50); box-shadow: var(--shadow-lg);
  transform: translateY(-102%);
  max-height: 100vh; max-height: 100dvh;
  display: flex; flex-direction: column;
  overflow: hidden;              /* taşan öneri kartları ekranda kalmasın */
  visibility: hidden;
  transition: transform .42s var(--ease-out), visibility 0s linear .42s;
}
.search-panel.on {
  transform: translateY(0); visibility: visible;
  transition: transform .42s var(--ease-out), visibility 0s linear 0s;
}
/* Panelin tek çocuğu .container olduğu için yükseklik sınırının
   iç öğelere ulaşması gerekiyor — aksi hâlde içerik dışarı taşar. */
.search-panel > .container { display: flex; flex-direction: column; flex: 1 1 auto; min-height: 0; }
.search-bar { flex: 0 0 auto; display: flex; align-items: center; gap: 14px; padding: 22px 0; border-bottom: 1px solid var(--line); }
.search-bar input {
  flex: 1; border: 0; background: transparent; font-family: var(--font-display);
  font-size: clamp(20px, 3.4vw, 34px); font-weight: 300; color: var(--ink-900); outline: none; min-width: 0;
}
.search-bar input::placeholder { color: var(--ink-300); }
.search-results {
  flex: 1 1 auto; min-height: 0; overflow-y: auto;
  -webkit-overflow-scrolling: touch; overscroll-behavior: contain;
  padding: 18px 0 calc(30px + env(safe-area-inset-bottom));
}
.search-hit { display: flex; gap: 14px; padding: 10px; border-radius: var(--radius); transition: background .2s; }
.search-hit:hover { background: var(--blush-100); }
.search-hit img { width: 62px; height: 82px; object-fit: cover; border-radius: var(--radius-sm); flex: 0 0 auto; background: var(--blush-200); }
.search-hit .t { font-size: 14px; color: var(--ink-900); display: -webkit-box; -webkit-line-clamp: 2; line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.search-hit .p { font-size: 13px; color: var(--rose-600); margin-top: 4px; }
.search-terms { display: flex; flex-wrap: wrap; gap: 8px; padding-top: 18px; }
.chip {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 7px 14px; border: 1px solid var(--line-strong); border-radius: 100px;
  background: var(--paper); font-size: 12px; letter-spacing: .05em;
  transition: border-color .2s, background .2s, color .2s;
}
.chip:hover { border-color: var(--rose-400); color: var(--rose-600); }
.chip.on { background: var(--ink-900); border-color: var(--ink-900); color: #fff; }

/* ---------- 9. Ürün kartı ---------- */
.product-grid {
  display: grid; gap: 14px 12px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
@media (min-width: 720px)  { .product-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 26px 20px; } }
@media (min-width: 1100px) { .product-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 34px 24px; } }
.product-grid.cols-3 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
@media (min-width: 900px) { .product-grid.cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); } }

.card { position: relative; display: flex; flex-direction: column; }
.card-media-wrap { position: relative; }
.card-media {
  position: relative; display: block; overflow: hidden;
  background: var(--blush-100); border-radius: var(--radius-sm); aspect-ratio: 3 / 4;
}
.card-media img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .9s var(--ease-out), opacity .5s var(--ease);
}
.card-media img.alt {
  position: absolute; inset: 0; opacity: 0;
}
.card:hover .card-media img.main { transform: scale(1.045); }
.card:hover .card-media img.alt { opacity: 1; transform: scale(1.045); }

.card-badges { position: absolute; top: 10px; left: 10px; display: flex; flex-direction: column; gap: 6px; z-index: 2; }
.badge-tag {
  padding: 5px 10px; font-size: 9.5px; letter-spacing: .18em; text-transform: uppercase;
  font-weight: 500; background: var(--paper); color: var(--ink-900); border-radius: 2px;
  box-shadow: var(--shadow-sm);
}
.badge-tag.gold { background: var(--gold-500); color: #fff; }
.badge-tag.rose { background: var(--rose-500); color: #fff; }
.badge-tag.dark { background: var(--ink-900); color: #fff; }

.card-fav {
  position: absolute; top: 8px; right: 8px; z-index: 3;
  width: 36px; height: 36px; border-radius: 50%;
  display: grid; place-items: center;
  background: rgba(255,255,255,.86); color: var(--ink-700);
  box-shadow: var(--shadow-sm); transition: color .2s, transform .2s, background .2s;
}
.card-fav:hover { transform: scale(1.08); color: var(--rose-500); }
.card-fav svg { width: 17px; height: 17px; }
.card-fav.on { color: var(--rose-500); }
.card-fav.on svg { fill: currentColor; }

.card-quick {
  position: absolute; left: 8px; right: 8px; bottom: 8px; z-index: 2;
  opacity: 0; transform: translateY(8px);
  transition: opacity .3s var(--ease), transform .3s var(--ease);
}
@media (hover: hover) and (min-width: 720px) {
  .card:hover .card-quick { opacity: 1; transform: translateY(0); }
}
@media (max-width: 719px) { .card-quick { display: none; } }
.card-quick .btn { --btn-bg: rgba(255,255,255,.95); --btn-fg: var(--ink-900); --btn-bd: transparent; min-height: 42px; backdrop-filter: blur(6px); }
.card-quick .btn:hover { --btn-bg: var(--ink-900); --btn-fg: #fff; }

.card-body { padding: 12px 2px 0; display: flex; flex-direction: column; gap: 5px; }
.card-cat { font-size: 10px; letter-spacing: .2em; text-transform: uppercase; color: var(--ink-500); }
.card-title {
  font-size: 14px; line-height: 1.4; color: var(--ink-900); font-weight: 400;
  display: -webkit-box; -webkit-line-clamp: 2; line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
  min-height: 2.8em;
}
.card:hover .card-title { color: var(--rose-600); }
.card-price { font-size: 15px; color: var(--ink-900); font-weight: 500; letter-spacing: .01em; }
.card-sizes { display: flex; flex-wrap: wrap; gap: 5px; margin-top: 2px; }
.card-sizes span { font-size: 10.5px; color: var(--ink-500); letter-spacing: .08em; }
.card-sizes span.out { text-decoration: line-through; opacity: .5; }

.card.is-out .card-media img { filter: grayscale(.55); opacity: .72; }

/* ---------- 10. Kaydırmalı vitrin ---------- */
.rail-wrap { position: relative; }
.rail {
  display: grid; grid-auto-flow: column;
  grid-auto-columns: minmax(215px, 1fr);
  gap: 14px; overflow-x: auto; scroll-snap-type: x mandatory;
  padding-bottom: 8px; scrollbar-width: thin; scrollbar-color: var(--line-strong) transparent;
}
@media (min-width: 720px) { .rail { grid-auto-columns: minmax(268px, 1fr); gap: 22px; } }
.rail > * { scroll-snap-align: start; }
.rail::-webkit-scrollbar { height: 3px; }
.rail::-webkit-scrollbar-track { background: var(--line); }
.rail::-webkit-scrollbar-thumb { background: var(--rose-300); }

.rail-nav { position: absolute; top: 38%; z-index: 4; width: 44px; height: 44px; border-radius: 50%;
  background: var(--paper); box-shadow: var(--shadow-md); display: none; place-items: center; color: var(--ink-800); }
.rail-nav:hover { background: var(--ink-900); color: #fff; }
.rail-nav.prev { left: -18px; } .rail-nav.next { right: -18px; }
@media (min-width: 1100px) { .rail-nav { display: grid; } }

/* ---------- 11. Hero ---------- */
.hero {
  position: relative; overflow: hidden;
  background:
    radial-gradient(120% 90% at 78% 12%, rgba(231,195,201,.55) 0%, transparent 58%),
    radial-gradient(90% 80% at 10% 88%, rgba(224,199,154,.36) 0%, transparent 55%),
    linear-gradient(168deg, #FEF9F8 0%, #FBEFEB 55%, #F7E4DE 100%);
}
.hero-inner {
  display: grid; align-items: center; gap: clamp(28px, 5vw, 64px);
  padding-block: clamp(48px, 8vw, 110px);
}
@media (min-width: 940px) { .hero-inner { grid-template-columns: 1.02fr .98fr; } }

.hero-copy { position: relative; z-index: 2; max-width: 620px; }
.hero-copy .eyebrow { margin-bottom: 18px; display: block; }
.hero-copy h1 { margin-bottom: 20px; color: var(--ink-900); }
.hero-copy h1 em { font-style: italic; color: var(--rose-600); }
.hero-copy .lede { font-size: clamp(15px, 1.6vw, 17px); color: var(--ink-700); max-width: 46ch; margin-bottom: 30px; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 12px; }

.hero-art { position: relative; }
.hero-logo-frame {
  position: relative; margin-inline: auto; width: min(430px, 84vw); aspect-ratio: 1;
  display: grid; place-items: center;
}
.hero-logo-frame img { width: 88%; height: auto; aspect-ratio: 1; object-fit: cover; border-radius: 50%; box-shadow: 0 30px 70px rgba(122,62,76,.16); }
.hero-ring {
  position: absolute; inset: 0; border-radius: 50%;
  border: 1px solid rgba(203,167,106,.5);
  animation: spin 44s linear infinite;
}
.hero-ring::after {
  content: ""; position: absolute; top: 6%; left: 50%; width: 7px; height: 7px; margin-left: -3.5px;
  background: var(--gold-400); border-radius: 50%; box-shadow: 0 0 12px rgba(203,167,106,.9);
}
.hero-ring.two { inset: -22px; border-style: dashed; border-color: rgba(217,163,173,.4); animation-duration: 66s; animation-direction: reverse; }
@keyframes spin { to { transform: rotate(360deg); } }

.hero-stats { display: flex; flex-wrap: wrap; gap: 28px 40px; margin-top: 36px; padding-top: 26px; border-top: 1px solid rgba(203,167,106,.32); }
.hero-stats .n { font-family: var(--font-display); font-size: 30px; line-height: 1; color: var(--rose-600); }
.hero-stats .l { font-size: 10.5px; letter-spacing: .18em; text-transform: uppercase; color: var(--ink-500); margin-top: 6px; }

/* ---------- 12. Güven şeridi ---------- */
.trust-strip { border-block: 1px solid var(--line); background: var(--paper); }
.trust-grid { display: grid; grid-template-columns: repeat(2, 1fr); }
@media (min-width: 860px) { .trust-grid { grid-template-columns: repeat(4, 1fr); } }
.trust-item { display: flex; gap: 13px; align-items: flex-start; padding: 22px 18px; }
.trust-item + .trust-item { border-left: 1px solid var(--line); }
@media (max-width: 859px) { .trust-item:nth-child(3) { border-left: 0; } .trust-item:nth-child(n+3) { border-top: 1px solid var(--line); } }
.trust-item svg { width: 24px; height: 24px; flex: 0 0 auto; color: var(--gold-500); margin-top: 1px; }
.trust-item .t { font-size: 12.5px; letter-spacing: .1em; text-transform: uppercase; font-weight: 500; color: var(--ink-900); }
.trust-item .d { font-size: 12.5px; color: var(--ink-500); line-height: 1.5; margin-top: 3px; }

/* ---------- 13. Kategori kartları ---------- */
.cat-grid { display: grid; gap: 12px; grid-template-columns: repeat(2, 1fr); }
@media (min-width: 760px) { .cat-grid { grid-template-columns: repeat(3, 1fr); gap: 18px; } }
@media (min-width: 1100px) { .cat-grid { grid-template-columns: repeat(6, 1fr); } }
.cat-card {
  position: relative; display: block; overflow: hidden; border-radius: var(--radius-sm);
  aspect-ratio: 3 / 4; background: var(--blush-200);
}
.cat-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease-out); }
.cat-card:hover img { transform: scale(1.07); }
.cat-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(42,36,38,.62) 0%, rgba(42,36,38,.06) 52%, transparent 100%); }
.cat-card .lbl {
  position: absolute; left: 0; right: 0; bottom: 14px; z-index: 2; text-align: center;
  color: #fff; font-size: 11.5px; letter-spacing: .2em; text-transform: uppercase; font-weight: 500;
}
.cat-card .lbl small { display: block; font-size: 10px; letter-spacing: .1em; opacity: .78; margin-top: 3px; text-transform: none; }

/* ---------- 14. Editorial / manifesto ---------- */
.editorial { background: var(--ink-900); color: var(--blush-100); }
.editorial .eyebrow { color: var(--gold-300); }
.editorial-inner { display: grid; gap: clamp(28px, 5vw, 58px); align-items: center; }
@media (min-width: 920px) { .editorial-inner { grid-template-columns: 1fr 1fr; } }
.editorial h2 { color: #fff; margin-bottom: 18px; }
.editorial p { color: rgba(250,237,233,.76); }
.editorial-quote {
  font-family: var(--font-display); font-size: clamp(1.5rem, 2.6vw, 2.15rem);
  font-weight: 300; font-style: italic; line-height: 1.35; color: var(--gold-300);
  border-left: 1px solid rgba(203,167,106,.45); padding-left: 26px;
}

/* ---------- 15. Mağaza sayfası ---------- */
.shop-layout { display: grid; gap: 32px; }
@media (min-width: 1000px) { .shop-layout { grid-template-columns: 246px 1fr; gap: 48px; align-items: start; } }

.filters { position: sticky; top: calc(var(--header-h) + 16px); }
@media (max-width: 999px) {
  .filters {
    position: fixed; inset: 0; z-index: 100; background: var(--blush-50);
    transform: translateY(102%); transition: transform .42s var(--ease-out);
    display: flex; flex-direction: column; top: 0;
  }
  .filters.on { transform: translateY(0); }
  .filters-scroll { flex: 1; overflow-y: auto; padding: 20px 20px 0; }
  .filters-mobile-head, .filters-mobile-foot { display: flex !important; }
}
.filters-mobile-head, .filters-mobile-foot { display: none; }
.filters-mobile-head { align-items: center; justify-content: space-between; padding: 18px 20px; border-bottom: 1px solid var(--line); }
.filters-mobile-foot { gap: 10px; padding: 16px 20px calc(16px + env(safe-area-inset-bottom)); border-top: 1px solid var(--line); background: var(--paper); }

.filter-group { border-bottom: 1px solid var(--line); padding: 18px 0; }
.filter-group:first-child { padding-top: 0; }
.filter-head {
  display: flex; align-items: center; justify-content: space-between; width: 100%;
  font-size: 11.5px; letter-spacing: .2em; text-transform: uppercase; font-weight: 500; color: var(--ink-900);
}
.filter-head svg { width: 13px; height: 13px; transition: transform .3s var(--ease); }
.filter-group.closed .filter-head svg { transform: rotate(-90deg); }
.filter-group.closed .filter-content { display: none; }
.filter-content { padding-top: 14px; }
.filter-opt {
  display: flex; align-items: center; gap: 10px; padding: 6px 0;
  font-size: 13.5px; color: var(--ink-700); cursor: pointer; transition: color .18s;
}
.filter-opt:hover { color: var(--rose-600); }
.filter-opt input { appearance: none; width: 16px; height: 16px; border: 1px solid var(--line-strong); border-radius: 2px; background: var(--paper); position: relative; flex: 0 0 auto; }
.filter-opt input:checked { background: var(--rose-500); border-color: var(--rose-500); }
.filter-opt input:checked::after { content: ""; position: absolute; left: 5px; top: 1.5px; width: 4px; height: 8px; border: solid #fff; border-width: 0 2px 2px 0; transform: rotate(45deg); }
.filter-opt .cnt { margin-left: auto; font-size: 11.5px; color: var(--ink-500); }

.size-opts { display: flex; flex-wrap: wrap; gap: 7px; }
.size-opt {
  min-width: 44px; padding: 8px 10px; border: 1px solid var(--line-strong); border-radius: 2px;
  background: var(--paper); font-size: 12px; letter-spacing: .08em; text-align: center;
  transition: all .18s;
}
.size-opt:hover { border-color: var(--rose-400); }
.size-opt.on { background: var(--ink-900); border-color: var(--ink-900); color: #fff; }

.shop-toolbar {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  padding-bottom: 18px; margin-bottom: 22px; border-bottom: 1px solid var(--line); flex-wrap: wrap;
}
.active-filters { display: flex; flex-wrap: wrap; gap: 7px; margin-bottom: 18px; }
.pill {
  display: inline-flex; align-items: center; gap: 7px; padding: 6px 12px;
  background: var(--blush-200); border-radius: 100px; font-size: 12px; color: var(--ink-800);
}
.pill button { display: grid; place-items: center; width: 15px; height: 15px; border-radius: 50%; background: rgba(42,36,38,.14); font-size: 11px; line-height: 1; }
.pill button:hover { background: var(--ink-900); color: #fff; }

/* ---------- 16. Ürün detay ---------- */
.pdp { display: grid; gap: 32px; }
@media (min-width: 960px) { .pdp { grid-template-columns: 1.12fr .88fr; gap: 56px; align-items: start; } }

.gallery { display: grid; gap: 10px; }
@media (min-width: 960px) { .gallery { grid-template-columns: 84px 1fr; gap: 14px; } }
.thumbs { display: flex; gap: 8px; order: 2; overflow-x: auto; padding-bottom: 4px; }
@media (min-width: 960px) { .thumbs { order: 0; flex-direction: column; overflow: visible; } }
.thumb {
  flex: 0 0 auto; width: 66px; aspect-ratio: 3/4; border-radius: 2px; overflow: hidden;
  border: 1px solid transparent; opacity: .62; transition: opacity .2s, border-color .2s;
  background: var(--blush-100);
}
@media (min-width: 960px) { .thumb { width: 100%; } }
.thumb.on { opacity: 1; border-color: var(--ink-900); }
.thumb:hover { opacity: 1; }
.thumb img { width: 100%; height: 100%; object-fit: cover; }

.stage {
  position: relative; border-radius: var(--radius-sm); overflow: hidden;
  background: var(--blush-100); aspect-ratio: 3/4;
}
.stage img { width: 100%; height: 100%; object-fit: cover; transition: opacity .35s var(--ease); }
.stage.zoomable { cursor: zoom-in; }
.stage.zoomed img { transform: scale(2); cursor: zoom-out; }
.stage img { transition: transform .35s var(--ease-out), opacity .3s; transform-origin: center; }
.stage-nav {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 3;
  width: 40px; height: 40px; border-radius: 50%; display: grid; place-items: center;
  background: rgba(255,255,255,.9); box-shadow: var(--shadow-sm); color: var(--ink-800);
}
.stage-nav:hover { background: var(--ink-900); color: #fff; }
.stage-nav.prev { left: 10px; } .stage-nav.next { right: 10px; }
.stage-count {
  position: absolute; bottom: 12px; right: 12px; z-index: 3;
  padding: 5px 11px; border-radius: 100px; background: rgba(42,36,38,.6); color: #fff;
  font-size: 11px; letter-spacing: .1em;
}

.pdp-info { position: sticky; top: calc(var(--header-h) + 20px); }
@media (max-width: 959px) { .pdp-info { position: static; } }
.pdp-title { font-family: var(--font-display); font-size: clamp(1.55rem, 3vw, 2.35rem); font-weight: 400; line-height: 1.2; color: var(--ink-900); margin: 8px 0 14px; }
.pdp-price { display: flex; align-items: baseline; gap: 12px; margin-bottom: 6px; }
.pdp-price .now { font-size: 26px; font-weight: 500; color: var(--ink-900); }
.pdp-price .kdv { font-size: 12px; color: var(--ink-500); }

.size-row { display: flex; align-items: center; justify-content: space-between; margin-bottom: 10px; }
.size-pick { display: flex; flex-wrap: wrap; gap: 8px; }
.size-pick button {
  min-width: 54px; height: 46px; padding: 0 14px;
  border: 1px solid var(--line-strong); background: var(--paper); border-radius: 2px;
  font-size: 13px; letter-spacing: .08em; color: var(--ink-800); transition: all .18s; position: relative;
}
.size-pick button:hover:not(:disabled) { border-color: var(--ink-900); }
.size-pick button.on { background: var(--ink-900); border-color: var(--ink-900); color: #fff; }
.size-pick button:disabled { color: var(--ink-300); cursor: not-allowed; background: var(--blush-100); }
.size-pick button:disabled::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(to top left, transparent 47.5%, var(--line-strong) 47.5%, var(--line-strong) 52.5%, transparent 52.5%);
}
.stock-note { font-size: 12.5px; margin-top: 10px; display: flex; align-items: center; gap: 7px; }
.stock-note .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--success); }
.stock-note.low .dot { background: var(--gold-500); }
.stock-note.out .dot { background: var(--danger); }

.qty { display: inline-flex; align-items: center; border: 1px solid var(--line-strong); border-radius: 2px; background: var(--paper); height: 52px; }
.qty button { width: 44px; height: 100%; display: grid; place-items: center; font-size: 17px; color: var(--ink-700); }
.qty button:hover { color: var(--rose-600); }
.qty input { width: 44px; height: 100%; border: 0; text-align: center; font-size: 15px; background: transparent; outline: none; -moz-appearance: textfield; }
.qty input::-webkit-outer-spin-button, .qty input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }

.accordion { border-top: 1px solid var(--line); }
.acc-item { border-bottom: 1px solid var(--line); }
.acc-head {
  display: flex; align-items: center; justify-content: space-between; width: 100%;
  padding: 17px 0; font-size: 12px; letter-spacing: .18em; text-transform: uppercase;
  font-weight: 500; color: var(--ink-900); text-align: left;
}
.acc-head .ic { position: relative; width: 12px; height: 12px; flex: 0 0 auto; }
.acc-head .ic::before, .acc-head .ic::after {
  content: ""; position: absolute; background: var(--ink-700); transition: transform .3s var(--ease);
}
.acc-head .ic::before { left: 0; right: 0; top: 5.5px; height: 1px; }
.acc-head .ic::after  { top: 0; bottom: 0; left: 5.5px; width: 1px; }
.acc-item.on .acc-head .ic::after { transform: scaleY(0); }
.acc-body { display: none; padding-bottom: 20px; font-size: 14px; color: var(--ink-600, var(--ink-700)); line-height: 1.75; white-space: pre-line; }
.acc-item.on .acc-body { display: block; }

/* ---------- 17. Sepet ---------- */
.cart-line { display: flex; gap: 14px; padding: 16px 0; border-bottom: 1px solid var(--line); }
.cart-line img { width: 84px; height: 112px; object-fit: cover; border-radius: 2px; flex: 0 0 auto; background: var(--blush-100); }
.cart-line .t { font-size: 14px; color: var(--ink-900); line-height: 1.4; display: -webkit-box; -webkit-line-clamp: 2; line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.cart-line .v { font-size: 12px; color: var(--ink-500); margin-top: 4px; }
.cart-line .p { font-size: 14px; font-weight: 500; color: var(--ink-900); }
.qty-mini { display: inline-flex; align-items: center; border: 1px solid var(--line-strong); border-radius: 2px; height: 34px; background: var(--paper); }
.qty-mini button { width: 30px; height: 100%; display: grid; place-items: center; font-size: 14px; }
.qty-mini span { min-width: 28px; text-align: center; font-size: 13px; }
.remove-x { font-size: 12px; color: var(--ink-500); text-decoration: underline; text-underline-offset: 3px; }
.remove-x:hover { color: var(--danger); }

.summary { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); padding: 24px; }
.summary-row { display: flex; justify-content: space-between; gap: 12px; padding: 8px 0; font-size: 14px; }
.summary-row.total { border-top: 1px solid var(--line); margin-top: 10px; padding-top: 16px; font-size: 18px; font-weight: 500; color: var(--ink-900); }
.ship-progress { margin: 6px 0 18px; }
.ship-bar { height: 4px; background: var(--blush-200); border-radius: 100px; overflow: hidden; margin-top: 8px; }
.ship-bar i { display: block; height: 100%; background: linear-gradient(90deg, var(--rose-400), var(--gold-400)); border-radius: 100px; transition: width .5s var(--ease-out); }

.empty-state { text-align: center; padding: clamp(40px, 8vw, 80px) 20px; }
.empty-state svg { width: 54px; height: 54px; color: var(--rose-300); margin: 0 auto 18px; }

/* ---------- 18. Ödeme adımları ---------- */
.steps { display: flex; align-items: center; justify-content: center; gap: 10px; margin-bottom: 36px; flex-wrap: wrap; }
.step { display: flex; align-items: center; gap: 9px; font-size: 11.5px; letter-spacing: .14em; text-transform: uppercase; color: var(--ink-500); }
.step .n { width: 27px; height: 27px; border-radius: 50%; border: 1px solid var(--line-strong); display: grid; place-items: center; font-size: 12px; }
.step.on { color: var(--ink-900); }
.step.on .n { background: var(--ink-900); border-color: var(--ink-900); color: #fff; }
.step.done .n { background: var(--success); border-color: var(--success); color: #fff; }
.step-sep { width: 26px; height: 1px; background: var(--line-strong); }
@media (max-width: 620px) { .step span.lbl { display: none; } .step-sep { width: 16px; } }

.pay-card {
  border: 1px solid var(--line); border-radius: var(--radius); background: var(--paper); padding: 22px;
}
.pay-brands { display: flex; flex-wrap: wrap; align-items: center; gap: 10px; }
.brand-chip {
  height: 30px; padding: 0 12px; display: inline-flex; align-items: center; justify-content: center;
  border: 1px solid var(--line-strong); border-radius: 4px; background: #fff;
  font-size: 11px; font-weight: 600; letter-spacing: .06em; color: var(--ink-700);
}
.iyzico-badge {
  display: inline-flex; align-items: center; gap: 9px; padding: 9px 15px;
  border: 1px solid var(--line-strong); border-radius: 6px; background: #fff;
}
.iyzico-badge .mark {
  width: 26px; height: 26px; border-radius: 6px; display: grid; place-items: center;
  background: linear-gradient(135deg, #1E64FF, #0B3FB8); color: #fff; font-weight: 700; font-size: 14px;
  font-family: var(--font-body);
}
.iyzico-badge .txt { line-height: 1.15; }
.iyzico-badge .txt b { display: block; font-size: 12.5px; color: var(--ink-900); font-weight: 600; }
.iyzico-badge .txt span { font-size: 10.5px; color: var(--ink-500); }

/* ---------- 19. Alt bilgi ---------- */
.site-footer { background: var(--ink-900); color: rgba(250,237,233,.72); margin-top: clamp(56px, 8vw, 96px); }
.footer-top { display: grid; gap: 34px; padding-block: clamp(44px, 6vw, 72px); }
@media (min-width: 780px)  { .footer-top { grid-template-columns: 1.4fr 1fr 1fr; } }
@media (min-width: 1100px) { .footer-top { grid-template-columns: 1.5fr 1fr 1fr 1.25fr; } }
.footer-brand img { width: 76px; height: 76px; border-radius: 50%; margin-bottom: 16px; }
.footer-brand p { font-size: 13.5px; max-width: 38ch; line-height: 1.7; }
.footer-h {
  font-size: 11px; letter-spacing: .22em; text-transform: uppercase;
  color: #fff; font-weight: 500; margin-bottom: 16px;
}
.footer-links a { display: block; padding: 5px 0; font-size: 13.5px; transition: color .2s, padding-left .2s; }
.footer-links a:hover { color: var(--gold-300); padding-left: 5px; }
.footer-contact { font-size: 13.5px; line-height: 1.8; }
.footer-contact a:hover { color: var(--gold-300); }
.social { display: flex; gap: 9px; margin-top: 16px; }
.social a {
  width: 38px; height: 38px; border-radius: 50%; border: 1px solid rgba(250,237,233,.2);
  display: grid; place-items: center; transition: all .22s;
}
.social a:hover { background: var(--gold-500); border-color: var(--gold-500); color: #fff; }
.social svg { width: 17px; height: 17px; }

.footer-legal { border-top: 1px solid rgba(250,237,233,.13); padding-block: 22px; }
.footer-legal-inner { display: flex; flex-wrap: wrap; gap: 14px 24px; align-items: center; justify-content: space-between; }
.footer-legal .tiny { font-size: 11.5px; }
.footer-pay { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; }
.footer-pay .brand-chip { background: rgba(255,255,255,.94); border-color: transparent; }
.footer-firm {
  border-top: 1px solid rgba(250,237,233,.13); padding-block: 18px;
  font-size: 11.5px; line-height: 1.75; color: rgba(250,237,233,.5);
}

/* ---------- 20. Yardımcı bileşenler ---------- */
.toast-wrap { position: fixed; right: 16px; bottom: 16px; z-index: 200; display: flex; flex-direction: column; gap: 9px; align-items: flex-end; }
.toast {
  display: flex; align-items: center; gap: 11px; max-width: min(360px, 92vw);
  padding: 13px 17px; background: var(--ink-900); color: #fff; border-radius: var(--radius);
  box-shadow: var(--shadow-lg); font-size: 13.5px;
  animation: toastIn .4s var(--ease-out);
}
.toast.ok  { border-left: 3px solid var(--success); }
.toast.err { border-left: 3px solid var(--danger); }
.toast.out { animation: toastOut .3s var(--ease) forwards; }
@keyframes toastIn { from { opacity: 0; transform: translateY(14px) scale(.97); } }
@keyframes toastOut { to { opacity: 0; transform: translateX(20px); } }

.cookie-bar {
  position: fixed; left: 16px; right: 16px; bottom: 16px; z-index: 150;
  max-width: 620px; margin-inline: auto;
  background: var(--paper); border: 1px solid var(--line-strong); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg); padding: 20px 22px;
  transform: translateY(140%); transition: transform .5s var(--ease-out);
}
.cookie-bar.on { transform: translateY(0); }
.cookie-bar p { font-size: 13px; color: var(--ink-600, var(--ink-700)); line-height: 1.6; }
.cookie-actions { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 14px; }

.wa-float {
  position: fixed; right: 16px; bottom: 16px; z-index: 80;
  width: 52px; height: 52px; border-radius: 50%; display: grid; place-items: center;
  background: #25D366; color: #fff; box-shadow: var(--shadow-md);
  transition: transform .25s var(--ease);
}
.wa-float:hover { transform: scale(1.08); }
.wa-float svg { width: 27px; height: 27px; }
body.has-sticky-bar .wa-float { bottom: 84px; }

/* Mobil alt eylem çubuğu (PDP) */
.sticky-buy {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 70;
  background: rgba(255,255,255,.97); backdrop-filter: blur(12px);
  border-top: 1px solid var(--line);
  padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
  display: flex; gap: 10px; align-items: center;
  transform: translateY(110%); transition: transform .35s var(--ease-out);
}
.sticky-buy.on { transform: translateY(0); }
@media (min-width: 960px) { .sticky-buy { display: none; } }

/* Modal */
.modal-scrim {
  position: fixed; inset: 0; z-index: 160;
  background: rgba(42,36,38,.5); backdrop-filter: blur(3px);
  display: flex; align-items: center; justify-content: center;
  padding: 18px; opacity: 0; pointer-events: none; transition: opacity .3s;
}
.modal-scrim.on { opacity: 1; pointer-events: auto; }
.modal {
  background: var(--blush-50); border-radius: var(--radius-lg);
  width: min(720px, 100%); max-width: 100%; min-width: 0; flex: 0 1 auto;
  max-height: min(86vh, 820px); max-height: min(86dvh, 820px);
  display: flex; flex-direction: column; box-shadow: var(--shadow-lg);
  transform: translateY(16px) scale(.98); transition: transform .35s var(--ease-out);
}
.modal-scrim.on .modal { transform: none; }
.modal-head { display: flex; align-items: center; justify-content: space-between; padding: 20px 24px; border-bottom: 1px solid var(--line); }
.modal-body { overflow-y: auto; padding: 24px; }

/* Tablo */
.table-wrap { overflow-x: auto; min-width: 0; max-width: 100%; border: 1px solid var(--line); border-radius: var(--radius); background: var(--paper); }
table.data { width: 100%; border-collapse: collapse; font-size: 13.5px; min-width: 480px; }
table.data th, table.data td { padding: 12px 15px; text-align: left; border-bottom: 1px solid var(--line); }
table.data th { background: var(--blush-100); font-size: 11px; letter-spacing: .14em; text-transform: uppercase; font-weight: 500; color: var(--ink-700); }
table.data tr:last-child td { border-bottom: 0; }
table.data tbody tr:hover { background: var(--blush-50); }

/* Yasal metin sayfaları */
.legal-page { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: clamp(24px, 4vw, 52px); }
.legal-page h2 { font-family: var(--font-display); font-size: clamp(1.3rem, 2.4vw, 1.75rem); color: var(--ink-900); margin: 34px 0 12px; }
.legal-page h2:first-child { margin-top: 0; }
.legal-page h3 { font-size: 13px; letter-spacing: .12em; text-transform: uppercase; color: var(--rose-600); margin: 24px 0 8px; }
.legal-page p, .legal-page li { font-size: 14.5px; line-height: 1.8; color: var(--ink-700); }
.legal-page ul, .legal-page ol { margin: 0 0 1em; padding-left: 20px; list-style: disc; }
.legal-page ol { list-style: decimal; }
.legal-page li { margin-bottom: 6px; }
.legal-page strong { color: var(--ink-900); font-weight: 500; }

.toc { background: var(--blush-100); border-radius: var(--radius); padding: 18px 22px; margin-bottom: 30px; }
.toc a { display: block; padding: 4px 0; font-size: 13.5px; color: var(--ink-700); }
.toc a:hover { color: var(--rose-600); }

/* Sayfa başlığı */
.page-hero { padding-block: clamp(34px, 5vw, 64px); text-align: center; border-bottom: 1px solid var(--line); background: linear-gradient(180deg, var(--blush-100), var(--blush-50)); }
.page-hero h1 { margin: 10px 0 8px; color: var(--ink-900); }
.page-hero p { max-width: 60ch; margin-inline: auto; color: var(--ink-500); }
.crumbs { display: flex; justify-content: center; flex-wrap: wrap; gap: 8px; font-size: 11.5px; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-500); }
.crumbs a:hover { color: var(--rose-600); }
.crumbs-left { justify-content: flex-start; }

/* Beliriş animasyonu */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .8s var(--ease-out), transform .8s var(--ease-out); }
.reveal.in { opacity: 1; transform: none; }

/* İskelet yükleyici */
.skeleton { position: relative; overflow: hidden; background: var(--blush-100); border-radius: var(--radius-sm); }
.skeleton::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.62), transparent);
  animation: shimmer 1.4s infinite;
}
@keyframes shimmer { to { transform: translateX(100%); } }

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}
.skip-link {
  position: absolute; left: 12px; top: -60px; z-index: 999;
  background: var(--ink-900); color: #fff; padding: 10px 18px; border-radius: 0 0 6px 6px;
  transition: top .25s;
}
.skip-link:focus { top: 0; }

.hide-mobile { display: none; }
@media (min-width: 720px) { .hide-mobile { display: initial; } .hide-desktop { display: none !important; } }

.badge-soft {
  display: inline-flex; align-items: center; gap: 6px; padding: 5px 11px;
  background: var(--blush-200); border-radius: 100px; font-size: 11px;
  letter-spacing: .12em; text-transform: uppercase; color: var(--rose-700);
}

.note {
  border-left: 2px solid var(--gold-400); background: var(--blush-100);
  padding: 14px 18px; border-radius: 0 var(--radius) var(--radius) 0; font-size: 13.5px; line-height: 1.7;
}

.info-grid { display: grid; gap: 18px; grid-template-columns: minmax(0, 1fr); }
@media (min-width: 760px) { .info-grid { grid-template-columns: repeat(3, 1fr); } }
.info-card { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); padding: 26px; height: 100%; }
.info-card svg { width: 26px; height: 26px; color: var(--gold-500); margin-bottom: 14px; }
.info-card h3 { font-family: var(--font-display); font-size: 21px; color: var(--ink-900); margin-bottom: 8px; }
.info-card p { font-size: 13.5px; color: var(--ink-500); line-height: 1.7; }

/* ---------- 21. Ödeme & sepet sütunları ---------- */
@media (min-width: 940px) {
  .checkout-cols { grid-template-columns: 1fr 380px; gap: 40px !important; }
  .cart-cols { grid-template-columns: 1fr 380px; }
}

/* ---------- 22. İkon boyutları ve mobil dokunma hedefleri ---------- */
.mobile-nav a svg { width: 15px; height: 15px; color: var(--ink-300); }
.mobile-nav a:hover svg { color: var(--rose-500); }
.rail-nav svg, .stage-nav svg { width: 18px; height: 18px; }
.summary svg, .note svg, .stack svg { flex: 0 0 auto; }
.trust-item svg, .info-card svg { display: block; }

@media (max-width: 999px) {
  :root { --header-h: 84px; }
  .card-fav { width: 40px; height: 40px; }
  .chip { min-height: 38px; }
  .size-opt { min-height: 40px; }
  .filter-opt { padding: 9px 0; }
  .footer-links a { padding: 8px 0; }
  .toc a { padding: 7px 0; }
}
@media (max-width: 400px) {
  .product-grid { gap: 12px 8px; }
  .card-title { font-size: 13px; }
  .btn { padding: 0 18px; font-size: 11.5px; }
}

/* ---------- 23. Mobil düzeltmeleri ---------- */

/* iOS Safari'de body'ye overflow:hidden vermek kaydırmayı durdurmaz.
   Bu yüzden katman açıkken gövde sabitlenir (konum JS ile korunur). */
body.no-scroll {
  position: fixed;
  left: 0; right: 0; width: 100%;
  overflow: hidden;
}

/* iOS, 16px'ten küçük yazılı alanlara odaklanınca sayfayı otomatik büyütür.
   Bunu engellemek için mobilde form yazı boyutu 16px'e sabitlenir. */
@media (max-width: 767px) {
  .input, .select, .textarea, .qty input, input, select, textarea { font-size: 16px; }
  .select { background-position: right 12px center; }
}

/* Dokunuşta oluşan mavi parlamayı marka rengiyle değiştir */
html { -webkit-tap-highlight-color: rgba(163, 93, 108, .14); }

/* Filtre paneli mobilde tam ekran açılır — kapalıyken tamamen gizlensin */
@media (max-width: 999px) {
  .filters {
    overflow: hidden;
    visibility: hidden;
    transition: transform .42s var(--ease-out), visibility 0s linear .42s;
  }
  .filters.on {
    visibility: visible;
    transition: transform .42s var(--ease-out), visibility 0s linear 0s;
  }
  .filters-scroll { min-height: 0; -webkit-overflow-scrolling: touch; overscroll-behavior: contain; }
}

/* Modal katmanı kapalıyken erişilebilirlik ağacından da çıksın */
.modal-scrim { visibility: hidden; transition: opacity .3s, visibility 0s linear .3s; }
.modal-scrim.on { visibility: visible; transition: opacity .3s, visibility 0s linear 0s; }
.modal-body { min-height: 0; -webkit-overflow-scrolling: touch; overscroll-behavior: contain; }

/* Uzun ürün adları ve kelimeler mobilde taşmasın */
.card-title, .pdp-title, .cart-line .t, .search-hit .t { overflow-wrap: anywhere; }
.legal-page p, .legal-page li, .footer-firm { overflow-wrap: break-word; }

/* Çentikli ekranlarda alt güvenli alan */
@media (max-width: 767px) {
  .site-footer { padding-bottom: env(safe-area-inset-bottom); }
  .wa-float { bottom: max(16px, env(safe-area-inset-bottom)); }
}

/* Yatay kaydırmalı vitrinler kenarlara yapışmasın */
@media (max-width: 640px) {
  .rail { scroll-padding-left: 16px; }
}

/* Sıralama açılır listesi — mobilde iOS yakınlaştırmasını önlemek için 16px kalır */
.select-sort { min-height: 40px; min-width: 180px; font-size: 13px; }
@media (max-width: 767px) { .select-sort { font-size: 16px; min-width: 150px; } }

/* Çerez bildirimi ile mobil satın alma çubuğu çakışmasın */
body.has-sticky-bar .cookie-bar { bottom: calc(84px + env(safe-area-inset-bottom)); }
@media (max-width: 480px) {
  .cookie-bar { left: 10px; right: 10px; padding: 16px 18px; border-radius: var(--radius); }
  .cookie-bar p { font-size: 12.5px; }
  .cookie-actions .btn { flex: 1 1 auto; }
}

/* Mobilde küçük kalan dokunma hedeflerini büyüt */
@media (max-width: 767px) {
  .remove-x { display: inline-block; padding: 9px 2px; }
  .qty-mini { height: 40px; }
  .qty-mini button { width: 38px; }
  .qty-mini span { min-width: 34px; }
  .link-underline { padding-block: 6px; }
  .search-hit { padding: 12px 10px; }
  .filter-head { padding-block: 4px; }
  .acc-head { padding: 19px 0; }
}

/* Tek sütuna düşen ızgaralar, geniş içerik (tablo vb.) yüzünden
   ekranı taşırmasın — sütun daralabilir olmalı. */
@media (max-width: 939px) {
  .contact-cols, .checkout-cols, .cart-cols, .shop-layout, .pdp, .gallery, .editorial-inner, .hero-inner, .footer-top {
    grid-template-columns: minmax(0, 1fr);
  }
}

/* Çok dar ekranlarda (≤400px) sepet satırı sığsın */
@media (max-width: 400px) {
  .cart-line { gap: 11px; }
  .cart-line img { width: 72px; height: 96px; }
  .cart-line .row-between { flex-wrap: wrap; row-gap: 10px; }
  .cart-line .row { gap: 12px; }
  .qty-mini button { width: 34px; }
  .qty-mini span { min-width: 30px; }
}

/* ==========================================================================
   24. Kampanya — "3 al 2 öde"
   ========================================================================== */

/* ---------- Anasayfa banner'ı ---------- */
.kampanya-banner {
  position: relative; overflow: hidden;
  background:
    radial-gradient(120% 140% at 12% 20%, rgba(163,93,108,.95) 0%, transparent 60%),
    radial-gradient(100% 120% at 88% 80%, rgba(138,106,50,.85) 0%, transparent 58%),
    linear-gradient(120deg, #3A2A2E 0%, #52353D 45%, #3A2A2E 100%);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: clamp(26px, 4vw, 44px) clamp(20px, 4vw, 52px);
  isolation: isolate;
}
.kampanya-banner::before,
.kampanya-banner::after {
  content: ""; position: absolute; border-radius: 50%; z-index: -1;
  border: 1px solid rgba(224,199,154,.28);
}
.kampanya-banner::before { width: 320px; height: 320px; top: -140px; right: -90px; }
.kampanya-banner::after  { width: 210px; height: 210px; bottom: -110px; left: -60px;
  border-style: dashed; border-color: rgba(231,195,201,.24); }

.kampanya-ic {
  display: grid; gap: clamp(18px, 3vw, 40px); align-items: center;
  grid-template-columns: minmax(0, 1fr);
}
@media (min-width: 860px) { .kampanya-ic { grid-template-columns: 1fr auto; } }

.kampanya-etiket {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 14px; border-radius: 100px;
  background: rgba(224,199,154,.16); border: 1px solid rgba(224,199,154,.42);
  font-size: 10.5px; letter-spacing: .24em; text-transform: uppercase;
  font-weight: 500; color: var(--gold-300);
}
.kampanya-baslik {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 6.4vw, 4.4rem);
  font-weight: 500; line-height: 1; letter-spacing: .01em;
  margin: 14px 0 10px; color: #fff;
}
.kampanya-baslik em {
  font-style: normal;
  background: linear-gradient(100deg, var(--gold-300) 10%, #F6E4C4 50%, var(--gold-300) 90%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: var(--gold-300);
}
.kampanya-alt {
  font-size: clamp(14px, 1.6vw, 16.5px); line-height: 1.6;
  color: rgba(250,237,233,.82); max-width: 46ch; margin-bottom: 22px;
}
.kampanya-cta { display: flex; flex-wrap: wrap; gap: 10px; align-items: center; }
.kampanya-cta .btn { --btn-bg: var(--gold-300); --btn-fg: #3A2A2E; --btn-bd: var(--gold-300); }
.kampanya-cta .btn:hover { --btn-bg: #fff; --btn-bd: #fff; }
.kampanya-cta .btn.ikincil { --btn-bg: transparent; --btn-fg: #fff; --btn-bd: rgba(255,255,255,.4); }
.kampanya-cta .btn.ikincil:hover { --btn-bg: rgba(255,255,255,.12); --btn-bd: #fff; }
.kampanya-sure { font-size: 12px; color: rgba(250,237,233,.6); letter-spacing: .06em; }

/* Sağdaki 3 kutu görseli */
.kampanya-sayilar { display: flex; align-items: center; gap: clamp(8px, 1.6vw, 14px); }
.kampanya-kutu {
  width: clamp(62px, 9vw, 88px); aspect-ratio: 3/4; border-radius: 8px;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 4px;
  background: rgba(255,255,255,.09); border: 1px solid rgba(255,255,255,.2);
  backdrop-filter: blur(4px);
}
.kampanya-kutu .n {
  font-family: var(--font-display); font-size: clamp(22px, 3vw, 30px);
  line-height: 1; color: #fff;
}
.kampanya-kutu .e {
  font-size: 8.5px; letter-spacing: .16em; text-transform: uppercase;
  color: rgba(250,237,233,.6);
}
.kampanya-kutu.bedava {
  background: linear-gradient(160deg, var(--gold-300), var(--gold-500));
  border-color: transparent; box-shadow: 0 10px 26px rgba(224,199,154,.28);
}
.kampanya-kutu.bedava .n { color: #3A2A2E; }
.kampanya-kutu.bedava .e { color: rgba(58,42,46,.7); font-weight: 600; }
.kampanya-arti { font-size: 18px; color: rgba(250,237,233,.45); }
.kampanya-esittir { font-size: 15px; color: var(--gold-300); letter-spacing: .1em; }

@media (max-width: 859px) {
  .kampanya-sayilar { justify-content: center; }
}

/* ---------- Ürün kartı rozeti ---------- */
.badge-tag.kampanya {
  background: linear-gradient(135deg, var(--gold-500), var(--gold-700));
  color: #fff; letter-spacing: .12em;
}

/* ---------- Sepet / özet indirim satırı ---------- */
.summary-row.indirim span:first-child { color: var(--success); }
.summary-row.indirim strong,
.summary-row.indirim span:last-child { color: var(--success); font-weight: 500; }

.kampanya-ipucu {
  display: flex; gap: 10px; align-items: flex-start;
  background: linear-gradient(100deg, var(--blush-100), var(--blush-200));
  border: 1px solid var(--gold-300);
  border-radius: var(--radius); padding: 13px 16px;
  font-size: 13.5px; line-height: 1.55; color: var(--ink-800);
  margin-bottom: 14px;
}
.kampanya-ipucu svg { width: 19px; height: 19px; color: var(--gold-600); margin-top: 1px; }
.kampanya-ipucu strong { color: var(--rose-700); }
.kampanya-ipucu.kazandi {
  background: linear-gradient(100deg, #E8F3EE, #D9EBE2);
  border-color: #9CCBB5;
}
.kampanya-ipucu.kazandi svg { color: var(--success); }
.kampanya-ipucu.kazandi strong { color: var(--success); }

/* ---------- Duyuru şeridi vurgusu ---------- */
.announce .kampanya-vurgu {
  color: var(--gold-300); font-weight: 600; letter-spacing: .18em;
}

/* ---------- Ürün sayfası kampanya kutusu ---------- */
.pdp-kampanya {
  display: flex; gap: 12px; align-items: flex-start;
  border: 1px solid var(--gold-300); border-radius: var(--radius);
  background: linear-gradient(100deg, var(--blush-100), var(--blush-200));
  padding: 14px 16px; margin-top: 18px;
}
.pdp-kampanya .ikon {
  flex: 0 0 auto; width: 38px; height: 38px; border-radius: 50%;
  background: linear-gradient(145deg, var(--gold-300), var(--gold-500));
  display: grid; place-items: center; color: #fff;
}
.pdp-kampanya .ikon svg { width: 20px; height: 20px; }
.pdp-kampanya .t {
  font-size: 12px; letter-spacing: .16em; text-transform: uppercase;
  font-weight: 600; color: var(--gold-700);
}
.pdp-kampanya .d { font-size: 13.5px; color: var(--ink-700); line-height: 1.55; margin-top: 3px; }
