/* ═══════════════════════════════════════════════════════════════
   Şan Amber — tema tokenları ve site stilleri
   (Organic design system + San Amber sayfa stilleri)
   ═══════════════════════════════════════════════════════════════ */

:root {
  --color-bg: #f5ead8;
  --color-surface: #ebddc5;
  --color-text: #201e1d;
  --color-accent: #c67139;
  --color-accent-2: #7a8a5e;
  --color-divider: color-mix(in srgb, #201e1d 16%, transparent);

  --color-neutral-100: #f9f4ed;
  --color-neutral-200: #eee7db;
  --color-neutral-300: #dcd3c4;
  --color-neutral-400: #c0b6a5;
  --color-neutral-500: #a19786;
  --color-neutral-600: #82796a;
  --color-neutral-700: #645c50;
  --color-neutral-800: #474238;
  --color-neutral-900: #2e2b25;

  --color-accent-100: #fff2eb;
  --color-accent-200: #ffe1d0;
  --color-accent-300: #ffc6a5;
  --color-accent-400: #f6a06b;
  --color-accent-500: #d67f48;
  --color-accent-600: #b2622d;
  --color-accent-700: #8c491a;
  --color-accent-800: #643312;
  --color-accent-900: #402310;

  --color-accent-2-100: #f0fae1;
  --color-accent-2-200: #e1eecc;
  --color-accent-2-600: #728157;
  --color-accent-2-700: #56633f;
  --color-accent-2-800: #3d472b;

  --color-danger: #a13a2a;
  --color-danger-bg: #fbe6e1;

  /* Başlıklarda klasik, yüksek kontrastlı bir serif; arayüzde nötr bir sans.
     Serif kurumsal ağırlık ve zanaat hissi veriyor, sans ise okunurluğu ve
     güveni taşıyor — fiyat, form, buton gibi karar anlarında serif yorucu.
     İkisinin de latin-ext altkümesi var, yani Ş/Ğ/İ/ı doğru çiziliyor;
     yazı tipi değiştirirken bunu MUTLAKA doğrula (bkz. README → Yazı tipi). */
  --font-heading: "Playfair Display", "Times New Roman", Georgia, serif;
  --font-body: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;

  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 28px;

  --shadow-sm: 0 1px 2px color-mix(in srgb, #2e2b25 14%, transparent);
  --shadow-md: 0 3px 10px color-mix(in srgb, #2e2b25 16%, transparent);
  --shadow-lg: 0 12px 32px color-mix(in srgb, #2e2b25 22%, transparent);

  --header-h: 78px;
  --topbar-h: 36px;
  --wrap: 1500px;
  --pad: clamp(18px, 3.2vw, 56px);
  --ease: cubic-bezier(.22, 1, .36, 1);
}

/* ── temel ── */
*, *::before, *::after { box-sizing: border-box; }
/* Katmanların display kuralları tarayıcının [hidden] varsayılanını ezdiği için
   hidden'ı açıkça güçlendiriyoruz — aksi hâlde mobil menü/mega menü hep açık gelir. */
[hidden] { display: none !important; }
html { scroll-behavior: smooth; }
body {
  margin: 0; background: var(--color-bg); color: var(--color-text);
  font-family: var(--font-body); font-size: 15px; line-height: 1.55;
  overflow-x: hidden; -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4, h5, h6 {
  /* Playfair'in 400'ü büyük puntoda cılız kalıyor; 600 ağırlık, önceki
     display yazı tipinin hacmini letterform'u bozmadan karşılıyor. */
  font-family: var(--font-heading); font-weight: 600;
  line-height: 1.14; letter-spacing: -0.015em; margin: 0 0 10px;
}
h1 { font-size: clamp(32px, 4.4vw, 60px); }
h2 { font-size: clamp(24px, 2.8vw, 40px); }
h3 { font-size: 24px; }
h4 { font-size: 19px; }
p { margin: 0 0 13px; }
a { color: var(--color-accent-700); text-decoration: none; transition: color .25s ease; }
a:hover { color: var(--color-accent); }
img { display: block; max-width: 100%; }
figure { margin: 0; }
button { font-family: inherit; }
:focus { outline: none; }
:focus-visible { outline: 2px solid var(--color-accent); outline-offset: 2px; }
::selection { background: color-mix(in srgb, var(--color-accent) 30%, transparent); }
::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-track { background: var(--color-neutral-200); }
::-webkit-scrollbar-thumb { background: var(--color-neutral-400); border-radius: 999px; }
::-webkit-scrollbar-thumb:hover { background: var(--color-accent-500); }

.page { display: flex; flex-direction: column; min-height: 100vh; }
main { flex: 1; }
.wrap { max-width: var(--wrap); margin: 0 auto; padding-inline: var(--pad); }
.wrap-narrow { max-width: 900px; margin: 0 auto; padding-inline: var(--pad); }
.section { padding-block: clamp(56px, 7vw, 110px); }
.section-sm { padding-block: clamp(36px, 4vw, 64px); }
.page-top { padding-top: calc(var(--topbar-h) + var(--header-h) + 40px); }
.eyebrow {
  font-size: 11px; letter-spacing: .26em; text-transform: uppercase;
  color: var(--color-accent-700); margin: 0 0 16px;
}
.lede { font-size: clamp(15px, 1.2vw, 18px); line-height: 1.75; color: var(--color-neutral-800); max-width: 62ch; }
.muted { color: var(--color-neutral-600); }
.center { text-align: center; }
.hr { height: 1px; border: 0; margin: 24px 0; background: var(--color-divider); }
.sec-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; flex-wrap: wrap; margin-bottom: 34px; }
.sec-head h2 { margin: 0; }

/* ── butonlar ── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  /* Butonlar bilerek sans: serif buton hem eskimiş duruyor hem de 14px'te
     okunurluğu düşürüyor. Serif yalnızca başlık ölçeğinde kalıyor. */
  cursor: pointer; text-decoration: none; font-family: var(--font-body); font-weight: 600;
  font-size: 14px; line-height: 1.2; letter-spacing: .005em; color: var(--color-text);
  background: transparent; border: 1px solid transparent;
  padding: 11px 22px; border-radius: 999px; transition: all .3s ease; white-space: nowrap;
}
.btn svg { display: block; flex: none; }
.btn:disabled, .btn.is-disabled { opacity: .45; cursor: not-allowed; pointer-events: none; }
.btn-primary { background: var(--color-accent); color: var(--color-bg); }
.btn-primary:hover { background: var(--color-accent-600); color: var(--color-bg); }
.btn-secondary { border-color: var(--color-divider); }
.btn-secondary:hover { background: color-mix(in srgb, var(--color-text) 7%, transparent); }
.btn-ghost { color: var(--color-accent-700); padding-inline: 6px; }
.btn-ghost:hover { color: var(--color-accent); }
.btn-danger { border: 1px solid var(--color-danger); color: var(--color-danger); }
.btn-danger:hover { background: var(--color-danger-bg); }
.btn-block { width: 100%; }
.btn-lg { height: 52px; padding-inline: 30px; font-size: 13px; letter-spacing: .1em; text-transform: uppercase; }
.btn-sm { padding: 7px 16px; font-size: 12.5px; }
.btn-icon { width: 40px; height: 40px; padding: 0; border-radius: 999px; }

/* ── form ── */
.field { display: block; margin-bottom: 16px; }
.field > label, .label {
  display: block; font-size: 12px; letter-spacing: .04em; margin-bottom: 6px;
  color: var(--color-neutral-700);
}
.input, select.input, textarea.input {
  width: 100%; min-height: 46px; padding: 11px 18px; font: inherit; font-size: 14.5px;
  color: var(--color-text); caret-color: var(--color-accent);
  background: var(--color-neutral-100); border: 1px solid var(--color-divider);
  border-radius: 999px; transition: border-color .25s ease, box-shadow .25s ease;
}
.input::placeholder { color: var(--color-neutral-500); }
.input:hover { border-color: var(--color-neutral-400); }
.input:focus { border-color: var(--color-accent); box-shadow: 0 0 0 3px rgba(198,113,57,.14); outline: none; }
textarea.input { min-height: 110px; resize: vertical; border-radius: var(--radius-lg); }
select.input { cursor: pointer; appearance: none;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%2382796a' stroke-width='3' stroke-linecap='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 16px center; padding-right: 40px;
}
.form-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 16px; }
.form-grid .full { grid-column: 1 / -1; }
.check { display: flex; align-items: flex-start; gap: 10px; cursor: pointer; font-size: 14px; }
.check input { margin-top: 3px; accent-color: var(--color-accent); width: 17px; height: 17px; }

/* ── kart / etiket / tablo ── */
.card {
  background: var(--color-surface); border-radius: 32px; padding: clamp(20px, 2.2vw, 32px);
}
.card-plain { background: var(--color-neutral-100); border-radius: 32px; padding: clamp(20px, 2.2vw, 32px); }
.elev-sm { box-shadow: var(--shadow-sm); }
.elev-md { box-shadow: var(--shadow-md); }
.tag {
  display: inline-flex; align-items: center; gap: 5px; font-size: 11px;
  letter-spacing: .04em; padding: 5px 12px; border-radius: 999px;
}
.tag-accent { background: var(--color-accent-100); color: var(--color-accent-800); }
.tag-green { background: var(--color-accent-2-100); color: var(--color-accent-2-800); }
.tag-neutral { background: var(--color-neutral-200); color: var(--color-neutral-800); }
.tag-danger { background: var(--color-danger-bg); color: var(--color-danger); }
.table { width: 100%; border-collapse: collapse; font-size: 14px; }
.table th {
  text-align: left; font-size: 11px; letter-spacing: .08em; text-transform: uppercase;
  color: var(--color-neutral-600); padding: 12px 10px; border-bottom: 1px solid var(--color-divider);
  font-weight: 600;
}
.table td { padding: 12px 10px; border-bottom: 1px solid color-mix(in srgb, var(--color-text) 8%, transparent); }

/* ── yıldızlar ── */
.stars { display: inline-flex; gap: 2px; color: var(--color-accent); }
.stars svg { display: block; }
.star-empty { color: var(--color-neutral-400); }

/* ═══ HEADER ═══ */
.hdr {
  position: fixed; top: 0; left: 0; right: 0; z-index: 70;
  transition: background .4s ease, box-shadow .4s ease;
}
.hdr.is-solid { background: var(--color-neutral-100); box-shadow: var(--shadow-sm); }
.hdr-in {
  max-width: var(--wrap); margin: 0 auto; padding-inline: var(--pad);
  height: var(--header-h); display: flex; align-items: center; gap: clamp(10px, 1.6vw, 26px);
}
.logo { display: flex; align-items: center; gap: 10px; color: inherit; flex: none; }
.logo:hover { color: inherit; }
.logo-orb {
  width: 12px; height: 12px; border-radius: 999px; flex: none;
  background: radial-gradient(circle at 32% 30%, #ffe0b0, #c67139 60%, #7a3c10);
  box-shadow: 0 0 12px rgba(198,113,57,.55);
}
.logo-txt { font-family: var(--font-heading); font-weight: 600; font-size: 17px; letter-spacing: .22em; text-transform: uppercase; }
/* Logo şeffaf bir sözcük markası — arkasında kutu yok, doğrudan krem
   zeminin üstünde duruyor. Yükseklik başlık yüksekliğine göre sınırlı. */
.logo-img { height: 44px; width: auto; display: block; }
.hdr-nav { display: flex; align-items: center; gap: clamp(12px, 1.6vw, 28px); margin-left: clamp(8px, 2vw, 34px); }
.nav-btn {
  display: inline-flex; align-items: center; gap: 5px; background: none; border: 0; padding: 6px 0;
  cursor: pointer; color: inherit; font-family: var(--font-body); font-size: 13.5px;
  letter-spacing: .04em; transition: color .3s ease; text-decoration: none;
}
.nav-btn:hover, .nav-btn.is-active { color: var(--color-accent); }
.hdr-spacer { flex: 1; }
.lang-sw { display: flex; align-items: center; gap: 2px; padding: 3px; border-radius: 999px; border: 1px solid currentColor; opacity: .9; }
.lang-sw a {
  font-size: 11px; letter-spacing: .08em; padding: 4px 9px; border-radius: 999px;
  color: inherit; line-height: 1;
}
.lang-sw a.on { background: var(--color-accent); color: var(--color-bg); }
.icon-btn {
  position: relative; width: 38px; height: 38px; display: grid; place-items: center;
  background: none; border: 0; border-radius: 999px; cursor: pointer; color: inherit;
  transition: background .3s ease;
}
.icon-btn:hover { background: color-mix(in srgb, var(--color-text) 8%, transparent); color: inherit; }
.badge {
  position: absolute; top: 2px; right: 1px; min-width: 17px; height: 17px; padding: 0 4px;
  display: grid; place-items: center; border-radius: 999px;
  background: var(--color-accent); color: var(--color-bg); font-size: 10px; font-weight: 700;
}
.badge.hidden { display: none; }
.only-wide { display: flex; }
.only-narrow { display: none; }

/* duyuru şeridi — sabit header'ın ilk satırı */
.topbar {
  background: var(--color-neutral-900); color: var(--color-neutral-200);
  font-size: 11.5px; letter-spacing: .1em; text-transform: uppercase;
  height: var(--topbar-h); display: flex; align-items: center;
}
.topbar-in {
  max-width: var(--wrap); margin: 0 auto; padding: 9px var(--pad);
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.topbar a { color: var(--color-accent-400); }
.topbar a:hover { color: var(--color-accent-300); }

/* mega menü */
.mega {
  position: absolute; left: 0; right: 0; top: 100%;
  background: var(--color-neutral-100); box-shadow: var(--shadow-lg); color: var(--color-text);
  animation: sa-drop .34s var(--ease) both;
}
.mega-in {
  max-width: var(--wrap); margin: 0 auto; padding: clamp(26px,3vw,44px) var(--pad);
  display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: clamp(22px,3vw,50px);
}
.mega-head { font-size: 10.5px; letter-spacing: .22em; text-transform: uppercase; color: var(--color-neutral-600); margin-bottom: 16px; }
.mega-col { display: flex; flex-direction: column; gap: 11px; }
.mega-link { font-size: 14.5px; color: var(--color-text); display: flex; align-items: baseline; gap: 8px; }
.mega-link:hover { color: var(--color-accent); }
.mega-link small { font-size: 11px; color: var(--color-neutral-600); }
.mega-feat { display: flex; gap: 16px; flex-wrap: wrap; }
.mega-feat a { width: 140px; color: inherit; }
.mega-feat .ph { aspect-ratio: 4/5; border-radius: var(--radius-lg); overflow: hidden; background: var(--color-neutral-200); }
.mega-feat .ph img { width: 100%; height: 100%; object-fit: cover; }
.mega-feat .nm { font-size: 12.5px; font-weight: 600; margin-top: 9px; line-height: 1.35; }
.mega-feat .pr { font-size: 12px; color: var(--color-neutral-600); margin-top: 2px; }

/* mobil nav */
.mobnav {
  position: fixed; inset: 0; z-index: 90; background: var(--color-neutral-900);
  color: var(--color-neutral-100); padding: 24px clamp(20px,6vw,40px);
  display: flex; flex-direction: column; animation: sa-in .3s ease both; overflow-y: auto;
}
.mobnav-top { display: flex; align-items: center; justify-content: space-between; }
.mobnav nav { margin-top: 40px; display: flex; flex-direction: column; gap: 4px; }
.mob-link {
  font-family: var(--font-heading); font-weight: 500; font-size: 26px; color: var(--color-neutral-100);
  padding: 10px 0; letter-spacing: -.015em;
}
.mob-link:hover { color: var(--color-accent-400); }
.mob-sub { font-size: 15px; color: rgba(249,244,237,.66); padding: 7px 0 7px 16px; }
.mob-sub:hover { color: var(--color-accent-400); }
.close-x {
  width: 38px; height: 38px; display: grid; place-items: center; border-radius: 999px;
  border: 1px solid currentColor; background: none; color: inherit; cursor: pointer; font-size: 15px;
}

/* arama katmanı */
.searchbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 95; background: var(--color-neutral-100);
  box-shadow: var(--shadow-lg); animation: sa-drop .35s var(--ease) both;
}
.searchbar-in { max-width: 880px; margin: 0 auto; padding: clamp(26px,4vw,50px) var(--pad); }
.searchbar form { display: flex; align-items: center; gap: 14px; border-bottom: 1px solid var(--color-divider); padding-bottom: 14px; }
.searchbar input {
  flex: 1; border: 0; background: none; outline: none; font-family: var(--font-body);
  font-size: clamp(17px, 2.2vw, 26px); color: var(--color-text); min-width: 0;
}
.search-chips { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 22px; }

.scrim { position: fixed; inset: 0; z-index: 80; background: rgba(46,43,37,.44); backdrop-filter: blur(3px); animation: sa-in .3s ease both; }

/* ═══ HERO ═══ */
.hero {
  position: relative; min-height: 92vh; display: flex; align-items: center; overflow: hidden;
  background: linear-gradient(178deg, #f7efe0 0%, var(--color-bg) 42%, #efe1c9 100%);
}
.hero canvas { position: absolute; inset: 0; width: 100%; height: 100%; pointer-events: none; }
.hero-in { position: relative; z-index: 2; max-width: var(--wrap); width: 100%; margin: 0 auto; padding: 130px var(--pad) 100px; }
.hero-box { max-width: min(660px, 94%); }
.hero h1 { font-size: clamp(44px, 8vw, 108px); line-height: 1.02; letter-spacing: -.035em; margin: 20px 0 0; }
.hero-tag {
  font-family: var(--font-body); font-size: clamp(16px, 2vw, 25px); letter-spacing: .16em;
  text-transform: uppercase; color: var(--color-accent-800); margin-top: 16px;
}
.hero p { font-size: clamp(15px, 1.3vw, 18px); line-height: 1.75; max-width: 470px; margin: 24px 0 0; color: var(--color-neutral-800); }
.hero-cta { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }
.hero .fade-1 { animation: sa-fade 1s var(--ease) .1s both; }
.hero .fade-2 { animation: sa-fade 1s var(--ease) .25s both; }
.hero .fade-3 { animation: sa-fade 1s var(--ease) .4s both; }
.hero .fade-4 { animation: sa-fade 1s var(--ease) .55s both; }
.hero .fade-5 { animation: sa-fade 1s var(--ease) .7s both; }
.scroll-hint {
  position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%); z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: 10px;
}
.scroll-hint span:first-child { font-size: 9.5px; letter-spacing: .3em; text-transform: uppercase; color: var(--color-neutral-600); }
.scroll-line { position: relative; display: block; width: 1px; height: 40px; background: var(--color-neutral-400); overflow: hidden; }
.scroll-line i { position: absolute; inset: 0; background: var(--color-accent); animation: sa-scrollhint 2.1s ease-in-out infinite; }

/* marquee */
.marquee { background: var(--color-neutral-900); color: var(--color-neutral-200); overflow: hidden; padding: 16px 0; }
.marquee-track { display: flex; width: max-content; animation: sa-marquee 34s linear infinite; }
.marquee-track span {
  display: inline-flex; align-items: center; gap: 24px; padding: 0 24px;
  font-size: 11px; letter-spacing: .24em; text-transform: uppercase; white-space: nowrap;
}
.marquee-track i { width: 4px; height: 4px; border-radius: 999px; background: var(--color-accent-500); }

/* ═══ ÜRÜN KARTI ═══ */
.pcard { display: flex; flex-direction: column; gap: 14px; }
/* Kalp ve "sepete ekle" barı görselin üstünde durur — bu yüzden ayrı bir çerçeve. */
.pcard-frame { position: relative; }
.pcard-media {
  position: relative; aspect-ratio: 4/5; border-radius: var(--radius-lg); overflow: hidden;
  background: var(--color-neutral-200); box-shadow: var(--shadow-sm); display: block;
}
.pcard-media img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1.1s var(--ease);
}
.pcard-frame:hover .pcard-media img { transform: scale(1.06); }
.pcard-sheen {
  position: absolute; inset: 0; pointer-events: none; opacity: 0; transform: translateX(-40%);
  background: linear-gradient(115deg, transparent 30%, rgba(255,255,255,.28) 46%, transparent 62%);
  transition: opacity .9s ease, transform 1.2s var(--ease);
}
.pcard-frame:hover .pcard-sheen { opacity: 1; transform: translateX(0); }
.pcard-badge {
  position: absolute; top: 14px; left: 14px; z-index: 2; font-size: 9.5px; letter-spacing: .16em;
  text-transform: uppercase; padding: 6px 12px; border-radius: 999px;
  background: rgba(245,234,216,.92); backdrop-filter: blur(6px); color: var(--color-accent-800);
}
.pcard-badge.sale { background: var(--color-accent); color: var(--color-bg); }
.pcard-heart {
  position: absolute; top: 12px; right: 12px; z-index: 3; width: 34px; height: 34px;
  display: grid; place-items: center; border: 0; border-radius: 999px; cursor: pointer;
  background: rgba(245,234,216,.88); backdrop-filter: blur(6px); color: var(--color-neutral-700);
  opacity: 0; transform: translateY(-6px); transition: all .4s var(--ease);
}
.pcard-frame:hover .pcard-heart, .pcard-heart.on { opacity: 1; transform: none; }
.pcard-heart.on { color: var(--color-accent-700); }
.pcard-bar {
  position: absolute; left: 12px; right: 12px; bottom: 12px; z-index: 3;
  opacity: 0; transform: translateY(14px); transition: all .45s var(--ease);
}
.pcard-frame:hover .pcard-bar { opacity: 1; transform: none; }
.pcard-body { display: flex; flex-direction: column; gap: 5px; }
.pcard-stone { font-size: 10px; letter-spacing: .18em; text-transform: uppercase; color: var(--color-accent-700); }
.pcard-name { font-family: var(--font-body); font-weight: 600; font-size: 15px; line-height: 1.35; margin: 0; color: var(--color-text); }
a.pcard-name:hover { color: var(--color-accent-700); }
.pcard-foot { display: flex; align-items: baseline; gap: 10px; flex-wrap: wrap; margin-top: 2px; }
.pcard-price { font-size: 15.5px; letter-spacing: .02em; }
.pcard-old { font-size: 12.5px; color: var(--color-neutral-500); text-decoration: line-through; }
.pcard-rate { display: flex; align-items: center; gap: 4px; font-size: 11px; color: var(--color-neutral-600); }
.pcard-out {
  position: absolute; inset: 0; z-index: 2; display: grid; place-items: center;
  background: rgba(245,234,216,.62); font-size: 11px; letter-spacing: .18em; text-transform: uppercase;
  color: var(--color-accent-900);
}

/* ürün grid */
.pgrid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: clamp(16px, 2vw, 30px); }
.pgrid-4 { display: grid; grid-template-columns: repeat(auto-fit, minmax(215px, 1fr)); gap: clamp(16px, 2vw, 30px); }
.rail { display: grid; grid-auto-flow: column; grid-auto-columns: minmax(220px, 1fr); gap: clamp(14px,1.8vw,26px); overflow-x: auto; padding-bottom: 10px; scroll-snap-type: x mandatory; }
.rail > * { scroll-snap-align: start; }
.rail::-webkit-scrollbar { height: 6px; }

/* ═══ KOLEKSİYON KARTLARI ═══ */
.colgrid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: clamp(14px, 1.8vw, 26px); }
.colcard {
  position: relative; aspect-ratio: 3/4; border-radius: var(--radius-lg); overflow: hidden;
  display: flex; align-items: flex-end; color: var(--color-neutral-100);
  background: var(--color-neutral-300); box-shadow: var(--shadow-sm);
  transition: transform .55s var(--ease), box-shadow .55s var(--ease);
}
.colcard:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); color: var(--color-neutral-100); }
.colcard img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--ease); }
.colcard:hover img { transform: scale(1.07); }
.colcard::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(32,30,29,.78) 0%, rgba(32,30,29,.15) 55%, transparent 100%); }
.colcard-txt { position: relative; z-index: 2; padding: clamp(18px,2vw,28px); width: 100%; }
.colcard-txt h3 { font-size: clamp(20px, 2vw, 28px); margin: 0; color: var(--color-neutral-100); }
.colcard-txt p { font-size: 12.5px; margin: 6px 0 0; color: rgba(249,244,237,.76); }
.colcard-txt .go { display: inline-flex; align-items: center; gap: 6px; margin-top: 12px; font-size: 10.5px; letter-spacing: .16em; text-transform: uppercase; color: var(--color-accent-300); }

