/* ═══════════════════════════════════════════════════════════════════════
   Munch Coffee — vitrin tasarım sistemi
   ═══════════════════════════════════════════════════════════════════════ */

:root {
  --krem:     #FEFCF7;
  --fildisi:  #F7E9DE;
  --bej:      #EAD7CA;
  --sutlu:    #8F684D;
  --espresso: #341212;
  --kakao:    #180D0A;
  --turuncu:  #FF652D;
  --altin:    #BC9B57;

  --f-goster: 'Jost', 'Segoe UI', sans-serif;
  --f-metin:  'Inter', system-ui, sans-serif;

  --gecis: cubic-bezier(.22, 1, .36, 1);
  --kenar: clamp(1.25rem, 4vw, 3rem);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--f-metin);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--espresso);
  background: var(--krem);
  -webkit-font-smoothing: antialiased;
}

img, svg, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; background: none; border: 0; color: inherit; }
input, select, textarea { font: inherit; color: inherit; }

h1, h2, h3, h4 {
  font-family: var(--f-goster);
  font-weight: 300;
  line-height: 1.15;
  letter-spacing: .04em;
}

.gizli-alan { position: absolute; left: -9999px; opacity: 0; height: 0; }

/* ── Başlık çubuğu ─────────────────────────────────────────────────── */
.ust-bar {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 60;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: .9rem var(--kenar);
  transition: background .45s var(--gecis), box-shadow .45s var(--gecis), color .3s;
}
.ust-bar.dolu {
  background: rgba(254, 252, 247, .92);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(52, 18, 18, .07);
}
body.anasayfa .ust-bar:not(.dolu) { color: var(--krem); }

.marka { display: flex; align-items: center; gap: .6rem; }
.marka-amblem { width: 30px; height: 37px; stroke: var(--altin); stroke-width: 3; }
.marka-ad {
  font-family: var(--f-goster);
  font-weight: 400;
  font-size: 1.15rem;
  letter-spacing: .32em;
}
.marka-ad em { font-style: normal; font-weight: 200; opacity: .75; margin-left: .3em; font-size: .72em; letter-spacing: .38em; }

.ana-menu { display: flex; gap: clamp(1rem, 2.5vw, 2.2rem); }
.ana-menu a {
  font-family: var(--f-goster);
  font-size: .82rem;
  font-weight: 400;
  letter-spacing: .18em;
  text-transform: uppercase;
  position: relative;
  padding: .3rem 0;
}
.ana-menu a::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 100%; height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .4s var(--gecis);
}
.ana-menu a:hover::after { transform: scaleX(1); transform-origin: left; }

.ust-islemler { display: flex; align-items: center; gap: .35rem; }
.ikon-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem; height: 2.5rem;
  border-radius: 50%;
  transition: background .3s;
  position: relative;
}
.ikon-btn:hover { background: rgba(143, 104, 77, .12); }
.ikon-btn svg { width: 1.3rem; height: 1.3rem; }
.sepet-adet {
  position: absolute;
  top: .1rem; right: .05rem;
  min-width: 1.05rem; height: 1.05rem;
  border-radius: 1rem;
  background: var(--turuncu);
  color: #fff;
  font-size: .62rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 .25rem;
}

.menu-ac { display: none; flex-direction: column; gap: 5px; }
.menu-ac span { width: 1.35rem; height: 1.5px; background: currentColor; transition: transform .35s var(--gecis), opacity .3s; }
.menu-ac[aria-expanded="true"] span:first-child { transform: translateY(3.2px) rotate(45deg); }
.menu-ac[aria-expanded="true"] span:last-child  { transform: translateY(-3.2px) rotate(-45deg); }

.mobil-menu {
  position: fixed;
  inset: 0;
  z-index: 55;
  background: var(--kakao);
  color: var(--krem);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .45s var(--gecis);
}
.mobil-menu.acik { opacity: 1; pointer-events: auto; }
.mobil-menu nav { display: flex; flex-direction: column; gap: 1.4rem; text-align: center; }
.mobil-menu a {
  font-family: var(--f-goster);
  font-weight: 200;
  font-size: clamp(1.6rem, 6vw, 2.2rem);
  letter-spacing: .22em;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .5s var(--gecis), transform .5s var(--gecis);
}
.mobil-menu.acik a { opacity: 1; transform: none; }
.mobil-menu.acik a:nth-child(2) { transition-delay: .06s; }
.mobil-menu.acik a:nth-child(3) { transition-delay: .12s; }
.mobil-menu.acik a:nth-child(4) { transition-delay: .18s; }
.mobil-menu.acik a:nth-child(5) { transition-delay: .24s; }
.mobil-menu.acik a:nth-child(6) { transition-delay: .3s; }

