/* ==========================================================================
   LiLa Çelenk — Tasarım Sistemi
   "Anma / editorial" estetik: antrasit + altın, serif başlık + humanist sans,
   asimetrik ritim, ince altın çizgiler, sakin hareket. Klişe SaaS değil.
   ========================================================================== */

/* ----------------------------- TOKENS ----------------------------------- */
:root {
  /* Renkler */
  --ink:        #1A1A1A;
  --anthracite: #2C2C2C;
  --gold:       #C5A028;
  --gold-soft:  #d8bd6a;
  --paper:      #F7F5F0;
  --paper-2:    #efece3;
  --line:       #e1ddd2;
  --line-strong:#cdc7b6;
  --sage:       #6f7a63;   /* tek sakin aksan */
  --muted:      #6b675e;
  --white:      #ffffff;
  --danger:     #9a3b2f;
  --success:    #4a6b46;

  /* Tipografi */
  --serif: "Fraunces", Georgia, "Times New Roman", serif;
  --sans:  "Mulish", system-ui, -apple-system, "Segoe UI", sans-serif;

  /* Akışkan tip ölçeği (clamp) */
  --fs-xs:   .78rem;
  --fs-sm:   .88rem;
  --fs-base: 1rem;
  --fs-md:   clamp(1.05rem, 1rem + .4vw, 1.2rem);
  --fs-lg:   clamp(1.3rem, 1.1rem + 1vw, 1.7rem);
  --fs-xl:   clamp(1.9rem, 1.3rem + 2.6vw, 3rem);
  --fs-2xl:  clamp(2.6rem, 1.6rem + 4.6vw, 5rem);

  /* Boşluk */
  --sp-1: .25rem; --sp-2: .5rem; --sp-3: .75rem; --sp-4: 1rem;
  --sp-5: 1.5rem; --sp-6: 2rem; --sp-7: 3rem; --sp-8: 4.5rem; --sp-9: 7rem;

  --radius: 3px;          /* editorial: keskin, az yuvarlatma */
  --radius-lg: 6px;
  --shadow: 0 1px 2px rgba(26,26,26,.05), 0 8px 30px rgba(26,26,26,.06);
  --shadow-lift: 0 10px 40px rgba(26,26,26,.14);

  --maxw: 1240px;
  --ease: cubic-bezier(.22,.61,.36,1);
}

/* ----------------------------- RESET ------------------------------------ */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
body {
  margin: 0;
  font-family: var(--sans);
  font-size: var(--fs-base);
  line-height: 1.65;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg, video { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
ul { margin: 0; padding: 0; list-style: none; }
h1,h2,h3,h4 { margin: 0; font-family: var(--serif); font-weight: 500; line-height: 1.08; letter-spacing: -.01em; }
p { margin: 0 0 1em; }

::selection { background: var(--gold); color: #1a1a1a; }
:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }

.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;
}

/* ----------------------------- LAYOUT ----------------------------------- */
.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 clamp(1rem, 4vw, 2.5rem); }
.section { padding: var(--sp-8) 0; }
.section--tight { padding: var(--sp-7) 0; }

.eyebrow {
  display: inline-flex; align-items: center; gap: .55rem;
  font-size: var(--fs-xs); letter-spacing: .26em; text-transform: uppercase;
  color: var(--muted); font-weight: 700;
}
.eyebrow::before { content: ""; width: 26px; height: 1px; background: var(--gold); }

.idx {
  font-family: var(--sans); font-weight: 800; font-size: var(--fs-xs);
  letter-spacing: .12em; color: var(--gold); margin-right: .5rem; vertical-align: 2px;
}

.section-head { display: flex; flex-wrap: wrap; align-items: end; justify-content: space-between; gap: var(--sp-4); margin-bottom: var(--sp-6); }
.section-head h2 { font-size: var(--fs-xl); }
.section-head .lead { color: var(--muted); max-width: 46ch; }

.hairline { height: 1px; background: var(--line); border: 0; margin: 0; }