/* ═══ HİKÂYE / İSTATİSTİK ═══ */
.split { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: clamp(32px, 5vw, 80px); align-items: center; }
.story-img { position: relative; aspect-ratio: 4/5; border-radius: 38px; overflow: hidden; box-shadow: var(--shadow-lg); background: var(--color-neutral-300); }
.story-img img { width: 100%; height: 100%; object-fit: cover; }
.story-orb {
  position: absolute; right: -6%; bottom: -8%; width: 44%; aspect-ratio: 1; border-radius: 999px;
  overflow: hidden; box-shadow: var(--shadow-lg); border: 8px solid var(--color-bg);
  animation: sa-float 7s ease-in-out infinite; background: var(--color-neutral-300);
}
.story-orb img { width: 100%; height: 100%; object-fit: cover; }
.stats { display: grid; grid-template-columns: repeat(auto-fit, minmax(120px, 1fr)); gap: 22px; margin-top: 34px; }
.stat b { display: block; font-family: var(--font-heading); font-size: clamp(28px, 3vw, 42px); color: var(--color-accent-800); line-height: 1; }
.stat span { display: block; font-size: 11.5px; letter-spacing: .12em; text-transform: uppercase; color: var(--color-neutral-600); margin-top: 8px; }

/* özellik kutuları */
.feats { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: clamp(14px,1.8vw,24px); }
.feat { background: var(--color-surface); border-radius: 32px; padding: clamp(20px,2vw,30px); }
.feat .ic { width: 40px; height: 40px; display: grid; place-items: center; border-radius: 999px; background: var(--color-accent-100); color: var(--color-accent-700); margin-bottom: 16px; }
.feat h4 { font-family: var(--font-body); font-weight: 700; font-size: 15px; margin: 0 0 8px; letter-spacing: 0; }
.feat p { font-size: 13.5px; line-height: 1.7; color: var(--color-neutral-700); margin: 0; }