/* ── Açılış perdesi + hero ─────────────────────────────────────────── */
#intro {
  position: relative;
  height: 100svh;
  overflow: hidden;
  background: var(--kakao);
  color: var(--krem);
}
.mermer-tuval {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;                    /* JS aydınlatır */
}
#intro::after {                  /* okunurluk için hafif koyu örtü */
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(24, 13, 10, .18);
  pointer-events: none;
}
.intro-icerik {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 1.25rem;
}
.intro-amblem {
  width: clamp(64px, 9vw, 96px);
  margin-bottom: clamp(1.2rem, 3vh, 2.4rem);
  stroke: var(--krem);
  stroke-width: 2.4;
  stroke-linecap: round;
}
.intro-amblem .ac {
  stroke-dasharray: 460;
  stroke-dashoffset: 460;       /* JS çizer */
}
.intro-ust {
  font-family: var(--f-goster);
  font-weight: 300;
  font-size: clamp(.68rem, 1.6vw, .85rem);
  letter-spacing: .42em;
  text-indent: .42em;
  opacity: 0;
  margin-bottom: clamp(.6rem, 1.5vh, 1.2rem);
}
.intro-logo {
  font-family: var(--f-goster);
  font-weight: 200;
  font-size: clamp(3.4rem, 14vw, 9.5rem);
  letter-spacing: clamp(.14em, 2vw, .22em);
  text-indent: .2em;
  line-height: 1;
  opacity: 0;
}
.intro-alt {
  margin-top: clamp(.9rem, 2.5vh, 1.6rem);
  font-family: var(--f-goster);
  font-weight: 300;
  font-size: clamp(.85rem, 2.2vw, 1.05rem);
  letter-spacing: .3em;
  text-indent: .3em;
  text-transform: uppercase;
}
.intro-alt span { opacity: 0; display: inline-block; }

.kaydir-rozet {
  position: absolute;
  right: clamp(1rem, 4vw, 3rem);
  bottom: clamp(1rem, 4vh, 2.5rem);
  z-index: 3;
  width: clamp(76px, 9vw, 108px);
  height: clamp(76px, 9vw, 108px);
  opacity: 0;                    /* JS gösterir */
}
.kaydir-rozet svg { width: 100%; height: 100%; animation: rozetDon 14s linear infinite; }
.kaydir-rozet text {
  font-family: var(--f-goster);
  font-size: 10.5px;
  letter-spacing: .25em;
  fill: var(--krem);
}
.kaydir-rozet .ok {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  animation: okZipla 2.2s ease-in-out infinite;
}
@keyframes rozetDon { to { transform: rotate(360deg); } }
@keyframes okZipla { 0%, 100% { transform: translateY(-2px); } 50% { transform: translateY(4px); } }

/* ── Bölüm iskeleti ────────────────────────────────────────────────── */
.bolum { padding: clamp(4rem, 10vw, 8rem) var(--kenar); }
.bolum-dar { max-width: 1200px; margin: 0 auto; }
.bolum-koyu { background: var(--kakao); color: var(--fildisi); }
.bolum-krem { background: var(--krem); }
.bolum-fildisi { background: var(--fildisi); }