/* ----------------------------- BUTTONS ---------------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  padding: .85rem 1.5rem; border: 1px solid transparent; border-radius: var(--radius);
  font-weight: 700; font-size: var(--fs-sm); letter-spacing: .02em;
  transition: transform .25s var(--ease), background .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease);
}
.btn .ico { transition: transform .3s var(--ease); }
.btn:hover .ico { transform: translateX(3px); }
.btn--primary { background: var(--anthracite); color: #fff; }
.btn--primary:hover { background: #000; transform: translateY(-2px); }
.btn--gold { background: var(--gold); color: #1a1a1a; }
.btn--gold:hover { background: var(--gold-soft); transform: translateY(-2px); }
.btn--ghost { background: transparent; color: var(--ink); border-color: var(--line-strong); }
.btn--ghost:hover { border-color: var(--anthracite); background: var(--white); }
.btn--lg { padding: 1.05rem 2rem; font-size: var(--fs-base); }
.btn--sm { padding: .5rem 1rem; font-size: var(--fs-xs); }
.btn--block { width: 100%; }
.btn--wa { background: #1f7a52; color: #fff; }
.btn--wa:hover { background: #196543; transform: translateY(-2px); }

/* ----------------------------- TOPBAR / NAV ----------------------------- */
.topbar {
  background: var(--anthracite); color: #ece9e0;
  font-size: var(--fs-xs); letter-spacing: .04em;
}
.topbar .container { display: flex; align-items: center; justify-content: space-between; gap: 1rem; min-height: 40px; }
.topbar a { display: inline-flex; align-items: center; gap: .4rem; color: #ece9e0; }
.topbar a:hover { color: var(--gold-soft); }
.topbar .badge247 { color: var(--gold); font-weight: 800; letter-spacing: .14em; }
.topbar-right { display: flex; gap: 1.25rem; }

.site-header {
  position: sticky; top: 0; z-index: 60;
  background: rgba(247,245,240,.88); backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.site-header .container { display: flex; align-items: center; justify-content: space-between; gap: 1rem; min-height: 76px; }

.brand { display: flex; align-items: center; gap: .8rem; }
.brand__mark {
  width: 46px; height: 46px; border: 1.5px solid var(--gold); border-radius: 50%;
  display: grid; place-items: center; color: var(--gold); flex: none;
}
.brand__txt { line-height: 1; }
.brand__name { font-family: var(--serif); font-size: 1.32rem; letter-spacing: .02em; }
.brand__name b { color: var(--gold); font-weight: 600; }
.brand__sub { font-size: .62rem; letter-spacing: .28em; text-transform: uppercase; color: var(--muted); margin-top: 3px; }

.nav { display: flex; align-items: center; gap: clamp(1rem, 2.4vw, 2.1rem); }
.nav a { font-size: var(--fs-sm); font-weight: 700; letter-spacing: .02em; position: relative; padding: .25rem 0; }
.nav a::after { content: ""; position: absolute; left: 0; bottom: -2px; width: 0; height: 2px; background: var(--gold); transition: width .3s var(--ease); }
.nav a:hover::after, .nav a[aria-current="page"]::after { width: 100%; }

.header-actions { display: flex; align-items: center; gap: .75rem; }
.cart-btn { position: relative; display: inline-flex; align-items: center; gap: .5rem; padding: .55rem .8rem; border: 1px solid var(--line-strong); border-radius: var(--radius); background: var(--white); font-weight: 700; font-size: var(--fs-sm); }
.cart-btn:hover { border-color: var(--anthracite); }
.cart-btn__count { position: absolute; top: -8px; right: -8px; min-width: 20px; height: 20px; padding: 0 5px; border-radius: 10px; background: var(--gold); color: #1a1a1a; font-size: .68rem; font-weight: 800; display: grid; place-items: center; }
.nav-toggle { display: none; padding: .5rem; border: 1px solid var(--line-strong); border-radius: var(--radius); background: var(--white); color: var(--ink); }

/* Mobile nav */
.mobile-nav { position: fixed; inset: 0; z-index: 100; display: none; }
.mobile-nav[aria-hidden="false"] { display: block; }
.mobile-nav__scrim { position: absolute; inset: 0; background: rgba(26,26,26,.5); }
.mobile-nav__panel { position: absolute; top: 0; right: 0; width: min(86vw, 360px); height: 100%; background: var(--paper); padding: 1.5rem; display: flex; flex-direction: column; gap: 1rem; box-shadow: var(--shadow-lift); animation: slideIn .3s var(--ease); }
.mobile-nav a { font-size: 1.15rem; font-weight: 700; padding: .6rem 0; border-bottom: 1px solid var(--line); }
@keyframes slideIn { from { transform: translateX(100%); } to { transform: translateX(0); } }

/* ----------------------------- HERO ------------------------------------- */
.hero { position: relative; overflow: hidden; background: var(--anthracite); color: #f3f0e8; }
.hero__grid { display: grid; grid-template-columns: 1.05fr .95fr; min-height: clamp(440px, 68vh, 720px); }
.hero__content { display: flex; flex-direction: column; justify-content: center; padding: clamp(2rem, 6vw, 5.5rem) clamp(1.2rem, 5vw, 4rem); }
.hero__content .eyebrow { color: var(--gold-soft); }
.hero__content .eyebrow::before { background: var(--gold-soft); }
.hero h1 { font-size: var(--fs-2xl); color: #fff; margin: 1rem 0 1.2rem; }
.hero h1 em { font-style: italic; color: var(--gold-soft); }
.hero__lead { color: #cfc9bb; font-size: var(--fs-md); max-width: 44ch; margin-bottom: 2rem; }
.hero__cta { display: flex; flex-wrap: wrap; gap: .9rem; }
.hero__media { position: relative; background: #222 center/cover no-repeat; }
.hero__media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(44,44,44,.55), rgba(44,44,44,0) 30%); }
.hero__media-fallback { position: absolute; inset: 0; display: grid; place-items: center; color: #4a4a45; }
.hero__stats { display: flex; gap: clamp(1.2rem,3vw,2.6rem); margin-top: 2.4rem; padding-top: 1.6rem; border-top: 1px solid rgba(255,255,255,.14); }
.hero__stat b { font-family: var(--serif); font-size: 1.6rem; color: var(--gold-soft); display: block; }
.hero__stat span { font-size: var(--fs-xs); letter-spacing: .14em; text-transform: uppercase; color: #b7b1a4; }

/* ----------------------------- SLA STRIP -------------------------------- */
.sla { background: var(--paper-2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.sla__grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.sla__item { padding: 1.6rem clamp(1rem,2vw,1.6rem); display: flex; gap: .9rem; align-items: flex-start; border-left: 1px solid var(--line); }
.sla__item:first-child { border-left: 0; }
.sla__item .ico { color: var(--gold); flex: none; margin-top: 2px; }
.sla__item b { display: block; font-family: var(--serif); font-size: 1.1rem; }
.sla__item span { font-size: var(--fs-sm); color: var(--muted); }

/* ----------------------------- CATEGORY CARDS --------------------------- */
.cat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1rem, 2vw, 1.6rem); }
.cat-card {
  position: relative; display: flex; flex-direction: column; justify-content: flex-end;
  min-height: 320px; padding: 1.6rem; background: var(--anthracite); color: #f1ede4;
  border-radius: var(--radius-lg); overflow: hidden; isolation: isolate;
  transition: transform .4s var(--ease);
}
.cat-card__bg { position: absolute; inset: 0; z-index: -2; background: center/cover no-repeat; transition: transform .6s var(--ease); }
.cat-card::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(180deg, rgba(26,26,26,.05), rgba(26,26,26,.82)); }
.cat-card:hover { transform: translateY(-6px); }
.cat-card:hover .cat-card__bg { transform: scale(1.06); }
.cat-card__num { font-family: var(--sans); font-weight: 800; font-size: var(--fs-xs); letter-spacing: .14em; color: var(--gold-soft); }
.cat-card h3 { font-size: 1.55rem; margin: .4rem 0 .35rem; color: #fff; }
.cat-card p { font-size: var(--fs-sm); color: #cfc9bb; margin: 0 0 1rem; }
.cat-card__link { display: inline-flex; align-items: center; gap: .5rem; font-weight: 700; font-size: var(--fs-sm); color: var(--gold-soft); }
.cat-card__link .ico { transition: transform .3s var(--ease); }
.cat-card:hover .cat-card__link .ico { transform: translateX(4px); }

/* ----------------------------- PRODUCT CARDS ---------------------------- */
.prod-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(1rem, 1.8vw, 1.5rem); }
.prod-grid--3 { grid-template-columns: repeat(3, 1fr); }
.prod-card {
  display: flex; flex-direction: column; background: var(--white);
  border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s var(--ease);
}
.prod-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lift); border-color: var(--line-strong); }
.prod-card__media { position: relative; aspect-ratio: 4/5; background: var(--paper-2); overflow: hidden; }
.prod-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.prod-card:hover .prod-card__media img { transform: scale(1.05); }
.prod-card__tag { position: absolute; top: .8rem; left: .8rem; background: var(--gold); color: #1a1a1a; font-size: .66rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; padding: .3rem .55rem; border-radius: 2px; }
.prod-card__body { padding: 1.1rem 1.1rem 1.3rem; display: flex; flex-direction: column; gap: .5rem; flex: 1; }
.prod-card__cat { font-size: var(--fs-xs); letter-spacing: .14em; text-transform: uppercase; color: var(--muted); }
.prod-card__name { font-family: var(--serif); font-size: 1.18rem; line-height: 1.2; }
.prod-card__desc { font-size: var(--fs-sm); color: var(--muted); flex: 1; }
.prod-card__foot { display: flex; align-items: center; justify-content: space-between; margin-top: .4rem; }
.price { font-family: var(--serif); font-size: 1.3rem; color: var(--ink); }
.price small { font-family: var(--sans); font-size: .8rem; color: var(--muted); text-decoration: line-through; margin-right: .4rem; }
.icon-btn { display: inline-grid; place-items: center; width: 42px; height: 42px; border-radius: var(--radius); background: var(--anthracite); color: #fff; border: 0; transition: background .25s var(--ease), transform .25s var(--ease); }
.icon-btn:hover { background: var(--gold); color: #1a1a1a; transform: translateY(-2px); }

/* ----------------------------- PACKAGES --------------------------------- */
.pkg-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 1rem; }
.pkg { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 1.4rem; display: flex; flex-direction: column; gap: .6rem; transition: transform .3s var(--ease), border-color .3s var(--ease); }
.pkg:hover { transform: translateY(-4px); border-color: var(--gold); }
.pkg--feat { background: var(--anthracite); color: #f1ede4; border-color: var(--anthracite); }
.pkg--feat .pkg__price { color: var(--gold-soft); }
.pkg--feat .pkg__meta { color: #cfc9bb; }
.pkg__name { font-family: var(--serif); font-size: 1.3rem; }
.pkg__size { font-size: var(--fs-xs); letter-spacing: .14em; text-transform: uppercase; color: var(--muted); }
.pkg--feat .pkg__size { color: var(--gold-soft); }
.pkg__price { font-family: var(--serif); font-size: 1.7rem; margin-top: auto; }
.pkg__meta { font-size: var(--fs-sm); color: var(--muted); }

/* ----------------------------- TRUST / QUOTE ---------------------------- */
.quote { background: var(--anthracite); color: #f1ede4; text-align: center; }
.quote blockquote { max-width: 60ch; margin: 0 auto; font-family: var(--serif); font-style: italic; font-size: var(--fs-lg); line-height: 1.4; }
.quote cite { display: block; margin-top: 1.2rem; font-style: normal; font-size: var(--fs-xs); letter-spacing: .2em; text-transform: uppercase; color: var(--gold-soft); }

/* ----------------------------- CTA BANNER ------------------------------- */
.cta-band { background: var(--gold); color: #211c0a; }
.cta-band .container { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 1.5rem; padding: var(--sp-6) clamp(1rem,4vw,2.5rem); }
.cta-band h2 { font-size: var(--fs-lg); }
.cta-band p { margin: .3rem 0 0; opacity: .85; }

/* ----------------------------- FORMS ------------------------------------ */
.field { display: flex; flex-direction: column; gap: .4rem; margin-bottom: 1.1rem; }
.field label { font-size: var(--fs-sm); font-weight: 700; }
.field .hint { font-size: var(--fs-xs); color: var(--muted); }
.input, .select, .textarea {
  width: 100%; padding: .8rem .95rem; border: 1px solid var(--line-strong); border-radius: var(--radius);
  background: var(--white); color: var(--ink); font: inherit; transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
}
.input:focus, .select:focus, .textarea:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(197,160,40,.18); outline: none; }
.textarea { min-height: 110px; resize: vertical; }
.field--error .input, .field--error .textarea, .field--error .select { border-color: var(--danger); }
.field__err { font-size: var(--fs-xs); color: var(--danger); }
.row2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.charcount { font-size: var(--fs-xs); color: var(--muted); text-align: right; }

/* ----------------------------- ACCORDION -------------------------------- */
.acc { border-top: 1px solid var(--line); }
.acc__item { border-bottom: 1px solid var(--line); }
.acc__head { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: 1.1rem 0; background: none; border: 0; text-align: left; font-family: var(--serif); font-size: 1.12rem; color: var(--ink); }
.acc__head .ico { transition: transform .3s var(--ease); color: var(--gold); flex: none; }
.acc__head[aria-expanded="true"] .ico { transform: rotate(90deg); }
.acc__panel { overflow: hidden; max-height: 0; transition: max-height .35s var(--ease); }
.acc__panel-inner { padding: 0 0 1.2rem; color: var(--muted); }

/* ----------------------------- PRODUCT PAGE ----------------------------- */
.pdp { display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(1.5rem, 4vw, 3.5rem); align-items: start; }
.gallery__main { aspect-ratio: 4/5; background: var(--paper-2); border-radius: var(--radius-lg); overflow: hidden; }
.gallery__main img { width: 100%; height: 100%; object-fit: cover; }
.gallery__thumbs { display: flex; gap: .6rem; margin-top: .8rem; flex-wrap: wrap; }
.gallery__thumb { width: 76px; height: 92px; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); padding: 0; background: none; }
.gallery__thumb[aria-current="true"] { border-color: var(--gold); }
.gallery__thumb img { width: 100%; height: 100%; object-fit: cover; }
.pdp__cat { font-size: var(--fs-xs); letter-spacing: .16em; text-transform: uppercase; color: var(--muted); }
.pdp h1 { font-size: var(--fs-xl); margin: .5rem 0 .8rem; }
.pdp__price { font-family: var(--serif); font-size: 2rem; margin: 0 0 1rem; }
.pdp__short { color: var(--muted); margin-bottom: 1.4rem; }
.qty { display: inline-flex; align-items: center; border: 1px solid var(--line-strong); border-radius: var(--radius); overflow: hidden; }
.qty button { width: 44px; height: 46px; background: var(--white); border: 0; font-size: 1.2rem; color: var(--ink); }
.qty button:hover { background: var(--paper-2); }
.qty input { width: 52px; height: 46px; border: 0; border-left: 1px solid var(--line); border-right: 1px solid var(--line); text-align: center; font: inherit; font-weight: 700; }
.pdp__actions { display: flex; gap: .8rem; align-items: center; margin: 1.2rem 0 1.6rem; flex-wrap: wrap; }
.pdp__assure { display: flex; flex-direction: column; gap: .6rem; padding: 1.1rem 1.2rem; background: var(--paper-2); border-radius: var(--radius); margin-bottom: 1.5rem; }
.pdp__assure div { display: flex; gap: .6rem; align-items: center; font-size: var(--fs-sm); }
.pdp__assure .ico { color: var(--gold); flex: none; }

/* Sticky ATC (mobil) */
.sticky-atc { position: fixed; left: 0; right: 0; bottom: 0; z-index: 70; display: none; gap: .8rem; align-items: center; padding: .7rem 1rem; background: rgba(247,245,240,.96); backdrop-filter: blur(8px); border-top: 1px solid var(--line); }
.sticky-atc .price { font-size: 1.1rem; }
.sticky-atc .btn { flex: 1; }

/* ----------------------------- CART ------------------------------------- */
.cart-line { display: grid; grid-template-columns: 88px 1fr auto; gap: 1rem; padding: 1.1rem 0; border-bottom: 1px solid var(--line); align-items: center; }
.cart-line__img { width: 88px; height: 100px; border-radius: var(--radius); overflow: hidden; background: var(--paper-2); }
.cart-line__img img { width: 100%; height: 100%; object-fit: cover; }
.cart-line__name { font-family: var(--serif); font-size: 1.1rem; }
.cart-line__remove { background: none; border: 0; color: var(--muted); font-size: var(--fs-sm); text-decoration: underline; padding: .2rem 0; }
.cart-line__remove:hover { color: var(--danger); }
.summary { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 1.5rem; position: sticky; top: 96px; }
.summary__row { display: flex; justify-content: space-between; padding: .5rem 0; font-size: var(--fs-sm); }
.summary__total { display: flex; justify-content: space-between; padding-top: 1rem; margin-top: .5rem; border-top: 1px solid var(--line); font-family: var(--serif); font-size: 1.4rem; }

/* ----------------------------- CHECKOUT --------------------------------- */
.checkout-grid { display: grid; grid-template-columns: 1.4fr .9fr; gap: clamp(1.5rem, 4vw, 3rem); align-items: start; }
.panel { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: clamp(1.2rem, 3vw, 2rem); margin-bottom: 1.5rem; }
.panel h3 { font-size: 1.3rem; margin-bottom: 1.2rem; display: flex; align-items: center; gap: .6rem; }
.pay-options { display: grid; gap: .7rem; }
.pay-option { display: flex; gap: .8rem; align-items: flex-start; padding: 1rem; border: 1px solid var(--line-strong); border-radius: var(--radius); cursor: pointer; transition: border-color .2s var(--ease), background .2s var(--ease); }
.pay-option:hover { border-color: var(--anthracite); }
.pay-option input { margin-top: .25rem; }
.pay-option b { font-size: var(--fs-base); }
.pay-option span { font-size: var(--fs-sm); color: var(--muted); display: block; }
.pay-option:has(input:checked) { border-color: var(--gold); background: #fbf8ef; }

/* ----------------------------- ALERTS ----------------------------------- */
.alert { padding: 1rem 1.2rem; border-radius: var(--radius); font-size: var(--fs-sm); margin-bottom: 1rem; border: 1px solid; }
.alert--info { background: #f3f6f1; border-color: #d4e0cc; color: #3c5234; }
.alert--warn { background: #fbf4e6; border-color: #ecd9ad; color: #6a5418; }
.alert--err  { background: #f9ece9; border-color: #e6c4bd; color: #7c2e22; }

/* ----------------------------- BREADCRUMB ------------------------------- */
.crumb { display: flex; gap: .5rem; align-items: center; font-size: var(--fs-sm); color: var(--muted); padding: 1.4rem 0; flex-wrap: wrap; }
.crumb a:hover { color: var(--ink); }
.crumb span { color: var(--line-strong); }

/* ----------------------------- PAGE HEADER ------------------------------ */
.page-head { background: var(--anthracite); color: #f1ede4; padding: var(--sp-7) 0; }
.page-head .eyebrow { color: var(--gold-soft); }
.page-head .eyebrow::before { background: var(--gold-soft); }
.page-head h1 { font-size: var(--fs-xl); color: #fff; margin: .8rem 0 .4rem; }
.page-head p { color: #cfc9bb; max-width: 56ch; margin: 0; }

/* ----------------------------- FOOTER ----------------------------------- */
.site-footer { background: var(--ink); color: #cbc6bb; padding: var(--sp-8) 0 var(--sp-5); margin-top: var(--sp-8); }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: clamp(1.5rem, 3vw, 3rem); padding-bottom: var(--sp-6); border-bottom: 1px solid rgba(255,255,255,.1); }
.site-footer h4 { color: #fff; font-family: var(--sans); font-size: var(--fs-xs); letter-spacing: .2em; text-transform: uppercase; margin-bottom: 1.1rem; }
.site-footer a:hover { color: var(--gold-soft); }
.footer-grid li { margin-bottom: .6rem; font-size: var(--fs-sm); }
.footer-brand .brand__name { color: #fff; }
.footer-brand p { font-size: var(--fs-sm); margin-top: 1rem; max-width: 34ch; }
.footer-zones span { display: inline-flex; justify-content: space-between; width: 100%; font-size: var(--fs-sm); padding: .35rem 0; border-bottom: 1px dotted rgba(255,255,255,.12); }
.footer-zones b { color: var(--gold-soft); font-weight: 700; }
.footer-bottom { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 1rem; padding-top: var(--sp-5); font-size: var(--fs-xs); color: #908b80; }

/* ----------------------------- 404 -------------------------------------- */
.notfound { text-align: center; padding: var(--sp-9) 0; }
.notfound__code { font-family: var(--serif); font-size: clamp(5rem, 18vw, 12rem); line-height: .9; color: var(--gold); opacity: .5; }
.notfound h1 { font-size: var(--fs-xl); margin: 1rem 0; }

/* ----------------------------- FLOAT WA --------------------------------- */
.wa-float { position: fixed; right: 18px; bottom: 18px; z-index: 65; width: 56px; height: 56px; border-radius: 50%; background: #1f7a52; color: #fff; display: grid; place-items: center; box-shadow: var(--shadow-lift); transition: transform .3s var(--ease); }
.wa-float:hover { transform: scale(1.08); }

/* ----------------------------- REVEAL ANIM ------------------------------ */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; transition: none; }
  .prod-card, .cat-card, .btn, .pkg { transition: none !important; }
}

/* ----------------------------- EMPTY STATE ------------------------------ */
.empty { text-align: center; padding: var(--sp-8) 0; color: var(--muted); }
.empty .ico { color: var(--line-strong); margin: 0 auto 1rem; }

/* ----------------------------- RESPONSIVE ------------------------------- */
@media (max-width: 1024px) {
  .prod-grid { grid-template-columns: repeat(3, 1fr); }
  .pkg-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 860px) {
  .nav, .topbar { display: none; }
  .nav-toggle { display: inline-grid; place-items: center; }
  .hero__grid { grid-template-columns: 1fr; }
  .hero__media { min-height: 260px; order: -1; }
  .sla__grid { grid-template-columns: 1fr 1fr; }
  .sla__item:nth-child(3) { border-left: 0; }
  .cat-grid { grid-template-columns: 1fr; }
  .pdp { grid-template-columns: 1fr; }
  .checkout-grid { grid-template-columns: 1fr; }
  .sticky-atc { display: flex; }
  .summary { position: static; }
}
@media (max-width: 620px) {
  .prod-grid, .prod-grid--3 { grid-template-columns: 1fr 1fr; }
  .pkg-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .row2 { grid-template-columns: 1fr; }
  .section { padding: var(--sp-7) 0; }
}
@media (max-width: 420px) {
  .prod-grid, .prod-grid--3, .pkg-grid { grid-template-columns: 1fr; }
}

/* ==========================================================================
   ANA SAYFA — EDİTORYAL KOMPOZİSYON (v2)
   Asimetrik masthead, dergi-tarzı numaralı içindekiler, ledger paket listesi,
   dikey zaman çizelgesi. Aynı token seti (renk/tipografi/spacing) korunur —
   sadece ana sayfanın yerleşim dili değişir, diğer sayfalardaki bileşenler
   (.cat-card, .pkg, .prod-grid vb.) etkilenmez.
   ========================================================================== */

/* ---- Masthead hero ---- */
.masthead { position: relative; background: var(--anthracite); color: #f3f0e8; overflow: hidden; }
.masthead .container { position: relative; padding: clamp(3rem, 8vw, 6rem) clamp(1rem, 4vw, 2.5rem); }
.masthead__kicker { display: flex; align-items: center; gap: .8rem; margin-bottom: 1.6rem; }
.masthead__kicker .idx { color: var(--gold-soft); font-size: var(--fs-sm); }
.masthead__grid { display: grid; grid-template-columns: 1.3fr .7fr; gap: clamp(1.5rem,4vw,4rem); align-items: end; }
.masthead h1 { font-size: clamp(2.3rem, 1.3rem + 5.2vw, 5.6rem); color: #fff; margin: 0 0 1.3rem; max-width: 15ch; }
.masthead h1 em { font-style: italic; color: var(--gold-soft); }
.masthead__lead { color: #cfc9bb; font-size: var(--fs-md); max-width: 42ch; margin-bottom: 1.8rem; }
.masthead__cta { display: flex; flex-wrap: wrap; gap: .9rem; }
.masthead__side { display: flex; flex-direction: column; gap: 1.5rem; padding-left: clamp(1.5rem,3vw,2.5rem); border-left: 1px solid rgba(255,255,255,.14); }
.masthead__stat b { font-family: var(--serif); font-size: 1.9rem; color: var(--gold-soft); display: block; }
.masthead__stat span { font-size: var(--fs-xs); letter-spacing: .14em; text-transform: uppercase; color: #b7b1a4; }

/* ---- İnce teslimat şeridi ---- */
.ribbon { background: var(--paper-2); border-bottom: 1px solid var(--line); padding: .9rem 0; }
.ribbon__list { display: flex; flex-wrap: wrap; gap: .5rem 2.2rem; justify-content: center; }
.ribbon__item { display: flex; align-items: center; gap: .5rem; font-size: var(--fs-sm); color: var(--muted); }
.ribbon__item b { color: var(--ink); }
.ribbon__item .ico { color: var(--gold); flex: none; }

/* ---- Tam genişlik alıntı ---- */
.pull { background: var(--paper); padding: var(--sp-7) 0; text-align: center; }
.pull blockquote { max-width: 52ch; margin: 0 auto; font-family: var(--serif); font-style: italic; font-size: clamp(1.25rem, 1rem + 1.4vw, 1.9rem); line-height: 1.35; color: var(--ink); }
.pull cite { display: block; margin-top: 1.2rem; font-style: normal; font-size: var(--fs-xs); letter-spacing: .2em; text-transform: uppercase; color: var(--muted); }
.pull cite::before { content: "— "; }

/* ---- İçindekiler tarzı kategori listesi ---- */
.toc { border-top: 1px solid var(--line); }
.toc__row {
  display: grid; grid-template-columns: 3.2rem 1fr auto; align-items: center; gap: 1.2rem;
  padding: clamp(1.2rem, 2.4vw, 1.7rem) 0; border-bottom: 1px solid var(--line);
  transition: padding-left .3s var(--ease), background .3s var(--ease);
}
.toc__row:hover { padding-left: .8rem; background: var(--paper-2); }
.toc__num { font-family: var(--serif); font-size: 1.3rem; color: var(--gold); }
.toc__body h3 { font-size: clamp(1.25rem, 1.05rem + .7vw, 1.7rem); }
.toc__body p { margin: .3rem 0 0; color: var(--muted); font-size: var(--fs-sm); max-width: 48ch; }
.toc__link { display: inline-flex; align-items: center; gap: .5rem; font-weight: 700; font-size: var(--fs-sm); white-space: nowrap; }
.toc__link .ico { transition: transform .3s var(--ease); }
.toc__row:hover .toc__link .ico { transform: translateX(4px); }

/* ---- Ledger (defter) tarzı paket listesi ---- */
.ledger__row { display: flex; align-items: baseline; gap: .9rem; padding: 1.1rem 0; border-bottom: 1px dotted var(--line-strong); flex-wrap: wrap; }
.ledger__row:first-child { border-top: 1px dotted var(--line-strong); }
.ledger__idx { font-family: var(--sans); font-weight: 800; font-size: var(--fs-xs); color: var(--gold); }
.ledger__name { font-family: var(--serif); font-size: 1.12rem; flex: none; }
.ledger__meta { color: var(--muted); font-size: var(--fs-sm); }
.ledger__fill { flex: 1; border-bottom: 1px dotted var(--line-strong); margin: 0 .2rem; align-self: center; min-width: 1.5rem; order: 3; }
.ledger__price { font-family: var(--serif); font-size: 1.15rem; flex: none; order: 4; }
.ledger__row--feat .ledger__name, .ledger__row--feat .ledger__price { color: #9c7e1f; }
.ledger__cta { flex: none; order: 5; }

/* ---- Dikey zaman çizelgesi (sipariş süreci) ---- */
.timeline { position: relative; padding-left: clamp(2.4rem, 5vw, 3.4rem); max-width: 46ch; }
.timeline::before { content: ""; position: absolute; left: 13px; top: 6px; bottom: 6px; width: 1px; background: var(--line-strong); }
.timeline__step { position: relative; padding-bottom: clamp(1.6rem, 3vw, 2.4rem); }
.timeline__step:last-child { padding-bottom: 0; }
.timeline__dot {
  position: absolute; left: clamp(-2.4rem, -5vw, -3.4rem); top: 0; width: 27px; height: 27px;
  border-radius: 50%; background: var(--anthracite); color: var(--gold-soft);
  display: grid; place-items: center; font-family: var(--serif); font-size: .82rem; font-weight: 600;
}
.timeline__step h4 { font-size: 1.15rem; margin-bottom: .25rem; }
.timeline__step p { color: var(--muted); font-size: var(--fs-sm); margin: 0; }

/* ---- Öne çıkanlar: büyük + liste ayrımı ---- */
.feature-split { display: grid; grid-template-columns: 1fr .95fr; gap: clamp(1.5rem, 3vw, 2.8rem); align-items: start; }
.feature-main { position: relative; }
.feature-main__media { display: block; aspect-ratio: 4/5; background: var(--paper-2); border-radius: var(--radius-lg); overflow: hidden; }
.feature-main__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.feature-main:hover .feature-main__media img { transform: scale(1.04); }
.feature-main__body { padding-top: 1rem; }
.feature-main__cat { font-size: var(--fs-xs); letter-spacing: .14em; text-transform: uppercase; color: var(--muted); }
.feature-main__name { font-family: var(--serif); font-size: 1.5rem; margin: .3rem 0 .5rem; }
.feature-main__desc { color: var(--muted); font-size: var(--fs-sm); margin-bottom: .8rem; max-width: 42ch; }
.feature-main__foot { display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.feature-list { display: flex; flex-direction: column; }
.feature-list__row { display: grid; grid-template-columns: 84px 1fr auto auto; gap: 1rem; align-items: center; padding: .9rem 0; border-bottom: 1px solid var(--line); }
.feature-list__row:first-child { border-top: 1px solid var(--line); }
.feature-list__img { display: block; width: 84px; height: 96px; border-radius: var(--radius); overflow: hidden; background: var(--paper-2); }
.feature-list__img img { width: 100%; height: 100%; object-fit: cover; }
.feature-list__info { display: block; }
.feature-list__name { font-family: var(--serif); font-size: 1.05rem; display: block; }
.feature-list__cat { font-size: var(--fs-xs); letter-spacing: .1em; text-transform: uppercase; color: var(--muted); display: block; margin-bottom: .15rem; }
.feature-list__price { font-family: var(--serif); font-size: 1.05rem; text-align: right; }
.feature-list__add { width: 36px; height: 36px; flex: none; }

@media (max-width: 860px) {
  .masthead__grid { grid-template-columns: 1fr; }
  .masthead__side { border-left: 0; border-top: 1px solid rgba(255,255,255,.14); padding-left: 0; padding-top: 1.2rem; flex-direction: row; flex-wrap: wrap; gap: 1.2rem 2rem; }
  .toc__row { grid-template-columns: 2.4rem 1fr; }
  .toc__link { grid-column: 1 / -1; padding-left: 2.4rem; }
  .feature-split { grid-template-columns: 1fr; }
}