/* yorumlar */
.quotes { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: clamp(14px,1.8vw,26px); }
.quote { background: var(--color-surface); border-radius: 32px; padding: clamp(20px,2vw,30px); display: flex; flex-direction: column; gap: 14px; margin: 0; }
.quote blockquote { margin: 0; font-size: 14.5px; line-height: 1.7; }
.quote figcaption { font-size: 11.5px; color: var(--color-neutral-600); }

/* SSS akordeon */
.acc { border-top: 1px solid var(--color-divider); }
.acc-item { border-bottom: 1px solid var(--color-divider); }
.acc-btn {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px;
  background: none; border: 0; cursor: pointer; padding: 20px 0; text-align: left; color: inherit;
  font-family: var(--font-body); font-size: 15px; font-weight: 700;
}
.acc-btn i { font-style: normal; font-size: 20px; color: var(--color-accent-700); transition: transform .3s ease; }
.acc-item.open .acc-btn i { transform: rotate(45deg); }
.acc-panel { display: none; padding-bottom: 20px; font-size: 14px; line-height: 1.75; color: var(--color-neutral-700); }
.acc-item.open .acc-panel { display: block; animation: sa-fade .35s var(--ease) both; }

/* bülten */
.news { background: var(--color-neutral-900); color: var(--color-neutral-200); border-radius: 40px; padding: clamp(32px,4vw,64px); text-align: center; }
.news h2 { color: var(--color-neutral-100); max-width: 20ch; margin: 0 auto 14px; }
.news p { color: rgba(249,244,237,.66); max-width: 46ch; margin: 0 auto 26px; }
.news form { display: flex; gap: 10px; max-width: 460px; margin: 0 auto; flex-wrap: wrap; }
.news .input { flex: 1; min-width: 200px; background: rgba(249,244,237,.08); border-color: rgba(249,244,237,.2); color: var(--color-neutral-100); }
.news .input::placeholder { color: rgba(249,244,237,.45); }