.bolum-baslik {
  text-align: center;
  margin-bottom: clamp(2.5rem, 6vw, 4.5rem);
}
.bolum-baslik .mini {
  font-family: var(--f-goster);
  font-size: .78rem;
  font-weight: 400;
  letter-spacing: .4em;
  text-indent: .4em;
  text-transform: uppercase;
  color: var(--altin);
  display: block;
  margin-bottom: .9rem;
}
.bolum-baslik h2 {
  font-size: clamp(2rem, 5.5vw, 3.6rem);
  font-weight: 200;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.susleme {
  height: 26px;
  margin: 0 auto;
  margin-top: 1.4rem;
  width: min(300px, 60%);
  background-image: repeating-linear-gradient(90deg,
    transparent 0 6px, var(--altin) 6px 7px, transparent 7px 13px);
  mask-image: linear-gradient(90deg, transparent, #000 30% 70%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 30% 70%, transparent);
  opacity: .5;
}

/* fade-up giriş animasyonu (JS ScrollTrigger ile tetiklenir) */
.gir { opacity: 0; transform: translateY(34px); }

/* ── Hikâye bantları ───────────────────────────────────────────────── */
.hikaye {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}
.hikaye + .hikaye { margin-top: clamp(4rem, 9vw, 7rem); }
.hikaye:nth-child(even) .hikaye-gorsel { order: 2; }
.hikaye-gorsel {
  aspect-ratio: 4 / 5;
  border-radius: 48% 48% 46% 46% / 38% 38% 60% 60%;   /* çekirdek formu */
  overflow: hidden;
  background: var(--bej);
  display: flex;
  align-items: center;
  justify-content: center;
}
.hikaye-gorsel svg { width: 55%; height: auto; stroke: var(--sutlu); opacity: .85; }
.hikaye-metin .mini {
  font-family: var(--f-goster);
  letter-spacing: .35em;
  text-transform: uppercase;
  font-size: .75rem;
  color: var(--turuncu);
  display: block;
  margin-bottom: .8rem;
}
.hikaye-metin h3 {
  font-size: clamp(1.6rem, 3.6vw, 2.4rem);
  font-weight: 300;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.hikaye-metin p { max-width: 46ch; opacity: .85; }

/* ── Ürün kartları ─────────────────────────────────────────────────── */
.urun-izgara {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(270px, 100%), 1fr));
  gap: clamp(1.2rem, 3vw, 2.2rem);
}
.urun-kart {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid rgba(52, 18, 18, .08);
  border-radius: 18px;
  overflow: hidden;
  transition: transform .45s var(--gecis), box-shadow .45s var(--gecis);
}
.urun-kart:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 48px -24px rgba(52, 18, 18, .28);
}
.urun-kart-gorsel {
  aspect-ratio: 1;
  background: var(--fildisi);
  overflow: hidden;
  position: relative;
}
.urun-kart-gorsel img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--gecis); }
.urun-kart:hover .urun-kart-gorsel img { transform: scale(1.05); }
.img-yok {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  font-size: 3rem; opacity: .4;
  aspect-ratio: 1;
  background: var(--fildisi);
}
.tukendi-rozet, .indirim-rozet {
  position: absolute;
  top: .8rem; left: .8rem;
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: .3rem .7rem;
  border-radius: 2rem;
  background: var(--kakao);
  color: var(--krem);
}
.indirim-rozet { background: var(--turuncu); }
.urun-kart-govde { padding: 1.15rem 1.25rem 1.35rem; display: flex; flex-direction: column; gap: .3rem; flex: 1; }
.urun-kart-kategori {
  font-size: .68rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--sutlu);
}
.urun-kart-ad {
  font-family: var(--f-goster);
  font-weight: 400;
  font-size: 1.18rem;
  letter-spacing: .05em;
}
.urun-kart-not { font-size: .82rem; color: var(--sutlu); font-style: italic; }
.urun-kart-fiyat { margin-top: auto; padding-top: .7rem; font-weight: 600; letter-spacing: .02em; }
.urun-kart-fiyat small { font-weight: 400; color: var(--sutlu); margin-right: .35rem; }