/* ═══ ÜRÜN LİSTE / FİLTRE ═══ */
.crumb { display: flex; align-items: center; gap: 8px; font-size: 11.5px; letter-spacing: .1em; text-transform: uppercase; color: var(--color-neutral-600); flex-wrap: wrap; }
.crumb a { color: var(--color-neutral-600); }
.crumb a:hover { color: var(--color-accent); }
.crumb .cur { color: var(--color-text); }
.filters {
  display: flex; flex-wrap: wrap; align-items: center; gap: 10px;
  margin: 30px 0 0; padding-bottom: 22px; border-bottom: 1px solid var(--color-divider);
}
.chip {
  padding: 9px 18px; border-radius: 999px; font-size: 12.5px; cursor: pointer;
  border: 1px solid var(--color-divider); background: none; color: var(--color-text); transition: all .25s ease;
}
.chip:hover { border-color: var(--color-accent); color: var(--color-accent-700); }
.chip.on { background: var(--color-accent); border-color: var(--color-accent); color: var(--color-bg); }
.filters .grow { flex: 1; min-width: 8px; }
.filters select.input { width: auto; min-width: 165px; min-height: 42px; }

/* ═══ ÜRÜN DETAY ═══ */
.pdp { display: grid; grid-template-columns: repeat(auto-fit, minmax(330px, 1fr)); gap: clamp(28px, 4vw, 66px); margin-top: 28px; align-items: start; }
.pdp-gallery { position: sticky; top: calc(var(--topbar-h) + var(--header-h) + 16px); }
.pdp-main {
  position: relative; aspect-ratio: 1; border-radius: 38px; overflow: hidden;
  background: var(--color-neutral-200); box-shadow: var(--shadow-md); cursor: zoom-in;
}
.pdp-main img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s var(--ease); }
.pdp-stone-tag {
  position: absolute; top: 16px; left: 16px; z-index: 2; font-size: 10px; letter-spacing: .16em;
  text-transform: uppercase; padding: 7px 14px; border-radius: 999px;
  background: rgba(245,234,216,.92); backdrop-filter: blur(6px); color: var(--color-accent-800);
}
.pdp-thumbs { display: flex; gap: 10px; margin-top: 12px; flex-wrap: wrap; }
.pdp-thumb {
  width: 72px; height: 72px; border-radius: 18px; overflow: hidden; cursor: pointer;
  border: 2px solid transparent; background: var(--color-neutral-200); padding: 0;
  transition: border-color .25s ease;
}
.pdp-thumb img { width: 100%; height: 100%; object-fit: cover; }
.pdp-thumb.on { border-color: var(--color-accent); }
.pdp-info { max-width: 580px; }
.pdp-info h1 { font-size: clamp(26px, 3.2vw, 44px); line-height: 1.14; letter-spacing: -.03em; margin: 0; }
.pdp-rate { display: flex; align-items: center; gap: 12px; margin-top: 14px; font-size: 12.5px; color: var(--color-neutral-600); }
/* Fiyat ve toplam bilerek sans: para rakamı serif'te süslü duruyor, burada
   istenen his kesinlik. */
.pdp-price { font-family: var(--font-body); font-weight: 600; letter-spacing: -.01em; font-size: clamp(24px, 2.4vw, 34px); margin-top: 20px; color: var(--color-accent-800); display: flex; align-items: baseline; gap: 14px; flex-wrap: wrap; }
.pdp-price .old { font-family: var(--font-body); font-size: 17px; color: var(--color-neutral-500); text-decoration: line-through; }
.pdp-stock { display: flex; align-items: center; gap: 9px; margin-top: 16px; font-size: 12.5px; color: var(--color-accent-2-700); }
.pdp-stock i { width: 7px; height: 7px; border-radius: 999px; background: var(--color-accent-2-600); box-shadow: 0 0 0 4px rgba(143,160,115,.22); }
.pdp-stock.out { color: var(--color-danger); }
.pdp-stock.out i { background: var(--color-danger); box-shadow: 0 0 0 4px rgba(161,58,42,.16); }
.pdp-block { margin-top: 28px; }
.pdp-block > .label { font-size: 11px; letter-spacing: .16em; text-transform: uppercase; color: var(--color-neutral-600); margin-bottom: 12px; }
.variants { display: flex; flex-wrap: wrap; gap: 9px; }
.variant {
  padding: 11px 20px; border-radius: 999px; border: 1px solid var(--color-divider);
  background: none; cursor: pointer; font-size: 13.5px; color: var(--color-text); transition: all .25s ease;
}
.variant:hover { border-color: var(--color-accent); }
.variant.on { background: var(--color-accent); border-color: var(--color-accent); color: var(--color-bg); }
.buy-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; align-items: center; }
.stepper { display: flex; align-items: center; border: 1px solid var(--color-divider); border-radius: 999px; height: 52px; }
.stepper button { width: 42px; height: 100%; background: none; border: 0; cursor: pointer; font-size: 19px; color: var(--color-text); }
.stepper button:hover { color: var(--color-accent); }
.stepper span, .stepper input { min-width: 34px; text-align: center; font-size: 15px; border: 0; background: none; width: 40px; }
.pdp-perks { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 12px; margin-top: 22px; }
.pdp-perks div { display: flex; align-items: center; gap: 9px; font-size: 12.5px; color: var(--color-neutral-700); }
.pdp-perks svg { color: var(--color-accent); flex: none; }
.wish-btn { width: 52px; height: 52px; border-radius: 999px; border: 1px solid var(--color-divider); background: none; display: grid; place-items: center; cursor: pointer; color: var(--color-neutral-700); transition: all .3s ease; }
.wish-btn:hover, .wish-btn.on { border-color: var(--color-accent); color: var(--color-accent-700); }