/* ── Butonlar ──────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  font-family: var(--f-goster);
  font-weight: 400;
  font-size: .85rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  padding: .95rem 2.2rem;
  border-radius: 3rem;
  border: 1px solid var(--espresso);
  color: var(--espresso);
  background: transparent;
  transition: background .35s, color .35s, border-color .35s, transform .2s;
}
.btn:hover { background: var(--espresso); color: var(--krem); }
.btn:active { transform: scale(.97); }
.btn-dolu { background: var(--espresso); color: var(--krem); }
.btn-dolu:hover { background: var(--turuncu); border-color: var(--turuncu); }
.btn-turuncu { background: var(--turuncu); border-color: var(--turuncu); color: #fff; }
.btn-turuncu:hover { background: var(--espresso); border-color: var(--espresso); }
.btn-acik { border-color: var(--krem); color: var(--krem); }
.btn-acik:hover { background: var(--krem); color: var(--kakao); }
.btn-kucuk { padding: .55rem 1.3rem; font-size: .75rem; }
.btn-blok { width: 100%; }
.btn[disabled] { opacity: .45; pointer-events: none; }

/* ── Form elemanları ───────────────────────────────────────────────── */
.form-alan { display: flex; flex-direction: column; gap: .35rem; margin-bottom: 1.1rem; }
.form-alan label { font-size: .8rem; font-weight: 600; letter-spacing: .04em; }
.form-alan input, .form-alan select, .form-alan textarea {
  padding: .8rem 1rem;
  border: 1px solid rgba(52, 18, 18, .2);
  border-radius: 10px;
  background: #fff;
  transition: border-color .3s, box-shadow .3s;
}
.form-alan input:focus, .form-alan select:focus, .form-alan textarea:focus {
  outline: none;
  border-color: var(--turuncu);
  box-shadow: 0 0 0 3px rgba(255, 101, 45, .15);
}
.form-satir { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.onay-satir { display: flex; gap: .6rem; align-items: flex-start; font-size: .85rem; margin-bottom: .8rem; }
.onay-satir input { margin-top: .25rem; accent-color: var(--turuncu); }
.onay-satir a { text-decoration: underline; text-underline-offset: 2px; }

.hata-kutu, .ok-kutu {
  padding: .9rem 1.2rem;
  border-radius: 12px;
  margin-bottom: 1.2rem;
  font-size: .9rem;
  background: #FDECEC;
  border: 1px solid #F3B8B8;
  color: #8A1F1F;
}
.ok-kutu { background: #EDF7EE; border-color: #B9E0BC; color: #1E5B24; }

.flash {
  position: fixed;
  top: 5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 90;
  padding: .8rem 1.6rem;
  border-radius: 3rem;
  background: var(--kakao);
  color: var(--krem);
  font-size: .9rem;
  box-shadow: 0 18px 40px -18px rgba(0, 0, 0, .4);
  animation: flashGir .5s var(--gecis), flashCik .5s var(--gecis) 4.5s forwards;
}
.flash-hata { background: #8A1F1F; }
@keyframes flashGir { from { opacity: 0; transform: translate(-50%, -12px); } }
@keyframes flashCik { to { opacity: 0; transform: translate(-50%, -12px); visibility: hidden; } }

/* ── Sayfa başlığı (iç sayfalar) ──────────────────────────────────── */
.sayfa-ust {
  padding: clamp(7rem, 16vw, 11rem) var(--kenar) clamp(2.5rem, 6vw, 4rem);
  text-align: center;
  background: var(--fildisi);
}
.sayfa-ust h1 {
  font-size: clamp(2rem, 6vw, 3.4rem);
  font-weight: 200;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.sayfa-ust .kirinti { font-size: .8rem; color: var(--sutlu); margin-top: .8rem; letter-spacing: .06em; }
.sayfa-ust .kirinti a:hover { text-decoration: underline; }

/* ── Mağaza ────────────────────────────────────────────────────────── */
.magaza-duzen { display: grid; grid-template-columns: 220px 1fr; gap: clamp(1.5rem, 4vw, 3.5rem); }
.magaza-yan h3 {
  font-size: .8rem;
  font-weight: 500;
  letter-spacing: .3em;
  text-transform: uppercase;
  margin-bottom: 1rem;
  color: var(--sutlu);
}
.magaza-yan a {
  display: block;
  padding: .45rem 0;
  font-size: .95rem;
  border-bottom: 1px solid rgba(52, 18, 18, .07);
  transition: padding-left .3s, color .3s;
}
.magaza-yan a:hover, .magaza-yan a.secili { padding-left: .5rem; color: var(--turuncu); }
.arama-kutu { display: flex; margin-bottom: 1.6rem; border: 1px solid rgba(52,18,18,.2); border-radius: 3rem; overflow: hidden; background: #fff; }
.arama-kutu input { flex: 1; border: 0; padding: .7rem 1.1rem; outline: none; background: transparent; }
.arama-kutu button { padding: 0 1.1rem; }

.sayfalama { display: flex; justify-content: center; gap: .4rem; margin-top: 3rem; }
.sayfalama a, .sayfalama span {
  min-width: 2.4rem; height: 2.4rem;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 50%;
  border: 1px solid rgba(52, 18, 18, .15);
  font-size: .9rem;
}
.sayfalama .suanki { background: var(--espresso); color: var(--krem); border-color: var(--espresso); }
.sayfalama a:hover { border-color: var(--espresso); }

/* ── Ürün detay ────────────────────────────────────────────────────── */
.urun-duzen {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: start;
}
.urun-galeri { position: sticky; top: 6rem; }
.urun-galeri-ana {
  border-radius: 24px;
  overflow: hidden;
  background: var(--fildisi);
  aspect-ratio: 1;
}
.urun-galeri-ana img { width: 100%; height: 100%; object-fit: cover; }
.urun-galeri-kucukler { display: flex; gap: .7rem; margin-top: .7rem; }
.urun-galeri-kucukler button {
  width: 74px; height: 74px;
  border-radius: 14px;
  overflow: hidden;
  border: 2px solid transparent;
  padding: 0;
}
.urun-galeri-kucukler button.secili { border-color: var(--turuncu); }
.urun-galeri-kucukler img { width: 100%; height: 100%; object-fit: cover; }

.urun-bilgi .kategori { font-size: .72rem; letter-spacing: .3em; text-transform: uppercase; color: var(--sutlu); }
.urun-bilgi h1 {
  font-size: clamp(1.8rem, 4.5vw, 2.8rem);
  font-weight: 300;
  letter-spacing: .06em;
  margin: .4rem 0 .6rem;
}
.tat-notu { font-style: italic; color: var(--sutlu); margin-bottom: 1rem; }
.urun-ozellik { display: flex; flex-wrap: wrap; gap: .5rem; margin: 1rem 0 1.4rem; }
.urun-ozellik span {
  font-size: .74rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .35rem .9rem;
  border-radius: 2rem;
  border: 1px solid rgba(52, 18, 18, .18);
}
.urun-fiyat { font-size: 1.7rem; font-weight: 600; margin: 1rem 0 1.2rem; }
.urun-fiyat del { font-weight: 400; font-size: 1.1rem; color: var(--sutlu); margin-right: .6rem; }

.varyant-secim { display: flex; flex-direction: column; gap: .55rem; margin-bottom: 1.4rem; }
.varyant-secim .vr {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border: 1px solid rgba(52, 18, 18, .18);
  border-radius: 14px;
  padding: .85rem 1.1rem;
  cursor: pointer;
  transition: border-color .3s, background .3s;
}
.varyant-secim .vr:has(input:checked) { border-color: var(--turuncu); background: rgba(255, 101, 45, .06); }
.varyant-secim .vr input { accent-color: var(--turuncu); }
.varyant-secim .vr .vad { flex: 1; margin-left: .6rem; font-weight: 500; }
.varyant-secim .vr .vstok { font-size: .74rem; color: var(--sutlu); }
.varyant-secim .vr.yok { opacity: .5; pointer-events: none; }

.adet-satir { display: flex; gap: .8rem; align-items: stretch; }
.adet-kutu {
  display: flex;
  align-items: center;
  border: 1px solid rgba(52, 18, 18, .2);
  border-radius: 3rem;
  overflow: hidden;
}
.adet-kutu button { width: 2.8rem; height: 100%; font-size: 1.15rem; }
.adet-kutu input { width: 3rem; text-align: center; border: 0; outline: none; background: transparent; -moz-appearance: textfield; }
.adet-kutu input::-webkit-inner-spin-button { display: none; }

.urun-aciklama { margin-top: 2rem; line-height: 1.8; }
.urun-aciklama h3 { font-size: 1rem; letter-spacing: .2em; text-transform: uppercase; margin: 1.6rem 0 .6rem; font-weight: 500; }

/* ── Yorumlar ──────────────────────────────────────────────────────── */
.yorumlar { margin-top: clamp(3rem, 7vw, 5rem); border-top: 1px solid rgba(52, 18, 18, .1); padding-top: 2.5rem; }
.yorum { border-bottom: 1px solid rgba(52, 18, 18, .07); padding: 1.1rem 0; }
.yorum .yildizlar { color: var(--altin); letter-spacing: .15em; }
.yorum .kimden { font-size: .8rem; color: var(--sutlu); margin-top: .3rem; }
.puan-ozet { display: flex; align-items: baseline; gap: .7rem; margin-bottom: 1.4rem; }
.puan-ozet strong { font-size: 2rem; font-family: var(--f-goster); }

/* ── Sepet ─────────────────────────────────────────────────────────── */
.sepet-duzen { display: grid; grid-template-columns: minmax(0, 1.6fr) minmax(300px, 1fr); gap: clamp(1.5rem, 4vw, 3rem); align-items: start; }
.sepet-tablo { display: flex; flex-direction: column; gap: 1rem; }
.sepet-kalem {
  display: grid;
  grid-template-columns: 88px 1fr auto;
  gap: 1.1rem;
  align-items: center;
  background: #fff;
  border: 1px solid rgba(52, 18, 18, .08);
  border-radius: 16px;
  padding: .9rem;
}
.sepet-kalem img, .sepet-kalem .img-yok { width: 88px; height: 88px; object-fit: cover; border-radius: 12px; font-size: 2rem; }
.sepet-kalem .kad { font-weight: 600; }
.sepet-kalem .kvaryant { font-size: .82rem; color: var(--sutlu); }
.sepet-kalem .ksil { font-size: .78rem; color: #8A1F1F; margin-top: .3rem; display: inline-block; }
.sepet-kalem .ksag { text-align: right; display: flex; flex-direction: column; gap: .5rem; align-items: flex-end; }

.ozet-kutu {
  background: #fff;
  border: 1px solid rgba(52, 18, 18, .1);
  border-radius: 20px;
  padding: 1.6rem;
  position: sticky;
  top: 6rem;
}
.ozet-kutu h3 { font-size: 1rem; letter-spacing: .25em; text-transform: uppercase; font-weight: 500; margin-bottom: 1.2rem; }
.ozet-satir { display: flex; justify-content: space-between; padding: .45rem 0; font-size: .95rem; }
.ozet-satir.toplam { border-top: 1px solid rgba(52, 18, 18, .12); margin-top: .6rem; padding-top: 1rem; font-weight: 700; font-size: 1.15rem; }
.ozet-satir .yesil { color: #1E5B24; }
.kupon-satir { display: flex; gap: .5rem; margin: .9rem 0; }
.kupon-satir input { flex: 1; padding: .6rem .9rem; border: 1px solid rgba(52,18,18,.2); border-radius: 3rem; }
.kargo-notu { font-size: .8rem; color: var(--sutlu); margin-top: .8rem; text-align: center; }

/* ── Ödeme ─────────────────────────────────────────────────────────── */
.odeme-duzen { display: grid; grid-template-columns: minmax(0, 1.5fr) minmax(320px, 1fr); gap: clamp(1.5rem, 4vw, 3rem); align-items: start; }
.odeme-bolum { background: #fff; border: 1px solid rgba(52, 18, 18, .09); border-radius: 20px; padding: 1.6rem; margin-bottom: 1.4rem; }
.odeme-bolum h3 { font-size: .95rem; letter-spacing: .22em; text-transform: uppercase; font-weight: 500; margin-bottom: 1.2rem; display: flex; align-items: center; gap: .6rem; }
.odeme-bolum h3 .no {
  width: 1.7rem; height: 1.7rem;
  border-radius: 50%;
  background: var(--espresso);
  color: var(--krem);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: .8rem;
}
.havale-kutu { background: var(--fildisi); border-radius: 14px; padding: 1.1rem 1.3rem; font-size: .9rem; }
.havale-kutu .iban { font-family: monospace; font-size: 1rem; letter-spacing: .04em; user-select: all; }

/* ── Sipariş durumu ────────────────────────────────────────────────── */
.durum-serit { display: flex; flex-wrap: wrap; gap: .5rem 0; margin: 1.5rem 0; }
.durum-adim { flex: 1; min-width: 90px; text-align: center; position: relative; font-size: .74rem; letter-spacing: .05em; }
.durum-adim::before {
  content: '';
  display: block;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--bej);
  margin: 0 auto .45rem;
  border: 3px solid var(--krem);
  box-shadow: 0 0 0 1px rgba(52, 18, 18, .18);
}
.durum-adim::after {
  content: '';
  position: absolute;
  top: 6px;
  left: calc(-50% + 10px);
  width: calc(100% - 20px);
  height: 2px;
  background: rgba(52, 18, 18, .12);
}
.durum-adim:first-child::after { display: none; }
.durum-adim.oldu::before { background: var(--turuncu); box-shadow: 0 0 0 1px var(--turuncu); }
.durum-adim.oldu::after { background: var(--turuncu); }

.rozet {
  display: inline-block;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: .28rem .8rem;
  border-radius: 2rem;
  background: var(--bej);
}
.rozet.r-odeme_bekliyor { background: #FBEFD8; color: #8a6100; }
.rozet.r-onaylandi, .rozet.r-odendi { background: #E4F0E5; color: #1E5B24; }
.rozet.r-hazirlaniyor { background: #E3ECF7; color: #24518c; }
.rozet.r-kargoda { background: #EDE4F7; color: #5b2d8c; }
.rozet.r-teslim { background: #DFF3E1; color: #14531c; }
.rozet.r-iptal, .rozet.r-iade, .rozet.r-bekliyor { background: #F7E2E2; color: #8A1F1F; }

/* ── Hesap ─────────────────────────────────────────────────────────── */
.hesap-duzen { display: grid; grid-template-columns: 220px 1fr; gap: clamp(1.5rem, 4vw, 3rem); align-items: start; }
.hesap-yan { background: #fff; border: 1px solid rgba(52,18,18,.09); border-radius: 18px; overflow: hidden; }
.hesap-yan a { display: block; padding: .9rem 1.2rem; border-bottom: 1px solid rgba(52,18,18,.06); font-size: .92rem; transition: background .25s; }
.hesap-yan a:hover, .hesap-yan a.secili { background: var(--fildisi); }
.hesap-yan a:last-child { border-bottom: 0; color: #8A1F1F; }

.tablo { width: 100%; border-collapse: collapse; background: #fff; border-radius: 16px; overflow: hidden; border: 1px solid rgba(52,18,18,.09); }
.tablo th { text-align: left; font-size: .72rem; letter-spacing: .14em; text-transform: uppercase; color: var(--sutlu); padding: .9rem 1rem; border-bottom: 1px solid rgba(52,18,18,.1); }
.tablo td { padding: .85rem 1rem; border-bottom: 1px solid rgba(52,18,18,.05); font-size: .92rem; }
.tablo tr:last-child td { border-bottom: 0; }
.tablo a { color: var(--turuncu); font-weight: 500; }

/* ── Dar kart (giriş/kayıt/takip) ──────────────────────────────────── */
.dar-kart { max-width: 460px; margin: 0 auto; background: #fff; border: 1px solid rgba(52,18,18,.09); border-radius: 22px; padding: 2rem; }
.dar-kart .alt-baglanti { text-align: center; margin-top: 1.2rem; font-size: .88rem; }
.dar-kart .alt-baglanti a { color: var(--turuncu); font-weight: 500; }

/* ── İçerik sayfası ────────────────────────────────────────────────── */
.icerik-metin { max-width: 760px; margin: 0 auto; line-height: 1.85; }
.icerik-metin h3 { margin: 1.8rem 0 .7rem; font-weight: 500; letter-spacing: .04em; }
.icerik-metin p + p { margin-top: 1rem; }
.icerik-metin em { color: var(--sutlu); }

/* ── Blog ──────────────────────────────────────────────────────────── */
.blog-izgara { display: grid; grid-template-columns: repeat(auto-fill, minmax(min(300px, 100%), 1fr)); gap: 2rem; }
.blog-kart { border-radius: 18px; overflow: hidden; background: #fff; border: 1px solid rgba(52,18,18,.08); transition: transform .4s var(--gecis), box-shadow .4s var(--gecis); }
.blog-kart:hover { transform: translateY(-5px); box-shadow: 0 22px 44px -24px rgba(52,18,18,.25); }
.blog-kart .bg { aspect-ratio: 16/9; background: var(--fildisi); }
.blog-kart .bg img { width: 100%; height: 100%; object-fit: cover; }
.blog-kart .bic { padding: 1.2rem 1.3rem 1.5rem; }
.blog-kart time { font-size: .75rem; color: var(--sutlu); letter-spacing: .1em; text-transform: uppercase; }
.blog-kart h3 { font-size: 1.2rem; font-weight: 400; margin: .4rem 0 .5rem; }
.blog-kart p { font-size: .9rem; opacity: .8; }

/* ── Footer ────────────────────────────────────────────────────────── */
.alt-bolum { background: var(--kakao); color: var(--fildisi); padding: clamp(3rem, 7vw, 5rem) var(--kenar) 1.5rem; }
.alt-ic {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.4fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  max-width: 1200px;
  margin: 0 auto;
  padding-bottom: 2.5rem;
}
.alt-logo { font-family: var(--f-goster); font-weight: 200; font-size: 1.9rem; letter-spacing: .3em; display: block; margin-bottom: .6rem; }
.alt-marka p { font-size: .88rem; opacity: .7; max-width: 26ch; }
.sosyal { display: inline-block; margin-top: .9rem; font-size: .8rem; letter-spacing: .2em; text-transform: uppercase; border-bottom: 1px solid var(--altin); padding-bottom: .15rem; }
.alt-menu h4, .alt-bulten h4 {
  font-size: .74rem;
  letter-spacing: .3em;
  text-transform: uppercase;
  font-weight: 400;
  color: var(--altin);
  margin-bottom: 1rem;
}
.alt-menu a { display: block; padding: .28rem 0; font-size: .9rem; opacity: .8; transition: opacity .25s, padding-left .3s; }
.alt-menu a:hover { opacity: 1; padding-left: .4rem; }
.alt-bulten p { font-size: .85rem; opacity: .7; margin-bottom: .9rem; }
.bulten-satir { display: flex; border: 1px solid rgba(254, 252, 247, .25); border-radius: 3rem; overflow: hidden; }
.bulten-satir input { flex: 1; background: transparent; border: 0; padding: .75rem 1.1rem; color: var(--krem); outline: none; }
.bulten-satir input::placeholder { color: rgba(254, 252, 247, .5); }
.bulten-satir button { padding: 0 1.2rem; font-size: 1.1rem; transition: background .3s; }
.bulten-satir button:hover { background: var(--turuncu); }
.alt-cizgi {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem 1.5rem;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 1.4rem;
  border-top: 1px solid rgba(254, 252, 247, .12);
  font-size: .78rem;
  opacity: .6;
}

/* ── 404 ───────────────────────────────────────────────────────────── */
.sayfa-404 { min-height: 60vh; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; padding: 8rem var(--kenar) 4rem; }
.sayfa-404 h1 { font-size: clamp(4rem, 15vw, 8rem); font-weight: 200; letter-spacing: .1em; color: var(--bej); }

/* ── Duyarlılık ────────────────────────────────────────────────────── */
@media (max-width: 960px) {
  .ana-menu { display: none; }
  .menu-ac { display: flex; }
  .magaza-duzen, .hesap-duzen { grid-template-columns: 1fr; }
  .magaza-yan { display: flex; gap: .5rem; overflow-x: auto; padding-bottom: .5rem; }
  .magaza-yan h3 { display: none; }
  .magaza-yan a { border: 1px solid rgba(52,18,18,.15); border-radius: 3rem; padding: .45rem 1.1rem; white-space: nowrap; font-size: .85rem; }
  .magaza-yan a:hover, .magaza-yan a.secili { padding-left: 1.1rem; }
  .hesap-yan { display: flex; overflow-x: auto; }
  .hesap-yan a { white-space: nowrap; border-bottom: 0; border-right: 1px solid rgba(52,18,18,.06); }
  .urun-duzen, .sepet-duzen, .odeme-duzen { grid-template-columns: 1fr; }
  .urun-galeri { position: static; }
  .ozet-kutu { position: static; }
}
@media (max-width: 640px) {
  .hikaye { grid-template-columns: 1fr; }
  .hikaye:nth-child(even) .hikaye-gorsel { order: 0; }
  .hikaye-gorsel { max-width: 320px; margin: 0 auto; }
  .form-satir { grid-template-columns: 1fr; }
  .alt-ic { grid-template-columns: 1fr 1fr; }
  .sepet-kalem { grid-template-columns: 72px 1fr; }
  .sepet-kalem .ksag { grid-column: 1 / -1; flex-direction: row; justify-content: space-between; align-items: center; }
  .marka-ad em { display: none; }
}

/* ── Hareket azaltma tercihi ───────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
  .gir { opacity: 1; transform: none; }
  .intro-ust, .intro-logo, .intro-alt span, .kaydir-rozet, .mermer-tuval { opacity: 1 !important; }
  .intro-amblem .ac { stroke-dashoffset: 0; }
}