/* ═══ SEPET / ÖDEME ═══ */
.two-col { display: grid; grid-template-columns: 1fr minmax(300px, 360px); gap: clamp(24px,3vw,44px); align-items: start; }
.sticky-side { position: sticky; top: calc(var(--topbar-h) + var(--header-h) + 16px); }
.cart-line { display: flex; gap: 18px; align-items: center; padding: 20px 0; border-bottom: 1px solid var(--color-divider); }
.cart-thumb { width: 96px; height: 116px; border-radius: 20px; overflow: hidden; flex: none; background: var(--color-neutral-200); }
.cart-thumb img { width: 100%; height: 100%; object-fit: cover; }
.cart-line .info { flex: 1; min-width: 0; }
.cart-line .info h3 { font-family: var(--font-body); font-weight: 600; font-size: 15px; margin: 0 0 4px; }
.cart-actions { display: flex; flex-direction: column; align-items: flex-end; gap: 12px; }
.stepper-sm { display: flex; align-items: center; border: 1px solid var(--color-divider); border-radius: 999px; height: 36px; }
.stepper-sm button { width: 32px; height: 100%; background: none; border: 0; cursor: pointer; font-size: 15px; color: var(--color-text); }
.stepper-sm span { min-width: 26px; text-align: center; font-size: 13.5px; }
.link-danger { background: none; border: 0; cursor: pointer; font-size: 11.5px; letter-spacing: .1em; text-transform: uppercase; color: var(--color-neutral-600); padding: 0; }
.link-danger:hover { color: var(--color-danger); }
.sum-row { display: flex; justify-content: space-between; gap: 12px; font-size: 14px; padding: 7px 0; }
.sum-row.total { font-family: var(--font-body); font-weight: 700; font-size: 22px; color: var(--color-accent-800); border-top: 1px solid var(--color-divider); margin-top: 12px; padding-top: 18px; }
.sum-row .free { color: var(--color-accent-2-700); }
.sum-row .off { color: var(--color-accent-2-700); }
.mini-line { display: flex; gap: 12px; align-items: center; padding: 8px 0; }
.mini-thumb { width: 46px; height: 56px; border-radius: 12px; overflow: hidden; flex: none; background: var(--color-neutral-200); position: relative; }
.mini-thumb img { width: 100%; height: 100%; object-fit: cover; }
.mini-qty { position: absolute; top: -4px; right: -4px; min-width: 18px; height: 18px; border-radius: 999px; background: var(--color-accent); color: var(--color-bg); font-size: 10px; font-weight: 700; display: grid; place-items: center; }
.pay-opt {
  display: flex; gap: 12px; align-items: flex-start; padding: 16px 18px; border-radius: var(--radius-lg);
  border: 1px solid var(--color-divider); cursor: pointer; margin-bottom: 10px; transition: all .25s ease;
}
.pay-opt:hover { border-color: var(--color-accent-400); }
.pay-opt:has(input:checked) { border-color: var(--color-accent); background: var(--color-accent-100); }
.pay-opt input { margin-top: 3px; accent-color: var(--color-accent); }
.pay-opt .ttl { font-weight: 600; font-size: 14.5px; display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.pay-opt .sub { font-size: 12.5px; color: var(--color-neutral-600); margin-top: 4px; }
.iban-box { margin-top: 12px; padding: 14px 16px; border-radius: var(--radius-md); background: var(--color-neutral-100); font-size: 13px; line-height: 1.7; }
.steps { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; font-size: 11.5px; letter-spacing: .12em; text-transform: uppercase; color: var(--color-neutral-600); margin-bottom: 26px; }
.steps b { display: inline-grid; place-items: center; width: 22px; height: 22px; border-radius: 999px; background: var(--color-accent); color: var(--color-bg); font-size: 11px; margin-right: 7px; }
.steps span { display: inline-flex; align-items: center; }

/* boş durum */
.empty { text-align: center; padding: clamp(50px,7vw,90px) 20px; }
.empty .ic { width: 62px; height: 62px; margin: 0 auto 20px; display: grid; place-items: center; border-radius: 999px; background: var(--color-surface); color: var(--color-accent-700); }
.empty h2 { margin-bottom: 10px; }
.empty p { color: var(--color-neutral-600); margin-bottom: 24px; }

/* ═══ HESAP ═══ */
.acct { display: grid; grid-template-columns: 240px 1fr; gap: clamp(20px,3vw,44px); align-items: start; }
.acct-nav { display: flex; flex-direction: column; gap: 4px; }
.acct-nav a {
  display: flex; align-items: center; gap: 11px; padding: 12px 18px; border-radius: 999px;
  font-size: 14px; color: var(--color-neutral-800);
}
.acct-nav a:hover { background: var(--color-surface); color: var(--color-accent-800); }
.acct-nav a.on { background: var(--color-accent); color: var(--color-bg); }
.acct-nav a.out { color: var(--color-danger); }
.order-card { background: var(--color-surface); border-radius: 32px; padding: clamp(18px,2vw,26px); margin-bottom: 16px; }
.order-head { display: flex; justify-content: space-between; align-items: center; gap: 14px; flex-wrap: wrap; padding-bottom: 14px; border-bottom: 1px solid var(--color-divider); }

/* durum rozetleri */
.st { display: inline-flex; align-items: center; gap: 6px; font-size: 11px; letter-spacing: .06em; padding: 5px 13px; border-radius: 999px; white-space: nowrap; }
.st-wait { background: var(--color-neutral-200); color: var(--color-neutral-800); }
.st-ok { background: var(--color-accent-100); color: var(--color-accent-800); }
.st-ship { background: #dfe9f5; color: #2c4b73; }
.st-done { background: var(--color-accent-2-100); color: var(--color-accent-2-800); }
.st-cancel { background: var(--color-danger-bg); color: var(--color-danger); }

/* ═══ BLOG ═══ */
.bgrid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: clamp(18px,2.4vw,32px); }
.bcard { display: flex; flex-direction: column; gap: 14px; color: inherit; }
.bcard:hover { color: inherit; }
.bcard .ph { aspect-ratio: 3/2; border-radius: var(--radius-lg); overflow: hidden; background: var(--color-neutral-200); }
.bcard .ph img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s var(--ease); }
.bcard:hover .ph img { transform: scale(1.05); }
.bcard h3 { font-family: var(--font-body); font-weight: 700; font-size: 17px; line-height: 1.35; margin: 0; letter-spacing: 0; }
.bcard:hover h3 { color: var(--color-accent-700); }
.bcard p { font-size: 13.5px; color: var(--color-neutral-700); margin: 0; }
.bmeta { font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: var(--color-neutral-600); }
.prose { max-width: 68ch; font-size: 16px; line-height: 1.85; color: var(--color-neutral-800); }
.prose h2, .prose h3 { margin-top: 34px; color: var(--color-text); }
.prose img { border-radius: var(--radius-lg); margin: 24px 0; }

/* ═══ FOOTER ═══ */
.ftr { background: var(--color-neutral-900); color: var(--color-neutral-200); margin-top: clamp(50px,6vw,90px); }
.ftr-in {
  max-width: var(--wrap); margin: 0 auto; padding: clamp(48px,6vw,84px) var(--pad) 32px;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: clamp(26px,3vw,50px);
}
.ftr-brand { grid-column: span 2; min-width: 0; }
.ftr-brand p { margin-top: 18px; font-size: 13.5px; line-height: 1.75; max-width: 34ch; color: rgba(249,244,237,.62); }
.ftr-brand .logo-txt { color: var(--color-neutral-100); }
.ftr-contact { margin-top: 18px; display: flex; flex-direction: column; gap: 8px; font-size: 13px; color: rgba(249,244,237,.72); }
.ftr-contact a { color: rgba(249,244,237,.72); }
.ftr-contact a:hover { color: var(--color-accent-400); }
.ftr-social { display: flex; gap: 8px; margin-top: 20px; }
.ftr-social a {
  width: 38px; height: 38px; display: grid; place-items: center; border-radius: 999px;
  border: 1px solid rgba(249,244,237,.2); color: var(--color-neutral-200); transition: all .3s ease;
}
.ftr-social a:hover { background: var(--color-accent); border-color: var(--color-accent); color: var(--color-neutral-100); }
.ftr-col h4 { font-size: 10.5px; letter-spacing: .22em; text-transform: uppercase; color: var(--color-accent-400); font-family: var(--font-body); font-weight: 600; margin: 0 0 18px; }
.ftr-col nav { display: flex; flex-direction: column; gap: 11px; }
.ftr-col a { font-size: 13.5px; color: rgba(249,244,237,.72); }
.ftr-col a:hover { color: var(--color-accent-400); }
.ftr-bot {
  max-width: var(--wrap); margin: 0 auto;
  padding: 22px var(--pad) 36px; border-top: 1px solid rgba(249,244,237,.12);
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 14px;
}
.ftr-bot span { font-size: 11.5px; color: rgba(249,244,237,.45); }
.pays { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.pays i {
  font-style: normal; font-size: 10px; letter-spacing: .08em; padding: 7px 11px; border-radius: 8px;
  border: 1px solid rgba(249,244,237,.18); color: rgba(249,244,237,.72);
}

/* WhatsApp balonu */
.wa-fab {
  position: fixed; right: 22px; bottom: 22px; z-index: 60; width: 54px; height: 54px;
  border-radius: 999px; background: #25D366; color: #fff; display: grid; place-items: center;
  box-shadow: var(--shadow-md); transition: transform .3s var(--ease);
}
.wa-fab:hover { transform: scale(1.08); color: #fff; }

/* toast / flash */
.toast {
  position: fixed; left: 50%; bottom: 28px; transform: translateX(-50%); z-index: 120;
  display: flex; align-items: center; gap: 11px; background: var(--color-neutral-900);
  color: var(--color-neutral-100); padding: 14px 22px; border-radius: 999px;
  box-shadow: var(--shadow-lg); animation: sa-fade .35s var(--ease) both; font-size: 13.5px;
  max-width: calc(100vw - 32px);
}
.toast svg { color: var(--color-accent-400); flex: none; }
.toast.err svg { color: #ff9c8a; }
.alert { padding: 14px 20px; border-radius: var(--radius-lg); font-size: 14px; margin-bottom: 20px; }
.alert-ok { background: var(--color-accent-2-100); color: var(--color-accent-2-800); }
.alert-err { background: var(--color-danger-bg); color: var(--color-danger); }

/* reveal */
.reveal { opacity: 0; }
.reveal.show { animation: sa-fade .7s var(--ease) both; }

/* animasyonlar */
@keyframes sa-marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@keyframes sa-float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-14px); } }
@keyframes sa-fade { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: none; } }
@keyframes sa-in { from { opacity: 0; } to { opacity: 1; } }
@keyframes sa-drop { from { opacity: 0; transform: translateY(-14px); } to { opacity: 1; transform: none; } }
@keyframes sa-scrollhint { 0% { transform: translateY(0); opacity: 0; } 30% { opacity: 1; } 100% { transform: translateY(22px); opacity: 0; } }
@keyframes sa-pop { 0%,100% { transform: scale(1); } 50% { transform: scale(1.4); } }
.pop { animation: sa-pop .4s ease; }

/* ── responsive ── */
@media (max-width: 1023px) {
  .acct { grid-template-columns: 1fr; }
  .acct-nav { flex-direction: row; overflow-x: auto; padding-bottom: 6px; }
  .acct-nav a { white-space: nowrap; }
  .two-col { grid-template-columns: 1fr; }
  .sticky-side { position: static; }
  .pdp-gallery { position: static; }
}
@media (max-width: 900px) {
  .only-wide { display: none; }
  .only-narrow { display: flex; }
  .hdr:not(.is-solid) { background: var(--color-neutral-100); box-shadow: var(--shadow-sm); }
  .ftr-brand { grid-column: span 2; }
}
@media (max-width: 640px) {
  :root { --header-h: 64px; --topbar-h: 32px; }
  .topbar-in { justify-content: center; font-size: 10.5px; }
  .topbar .tb-hide { display: none; }
  .hero { min-height: 78vh; }
  .hero-in { padding-top: 130px; padding-bottom: 70px; }
  .pgrid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .pcard-bar { opacity: 1; transform: none; }
  .pcard-heart { opacity: 1; transform: none; }
  .cart-line { flex-wrap: wrap; }
  .cart-thumb { width: 76px; height: 92px; }
  .story-orb { display: none; }
  .ftr-in { grid-template-columns: 1fr 1fr; }
  .ftr-brand { grid-column: span 2; }
  .news { border-radius: 28px; }
  .lang-sw { display: none; }
}

/* ─────────────────────────────────────────────────────────────
   HERO — KEHRİBAR TAŞI
   Sağda duran taş; sayfa aşağı kaydıkça iner, kendi etrafında
   döner ve hafifçe küçülür. Dönüş iki katmana bölünmüştür:
   .stone-spin sürekli yavaş döner (dururken de canlı görünsün),
   dış sarmalayıcıyı ise kaydırma miktarı sürer (main.js).
   ───────────────────────────────────────────────────────────── */
.hero-stone {
  position: absolute; z-index: 1; pointer-events: none;
  /* Sağ boşluk dış halkayı da içeri alacak kadar: halka taşın %25'i
     kadar dışarı çıkıyor, ekran kenarında kesilmesin */
  top: 50%; right: clamp(24px, 9vw, 160px);
  width: clamp(250px, 29vw, 440px); aspect-ratio: 1;
  transform: translateY(-50%);
  will-change: transform, opacity;
  animation: sa-stone-in 1.5s var(--ease) .3s both;
}

/* Taşın arkasındaki sıcak ışık */
.hero-stone .stone-halo {
  position: absolute; inset: -22%; border-radius: 50%;
  background: radial-gradient(circle at 50% 45%,
    color-mix(in srgb, var(--color-accent-300) 62%, transparent) 0%,
    color-mix(in srgb, var(--color-accent-400) 26%, transparent) 38%,
    transparent 68%);
  filter: blur(14px);
}

/* Yörünge halkaları */
.hero-stone .stone-ring {
  position: absolute; border-radius: 50%;
  border: 1px solid color-mix(in srgb, var(--color-accent-600) 24%, transparent);
}
.hero-stone .stone-ring-1 { inset: -13%; }
.hero-stone .stone-ring-2 { inset: -25%; border-color: color-mix(in srgb, var(--color-accent-600) 13%, transparent); }

.hero-stone .stone-spin {
  position: absolute; inset: 0;
  animation: sa-stone-spin 18s linear infinite;
}

/* Görsel yüklenmezse bu katman kehribar rengi bir küre olarak kalır */
.hero-stone .stone-orb {
  position: absolute; inset: 0; border-radius: 50%; overflow: hidden;
  background:
    radial-gradient(circle at 34% 28%, #ffdca8 0%, #e79a4d 26%, #c67139 52%, #8c491a 78%, #542a0d 100%);
  box-shadow:
    0 26px 60px color-mix(in srgb, var(--color-accent-900) 30%, transparent),
    inset -18px -22px 54px color-mix(in srgb, var(--color-accent-900) 42%, transparent);
}
/* Taşlar üst üste yığılı; yalnızca .is-active olan görünür. Böylece
   geçişte ikisi de yerinde durur ve çapraz solma yapılabilir. */
.hero-stone .stone-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover; display: block;
  border-radius: 50%;
  opacity: 0; transition: opacity .45s ease;
}
.hero-stone .stone-img.is-active { opacity: 1; }

/* Birden fazla taş varsa orb bir <button>; tarayıcının düğme görünümü
   sıfırlanıyor. .hero-stone pointer-events:none olduğu için burada
   açıkça geri veriliyor — yoksa tıklama hiç ulaşmaz. */
.hero-stone.cok-tas .stone-orb {
  pointer-events: auto; cursor: pointer;
  border: 0; padding: 0; background-color: transparent;
  -webkit-appearance: none; appearance: none; font: inherit; color: inherit;
  transition: transform .35s var(--ease);
}
.hero-stone.cok-tas .stone-orb:hover { transform: scale(1.04); }
.hero-stone.cok-tas .stone-orb:focus-visible {
  outline: 2px solid var(--color-accent); outline-offset: 10px; border-radius: 50%;
}
/* Tıklayınca tam tur + hafif küçülme; dönüşün ortasında görsel değişiyor,
   böylece geçiş taşın arkasında oluyormuş gibi duruyor. */
.hero-stone.tas-degisiyor .stone-orb { animation: sa-stone-cevir .95s var(--ease); }
@keyframes sa-stone-cevir {
  0%   { transform: rotate(0deg) scale(1); }
  45%  { transform: rotate(200deg) scale(.84); }
  100% { transform: rotate(360deg) scale(1); }
}

/* Taşın üstünden geçen parlama */
.hero-stone .stone-shine {
  position: absolute; inset: 0; border-radius: 50%;
  background:
    radial-gradient(circle at 32% 24%, rgba(255,255,255,.72) 0%, rgba(255,255,255,.16) 15%, transparent 42%),
    radial-gradient(circle at 72% 82%, color-mix(in srgb, var(--color-accent-200) 34%, transparent) 0%, transparent 46%);
  mix-blend-mode: screen;
}

@keyframes sa-stone-spin { to { transform: rotate(360deg); } }
@keyframes sa-stone-in {
  from { opacity: 0; transform: translateY(-50%) scale(.82); }
  to   { opacity: 1; transform: translateY(-50%) scale(1); }
}

/* ── Dar ekran ──
   Taşın yerleşimi iki kalıba ayrılıyor:

   1) "Yığın": dar AMA yeterince uzun ekran (telefon/tablet dikey). Hero dikey
      yığına dönüşür, taş metnin üstüne geçer, tam görünür durur.
   2) "Yan yana": yatay çevrilmiş telefon gibi kısa ekranlar. Dikey yığında
      başlık bile katlamaya sığmıyordu; masaüstündeki sağa yaslı yerleşim
      korunur, taş küçültülür.

   ÖNEMLİ: main.js aynı sorguyu ('(max-width: 900px) and (min-height: 521px)')
   okuyup dönüşüm hesabını buna göre yapıyor. Buradaki eşik değişirse orayı da
   güncelle, yoksa taş kaydırmada yerinden sıçrar. */
@media (max-width: 900px) and (min-height: 521px) {
  .hero {
    flex-direction: column; justify-content: center; min-height: auto;
    padding-top: calc(var(--topbar-h) + var(--header-h) + 26px);
    padding-bottom: 44px;
  }
  .hero-in { padding-top: 0; padding-bottom: 0; }
  .hero-box { max-width: 100%; }

  .hero-stone {
    order: -1;                    /* metnin üstüne */
    position: relative; inset: auto; transform: none;
    width: min(58vw, 260px); margin: 0 auto 22px; opacity: 1;
  }
  /* Halkalar dar ekranda taşmasın diye içeri alınıyor */
  .hero-stone .stone-ring-1 { inset: -9%; }
  .hero-stone .stone-ring-2 { inset: -17%; }
  .hero-stone .stone-halo { inset: -14%; }

  /* Mutlak konumlu "kaydırın" ipucu dar ekranda butonların üstüne biniyordu.
     Telefonda zaten sayfanın kaydığı belli, gizliyoruz. */
  .hero .scroll-hint { display: none; }

  @keyframes sa-stone-in { from { opacity: 0; transform: scale(.86); } to { opacity: 1; transform: none; } }
}

/* Küçük telefonlar: taş yalnızca genişliğe göre ölçeklenirse katlamanın
   tamamını kaplayıp butonları aşağı itiyor. */
@media (max-width: 900px) and (min-height: 521px) and (max-height: 720px) {
  .hero { padding-top: calc(var(--topbar-h) + var(--header-h) + 16px); padding-bottom: 28px; }
  .hero-stone { width: min(40vw, 168px); margin-bottom: 12px; }
}
@media (max-width: 420px) and (min-height: 721px) {
  .hero-stone { width: min(62vw, 216px); margin-bottom: 16px; }
}

/* Yatay çevrilmiş telefon: yükseklik çok kısa, yığın düzeni sığmıyor */
@media (max-width: 900px) and (max-height: 520px) {
  .hero {
    min-height: auto;
    padding-top: calc(var(--topbar-h) + var(--header-h) + 14px);
    padding-bottom: 22px;
  }
  /* .hero-in'in masaüstü için verilmiş 130px üst boşluğu bu yükseklikte
     içeriği katlamanın dışına itiyordu */
  .hero-in { padding-top: 0; padding-bottom: 0; }
  .hero h1 { font-size: clamp(30px, 6vw, 44px); }
  .hero p { margin-top: 14px; }
  .hero-cta { margin-top: 18px; }
  .hero-stone { width: min(24vw, 132px); right: 3%; }
  .hero-stone .stone-ring-1 { inset: -10%; }
  .hero-stone .stone-ring-2 { inset: -18%; }
  .hero-box { max-width: 66%; }
  .hero .scroll-hint { display: none; }
}

/* Hareket azaltma tercihi: animasyonlar korunur, siteye özel tercih */


/* Gerçek taş fotoğrafı varsa: daire kırpması, küre gradyanı ve dairesel
   parlama kapanır — taş kendi düzensiz şeklinde, halkaların ortasında durur.
   Gölge alfa kanalını takip ettiği için taşın gerçek siluetine düşer. */
.hero-stone.stone-foto .stone-orb {
  background: none; box-shadow: none; border-radius: 0; overflow: visible;
}
.hero-stone.stone-foto .stone-img {
  width: 100%; height: 100%; object-fit: contain; border-radius: 0;
  filter:
    drop-shadow(0 16px 26px color-mix(in srgb, var(--color-accent-900) 34%, transparent))
    drop-shadow(0 2px 6px color-mix(in srgb, var(--color-accent-900) 24%, transparent));
}
.hero-stone.stone-foto .stone-shine { display: none; }
/* Taşın arkasındaki ışık, fotoğraflı hâlde biraz daha toplu dursun */
.hero-stone.stone-foto .stone-halo { inset: -8%; filter: blur(20px); }
