/* ═══════════════════════════════════════════════════════
   ÇELİK ART — STYLE v3.0
   Modern e-ticaret, mobil öncelikli, kapı geçişli
   ═══════════════════════════════════════════════════════ */

/* ── RESET + BASE ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
:root {
  --bg: #F5F1EA;
  --bg2: #EDE6D8;
  --card: #FFFFFF;
  --ink: #0F1B2C;
  --ink2: #2A3847;
  --ink3: #556677;
  --muted: #8B98A8;
  --gold: #C9A96E;
  --gold-dk: #A07840;
  --green: #1F4E3D;
  --coral: #E85D3A;
  --line: rgba(15, 27, 44, 0.08);
  --line2: rgba(15, 27, 44, 0.14);
  --shadow-sm: 0 1px 3px rgba(15, 27, 44, 0.06);
  --shadow-md: 0 8px 24px rgba(15, 27, 44, 0.08);
  --shadow-lg: 0 16px 48px rgba(15, 27, 44, 0.12);
  --r: 14px;
  --r-sm: 8px;
  --topnav: 60px;
  --botnav: 64px;
}

html, body { min-height: 100%; background: var(--bg); color: var(--ink); font-family: 'Inter', 'Segoe UI', system-ui, sans-serif; -webkit-font-smoothing: antialiased; }
body { padding-top: var(--topnav); padding-bottom: calc(var(--botnav) + 16px); line-height: 1.5; overflow-x: hidden; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
img { max-width: 100%; display: block; }
main { min-height: calc(100vh - var(--topnav) - var(--botnav) - 16px); }

/* ── INTRO ANİMASYON ── */
#intro {
  position: fixed; inset: 0; z-index: 9999;
  background: linear-gradient(135deg, #0F1B2C 0%, #1A2B42 100%);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
#intro.cikis { animation: introFade .7s ease forwards .8s; }
@keyframes introFade {
  99% { opacity: 0; visibility: visible; }
  100% { opacity: 0; visibility: hidden; pointer-events: none; }
}
.intro-glow {
  position: absolute; width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(201, 169, 110, .15), transparent 70%);
  top: 50%; left: 50%; transform: translate(-50%, -50%);
  animation: glowPulse 3s ease-in-out infinite;
}
@keyframes glowPulse { 0%, 100% { opacity: .5; transform: translate(-50%, -50%) scale(1); } 50% { opacity: 1; transform: translate(-50%, -50%) scale(1.1); } }
.intro-content { position: relative; text-align: center; color: #F5F1EA; }
.intro-logo {
  width: 110px; height: 110px;
  margin: 0 auto 28px;
  opacity: 0; animation: introFadeIn .6s ease forwards .3s;
  filter: drop-shadow(0 0 30px rgba(201, 169, 110, .4));
  object-fit: contain;
  mix-blend-mode: lighten;
}
.intro-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.2rem, 7vw, 3.4rem);
  font-weight: 300; letter-spacing: .3em;
  margin-bottom: 10px;
  clip-path: inset(0 100% 0 0);
  animation: introReveal 1s cubic-bezier(.77, 0, .18, 1) forwards .9s;
  padding-left: .3em;
}
@keyframes introReveal { to { clip-path: inset(0 0 0 0); } }
@keyframes introFadeIn { to { opacity: 1; } }
.intro-line {
  width: 0; height: 1px; background: var(--gold);
  margin: 16px auto; animation: introLine .6s ease forwards 1.6s;
}
@keyframes introLine { to { width: 140px; } }
.intro-sub {
  font-size: .7rem; letter-spacing: .4em; text-transform: uppercase;
  color: var(--gold); opacity: 0;
  animation: introFadeIn .6s ease forwards 1.8s;
}
.intro-bar {
  position: absolute; bottom: 48px; left: 50%; transform: translateX(-50%);
  width: 200px; height: 2px; background: rgba(201, 169, 110, .15);
}
.intro-bar::before {
  content: ''; position: absolute; left: 0; top: 0;
  height: 100%; width: 0; background: var(--gold);
  animation: introBar 2.2s cubic-bezier(.4, 0, .2, 1) forwards .3s;
}
@keyframes introBar { to { width: 100%; } }

/* ── KAPI GEÇİŞİ ── */
.kapi-sol, .kapi-sag {
  position: fixed; top: 0; height: 100%; width: 50%;
  background: #0F1B2C;
  z-index: 9500; pointer-events: none;
  transform: scaleX(0); transform-origin: left center;
  transition: transform .5s cubic-bezier(.77, 0, .18, 1);
}
.kapi-sol { left: 0; transform-origin: left center; }
.kapi-sag { right: 0; transform-origin: right center; }
.kapi-aktif .kapi-sol,
.kapi-aktif-html .kapi-sol { transform: scaleX(1); }
.kapi-aktif .kapi-sag,
.kapi-aktif-html .kapi-sag { transform: scaleX(1); }
.kapi-logo {
  position: fixed; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  z-index: 9600; opacity: 0;
  transition: opacity .3s ease .25s;
  pointer-events: none;
}
.kapi-logo img { width: 120px; height: 120px; object-fit: contain; filter: drop-shadow(0 0 20px rgba(201, 169, 110, .4)); }
.kapi-aktif .kapi-logo,
.kapi-aktif-html .kapi-logo { opacity: 1; }

/* ── ÜST NAV (Premium koyu lacivert + altın aksanlı) ── */
.topnav {
  position: fixed; top: 0; left: 0; right: 0;
  height: var(--topnav);
  background: linear-gradient(180deg, rgba(15, 27, 44, .96) 0%, rgba(26, 43, 66, .94) 100%);
  backdrop-filter: blur(20px) saturate(1.2); -webkit-backdrop-filter: blur(20px) saturate(1.2);
  border-bottom: 1px solid rgba(201, 169, 110, .22);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 20px; z-index: 800;
  transition: transform .35s cubic-bezier(.77, 0, .18, 1), box-shadow .3s;
  box-shadow: 0 2px 20px rgba(15, 27, 44, .25);
}
.topnav::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(201, 169, 110, .5) 50%, transparent 100%);
  pointer-events: none;
}
.topnav.hidden { transform: translateY(-100%); }

.tn-logo {
  display: flex; align-items: center; gap: 10px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.32rem; font-weight: 400; letter-spacing: .22em;
  color: #F5F1EA;
  transition: color .2s;
}
.tn-logo:hover { color: var(--gold); }
.tn-logo img {
  width: 34px; height: 34px; object-fit: contain;
  filter: drop-shadow(0 0 12px rgba(201, 169, 110, .35));
  transition: filter .3s;
}
.tn-logo:hover img { filter: drop-shadow(0 0 18px rgba(201, 169, 110, .6)); }

/* SLOGAN - orta */
.tn-slogan {
  flex: 1;
  text-align: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem;
  font-weight: 400;
  font-style: italic;
  letter-spacing: .08em;
  color: var(--gold);
  padding: 0 20px;
  opacity: .9;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* SOSYAL MEDYA IKONLARI - sag */
.tn-sosyal { display: flex; gap: 4px; align-items: center; }
.tn-ikon {
  position: relative;
  width: 36px; height: 36px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: rgba(245, 241, 234, .75);
  transition: all .25s cubic-bezier(.4, 0, .2, 1);
}
.tn-ikon:hover {
  color: var(--gold);
  background: rgba(201, 169, 110, .12);
  transform: translateY(-1px);
}
.tn-ikon svg { width: 17px; height: 17px; }
/* WhatsApp hover - yesil renkler */
.tn-ikon.tn-wa:hover { color: #25D366; background: rgba(37, 211, 102, .12); }

/* HAMBURGER BUTONU - sadece mobilde gorunur */
.tn-hamburger {
  display: none;
  width: 40px; height: 40px;
  background: transparent;
  border: 1px solid rgba(201, 169, 110, .25);
  border-radius: 8px;
  cursor: pointer;
  padding: 0;
  position: relative;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  transition: background .2s, border-color .2s;
  z-index: 810;
}
.tn-hamburger span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transition: all .3s cubic-bezier(.68, -.55, .27, 1.55);
}
.tn-hamburger:hover { background: rgba(201, 169, 110, .08); border-color: rgba(201, 169, 110, .5); }
.tn-hamburger.acik span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.tn-hamburger.acik span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.tn-hamburger.acik span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobil/tablet responsive */
@media (max-width: 900px) {
  .tn-slogan { font-size: .95rem; padding: 0 12px; }
  .tn-ikon { width: 32px; height: 32px; }
  .tn-ikon svg { width: 15px; height: 15px; }
  .tn-sosyal { gap: 2px; }
}
@media (max-width: 680px) {
  .tn-logo span { font-size: 1rem; letter-spacing: .12em; }
  .tn-slogan { font-size: .85rem; padding: 0 8px; letter-spacing: .04em; }
  .tn-hamburger { display: flex; }
  .tn-sosyal {
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: linear-gradient(180deg, rgba(15, 27, 44, .98) 0%, rgba(26, 43, 66, .98) 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(201, 169, 110, .22);
    padding: 8px 0;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transition: max-height .4s ease, opacity .3s ease, visibility 0s linear .4s;
    box-shadow: 0 10px 30px rgba(15, 27, 44, .4);
  }
  .tn-sosyal.acik {
    max-height: 600px;
    opacity: 1;
    visibility: visible;
    transition: max-height .4s ease, opacity .3s ease, visibility 0s;
  }
  .tn-sosyal .tn-ikon {
    width: auto;
    height: auto;
    border-radius: 0;
    padding: 14px 24px;
    justify-content: flex-start;
    gap: 14px;
    color: #F5F1EA;
    font-family: 'Inter', sans-serif;
    font-size: .95rem;
    font-weight: 500;
    border-bottom: 1px solid rgba(201, 169, 110, .08);
  }
  .tn-sosyal .tn-ikon:last-child { border-bottom: none; }
  .tn-sosyal .tn-ikon:hover {
    background: rgba(201, 169, 110, .08);
    transform: none;
  }
  .tn-sosyal .tn-ikon svg { width: 22px; height: 22px; flex-shrink: 0; }
  .tn-sosyal .tn-ikon::after {
    content: attr(aria-label);
    flex: 1;
  }
}
@media (max-width: 480px) {
  .topnav { padding: 0 10px; }
  .tn-slogan { font-size: .75rem; padding: 0 6px; }
  .tn-logo img { width: 28px; height: 28px; }
  .tn-logo span { font-size: .9rem; letter-spacing: .1em; }
  .tn-hamburger { width: 36px; height: 36px; }
}
@media (max-width: 380px) {
  .tn-slogan { display: none; }
}

.tn-right { display: flex; gap: 6px; align-items: center; }
.tn-icon {
  position: relative;
  width: 40px; height: 40px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: rgba(245, 241, 234, .85);
  transition: all .25s cubic-bezier(.4, 0, .2, 1);
}
.tn-icon::before {
  content: ''; position: absolute; inset: 0; border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 169, 110, .25), transparent 70%);
  opacity: 0; transition: opacity .3s;
}
.tn-icon:hover {
  color: var(--gold);
  background: rgba(201, 169, 110, .12);
  transform: translateY(-1px);
}
.tn-icon:hover::before { opacity: 1; }
.tn-icon svg { width: 20px; height: 20px; position: relative; z-index: 1; }

.tn-badge {
  position: absolute; top: 3px; right: 3px;
  min-width: 17px; height: 17px; padding: 0 5px;
  background: linear-gradient(135deg, #E85D3A, #C9432A);
  color: #fff;
  border-radius: 9px;
  font-size: .6rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 2px 6px rgba(232, 93, 58, .5);
  border: 1.5px solid rgba(15, 27, 44, .9);
  z-index: 2;
}

/* ── ALT NAV (Premium koyu zemin + altın aksan) ── */
.botnav {
  position: fixed; bottom: 0; left: 0; right: 0;
  height: var(--botnav);
  background: linear-gradient(0deg, rgba(15, 27, 44, .98) 0%, rgba(26, 43, 66, .96) 100%);
  backdrop-filter: blur(20px) saturate(1.2); -webkit-backdrop-filter: blur(20px) saturate(1.2);
  border-top: 1px solid rgba(201, 169, 110, .22);
  display: flex; align-items: center;
  z-index: 900;
  box-shadow: 0 -4px 24px rgba(15, 27, 44, .3);
}
.botnav::before {
  content: ''; position: absolute; left: 0; right: 0; top: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(201, 169, 110, .5) 50%, transparent 100%);
  pointer-events: none;
}

.bn-item {
  flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 4px; padding: 8px 2px;
  color: rgba(245, 241, 234, .55);
  font-size: .6rem; font-weight: 500; letter-spacing: .03em;
  transition: all .25s cubic-bezier(.4, 0, .2, 1);
  position: relative;
}
.bn-item::after {
  content: ''; position: absolute; top: 0; left: 50%;
  width: 28px; height: 2px;
  background: var(--gold); border-radius: 0 0 2px 2px;
  transform: translateX(-50%) scaleX(0);
  transition: transform .3s cubic-bezier(.4, 0, .2, 1);
}
.bn-item.active { color: var(--gold); }
.bn-item.active::after { transform: translateX(-50%) scaleX(1); }
.bn-item:hover:not(.center) {
  color: #F5F1EA;
  transform: translateY(-2px);
}
.bn-item svg {
  width: 20px; height: 20px;
  transition: transform .25s;
}
.bn-item.active svg { transform: scale(1.08); }

.bn-item.center {
  position: relative; color: #fff;
}
.bn-item.center::after { display: none; }

.bn-center-btn {
  width: 56px; height: 56px; border-radius: 50%;
  background: linear-gradient(135deg, var(--gold) 0%, #D4B67C 50%, var(--gold-dk) 100%);
  display: flex; align-items: center; justify-content: center;
  box-shadow:
    0 8px 24px rgba(201, 169, 110, .45),
    0 0 0 3px rgba(15, 27, 44, .9),
    inset 0 1px 0 rgba(255, 255, 255, .25);
  margin-top: -28px; position: relative;
  transition: transform .3s cubic-bezier(.34, 1.56, .64, 1);
}
.bn-center-btn::before {
  content: ''; position: absolute; inset: -6px; border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 169, 110, .4), transparent 65%);
  opacity: 0; transition: opacity .3s;
  z-index: -1;
}
.bn-center-btn:hover { transform: translateY(-4px) scale(1.04); }
.bn-center-btn:hover::before { opacity: 1; }
.bn-center-btn:active { transform: translateY(-1px) scale(.98); }
.bn-center-btn svg { width: 24px; height: 24px; color: var(--ink); }

.bn-center-badge {
  position: absolute; top: -4px; right: -4px;
  min-width: 20px; height: 20px; padding: 0 5px;
  background: linear-gradient(135deg, #E85D3A, #C9432A);
  color: #fff;
  border-radius: 10px;
  font-size: .62rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  border: 2px solid rgba(15, 27, 44, .95);
  box-shadow: 0 2px 6px rgba(232, 93, 58, .5);
  z-index: 2;
}

/* ── CONTAINER ── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.section { padding: 28px 0; }
.section-head { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 18px; gap: 12px; flex-wrap: wrap; }
.section-title { font-family: 'Cormorant Garamond', serif; font-size: clamp(1.4rem, 3vw, 1.9rem); font-weight: 500; color: var(--ink); line-height: 1.2; }
.section-link { font-size: .78rem; color: var(--ink3); display: flex; align-items: center; gap: 4px; font-weight: 500; }
.section-link:hover { color: var(--ink); }

/* ── HERO ── */
.hero-grid {
  display: grid;
  grid-template-columns: 1fr;  /* Her zaman tek sutun - hero-main ustte, hero-side altta */
  gap: 12px;
  margin-top: 12px;
}
.hero-main {
  position: relative;
  border-radius: var(--r); overflow: hidden;
  background: linear-gradient(135deg, #0F1B2C 0%, #1A2B42 50%, #2A3847 100%);
  padding: 36px 28px; min-height: 320px;
  display: flex; flex-direction: column; justify-content: space-between;
  color: #F5F1EA;
}
.hero-main::after {
  content: ''; position: absolute; top: 0; right: 0; bottom: 0; width: 45%;
  background: radial-gradient(circle at 70% 50%, rgba(201, 169, 110, .18), transparent 60%);
  pointer-events: none;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(232, 93, 58, .15); color: #FF8B6C;
  border: 1px solid rgba(232, 93, 58, .3);
  padding: 6px 12px; border-radius: 20px;
  font-size: .68rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase;
  width: fit-content; margin-bottom: 18px;
  position: relative; z-index: 1;
}
.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 5vw, 2.8rem);
  font-weight: 400; line-height: 1.05;
  margin-bottom: 12px;
  position: relative; z-index: 1;
}
.hero-desc { font-size: .88rem; color: rgba(245, 241, 234, .75); margin-bottom: 22px; max-width: 380px; position: relative; z-index: 1; }
.hero-main .btn { position: relative; z-index: 1; width: fit-content; }
.hero-illu {
  position: absolute; right: 30px; top: 50%; transform: translateY(-50%);
  font-size: 6rem; opacity: .9; line-height: 1; pointer-events: none;
}
@media (max-width: 700px) { .hero-illu { font-size: 4rem; right: 16px; opacity: .35; } }

/* ── HERO SLIDER (admin'den seçilen ürünler) ── */
.hero-main { min-height: 380px; position: relative; perspective: 1500px; }
.hero-main.stg > .hero-slayt:first-of-type { position: absolute; }
.hero-slayt {
  position: absolute;
  inset: 36px 28px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-right: 360px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  text-decoration: none !important;
  color: inherit !important;
  cursor: pointer;
  transition: opacity var(--slider-hiz, 600ms) ease, visibility 0s linear var(--slider-hiz, 600ms), transform var(--slider-hiz, 600ms) ease;
}
.hero-slayt.aktif {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition: opacity var(--slider-hiz, 600ms) ease, visibility 0s, transform var(--slider-hiz, 600ms) ease;
}

/* ═══ EFEKT 1: FADE (varsayılan) ═══ */
.hero-efekt-fade .hero-slayt { transform: none; }

/* ═══ EFEKT 2: SLIDE (yan kayma) ═══ */
.hero-efekt-slide .hero-slayt { transform: translateX(50px); }
.hero-efekt-slide .hero-slayt.aktif { transform: translateX(0); }

/* ═══ EFEKT 3: ZOOM (yakınlaştır) ═══ */
.hero-efekt-zoom .hero-slayt { transform: scale(0.92); }
.hero-efekt-zoom .hero-slayt.aktif { transform: scale(1); }

/* ═══ EFEKT 4: FLIP (3D dönme) ═══ */
.hero-efekt-flip .hero-slayt { transform: perspective(1500px) rotateY(35deg); transform-origin: center center; }
.hero-efekt-flip .hero-slayt.aktif { transform: perspective(1500px) rotateY(0deg); }

/* ═══ EFEKT 5: CUBE (3D küp) ═══ */
.hero-efekt-cube { transform-style: preserve-3d; }
.hero-efekt-cube .hero-slayt { transform: rotateY(60deg) translateZ(100px); transform-origin: center center; }
.hero-efekt-cube .hero-slayt.aktif { transform: rotateY(0deg) translateZ(0); }

/* ═══ EFEKT 6: KAPI YATAY (iki kanat sağ+sol açılır) ═══ */
.hero-efekt-door_h .hero-slayt {
  clip-path: inset(0 50% 0 50%);
}
.hero-efekt-door_h .hero-slayt.aktif {
  clip-path: inset(0 0 0 0);
  transition: clip-path var(--slider-hiz, 600ms) cubic-bezier(0.65, 0, 0.35, 1), opacity var(--slider-hiz, 600ms) ease, visibility 0s;
}

/* ═══ EFEKT 7: KAPI DİKEY (üst+alt açılır) ═══ */
.hero-efekt-door_v .hero-slayt {
  clip-path: inset(50% 0 50% 0);
}
.hero-efekt-door_v .hero-slayt.aktif {
  clip-path: inset(0 0 0 0);
  transition: clip-path var(--slider-hiz, 600ms) cubic-bezier(0.65, 0, 0.35, 1), opacity var(--slider-hiz, 600ms) ease, visibility 0s;
}

/* ═══ EFEKT 8: PERDE (sağdan tiyatro perdesi gibi) ═══ */
.hero-efekt-curtain .hero-slayt {
  clip-path: inset(0 100% 0 0);
  transform: none;
}
.hero-efekt-curtain .hero-slayt.aktif {
  clip-path: inset(0 0 0 0);
  transition: clip-path var(--slider-hiz, 600ms) ease, opacity var(--slider-hiz, 600ms) ease, visibility 0s;
}

/* ═══ EFEKT 9: FLASH (şimşek parıltısı) ═══ */
.hero-efekt-flash .hero-slayt {
  transform: scale(1.08);
  filter: brightness(2) blur(8px);
}
.hero-efekt-flash .hero-slayt.aktif {
  transform: scale(1);
  filter: brightness(1) blur(0);
  transition: transform var(--slider-hiz, 600ms) ease, filter var(--slider-hiz, 600ms) ease, opacity var(--slider-hiz, 600ms) ease, visibility 0s;
}
.hero-efekt-flash .hero-slayt.aktif::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(255,255,255,.5), transparent 70%);
  opacity: 0;
  pointer-events: none;
  animation: flashParlat var(--slider-hiz, 600ms) ease-out;
}
@keyframes flashParlat {
  0% { opacity: 0; }
  30% { opacity: 1; }
  100% { opacity: 0; }
}

/* ═══ EFEKT 10: ROTATE (çark dönme) ═══ */
.hero-efekt-rotate .hero-slayt {
  transform: rotate(-180deg) scale(0.5);
  transform-origin: center center;
}
.hero-efekt-rotate .hero-slayt.aktif {
  transform: rotate(0deg) scale(1);
  transition: transform var(--slider-hiz, 600ms) cubic-bezier(0.5, 0, 0.2, 1.4), opacity var(--slider-hiz, 600ms) ease, visibility 0s;
}

/* ═══ EFEKT 11: BLINDS (jaluzi şeritleri) ═══ */
.hero-efekt-blinds .hero-slayt {
  /* 8 dikey şerit ile geçiş */
  clip-path: polygon(
    0% 0%, 0% 100%, 12.5% 100%, 12.5% 0%,
    25% 0%, 25% 100%, 37.5% 100%, 37.5% 0%,
    50% 0%, 50% 100%, 62.5% 100%, 62.5% 0%,
    75% 0%, 75% 100%, 87.5% 100%, 87.5% 0%,
    100% 0%, 100% 100%, 0% 100%
  );
  transform: scaleX(0);
}
.hero-efekt-blinds .hero-slayt.aktif {
  clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
  transform: scaleX(1);
  transition: clip-path var(--slider-hiz, 600ms) ease, transform var(--slider-hiz, 600ms) ease, opacity var(--slider-hiz, 600ms) ease, visibility 0s;
}

/* ═══ EFEKT 12: PARALLAX (3 katmanlı derinlik) ═══ */
.hero-efekt-parallax .hero-slayt {
  transform: translateX(100%) translateZ(-200px);
}
.hero-efekt-parallax .hero-slayt.aktif {
  transform: translateX(0) translateZ(0);
  transition: transform var(--slider-hiz, 600ms) cubic-bezier(0.32, 0, 0.13, 1), opacity var(--slider-hiz, 600ms) ease, visibility 0s;
}
.hero-efekt-parallax .hero-slayt.aktif .hero-slayt-icerik {
  animation: parallaxIcerik var(--slider-hiz, 600ms) cubic-bezier(0.32, 0, 0.13, 1);
}
.hero-efekt-parallax .hero-slayt.aktif .hero-illu {
  animation: parallaxResim var(--slider-hiz, 600ms) cubic-bezier(0.32, 0, 0.13, 1);
}
@keyframes parallaxIcerik {
  0% { transform: translateX(-50px); opacity: 0; }
  100% { transform: translateX(0); opacity: 1; }
}
@keyframes parallaxResim {
  0% { transform: translateY(-50%) translateX(80px) scale(0.9); opacity: 0; }
  100% { transform: translateY(-50%) translateX(0) scale(1); opacity: 1; }
}

.hero-slayt-icerik {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
  position: relative;
  z-index: 2;
  max-width: 100%;
}
.hero-slayt .hero-title {
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.hero-slayt .hero-desc {
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.hero-slayt .hero-incele-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 6px;
  pointer-events: none;
  transition: transform .25s ease;
}
.hero-slayt:hover .hero-incele-btn {
  transform: translateX(4px);
}
.hero-slayt:hover .hero-illu img {
  transform: scale(1.04);
}
.hero-slayt .hero-illu img {
  transition: transform .5s ease;
}

/* Slayt icindeki resim - ABSOLUTE olarak sagda konumlan */
.hero-slayt .hero-illu {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 320px;
  height: 320px;
  border-radius: 14px;
  overflow: hidden;
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(201, 169, 110, .2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0;
  opacity: 1;
  pointer-events: none;
}

/* ═══ DOT NAVİGASYON ═══ */
.hero-dotlar {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 15;
  pointer-events: auto;
}
.hero-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,.3);
  border: 1.5px solid rgba(201,169,110,.4);
  cursor: pointer;
  transition: all .25s ease;
  padding: 0;
}
.hero-dot:hover {
  background: rgba(201,169,110,.6);
  transform: scale(1.15);
}
.hero-dot.aktif {
  background: #C9A96E;
  border-color: #C9A96E;
  transform: scale(1.25);
}

/* ═══ PROGRESS BAR ═══ */
.hero-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: rgba(255,255,255,.08);
  z-index: 10;
  pointer-events: none;
}
.hero-progress-bar {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, #C9A96E, #e8c896);
  transition: width 100ms linear;
}
.hero-main.duraklat .hero-progress-bar {
  transition: none;
}
.hero-slayt .hero-illu img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hero-slayt .hero-illu span {
  font-size: 5rem;
  line-height: 1;
}
@media (max-width: 900px) {
  .hero-slayt { padding-right: 260px; }
  .hero-slayt .hero-illu { width: 230px; height: 230px; }
  .hero-slayt .hero-illu span { font-size: 5rem; }
}
@media (max-width: 700px) {
  .hero-main { min-height: 420px; }
  .hero-slayt {
    inset: 20px 18px;
    padding-right: 230px;
    justify-content: flex-start;
    padding-top: 8px;
  }
  .hero-slayt .hero-illu { width: 210px; height: 210px; }
  .hero-slayt .hero-illu span { font-size: 4.5rem; }
  .hero-slayt .hero-title { font-size: 1.5rem; }
  .hero-slayt .hero-desc { font-size: .78rem; }
  .hero-badge {
    font-size: .6rem;
    padding: 4px 9px;
    margin-bottom: 10px;
  }
  .hero-slayt-icerik { gap: 8px; }
}
@media (max-width: 480px) {
  .hero-main { min-height: 400px; }
  .hero-slayt {
    inset: 16px 14px;
    padding-right: 170px;
    padding-top: 4px;
    justify-content: flex-start;
  }
  .hero-slayt .hero-illu { width: 155px; height: 155px; right: 4px; }
  .hero-slayt .hero-illu span { font-size: 3.2rem; }
  .hero-slayt .hero-title { font-size: 1.15rem; -webkit-line-clamp: 2; line-height: 1.2; }
  .hero-slayt .hero-desc { font-size: .68rem; -webkit-line-clamp: 2; margin-bottom: 4px; line-height: 1.4; }
  .hero-slayt .hero-incele-btn { padding: 7px 14px; font-size: .76rem; }
  .hero-badge {
    font-size: .54rem;
    padding: 3px 8px;
    margin-bottom: 6px;
  }
  .hero-slayt-icerik { gap: 5px; }
  .hero-dotlar { bottom: 10px; gap: 6px; }
  .hero-dot { width: 8px; height: 8px; }
}
@media (max-width: 380px) {
  .hero-main { min-height: 380px; }
  .hero-slayt {
    padding-right: 145px;
    inset: 14px 12px;
  }
  .hero-slayt .hero-illu { width: 130px; height: 130px; }
  .hero-slayt .hero-illu span { font-size: 2.8rem; }
  .hero-slayt .hero-title { font-size: 1.05rem; }
  .hero-slayt .hero-desc { -webkit-line-clamp: 2; font-size: .65rem; }
  .hero-badge { font-size: .5rem; padding: 2px 6px; margin-bottom: 5px; }
  .hero-slayt-icerik { gap: 4px; }
}

/* Slider ok butonlari */
.hero-ok {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 38px;
  height: 38px;
  background: rgba(15, 27, 44, .75);
  border: 1px solid rgba(201, 169, 110, .45);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  color: #C9A96E;
  transition: background .2s, border-color .2s, transform .2s;
  padding: 0;
}
.hero-ok:hover {
  background: rgba(201, 169, 110, .25);
  border-color: #C9A96E;
  transform: translateY(-50%) scale(1.08);
}
.hero-ok-sol { left: 12px; }
.hero-ok-sag { right: 12px; }
@media (max-width: 700px) {
  .hero-ok { width: 32px; height: 32px; }
  .hero-ok-sol { left: 8px; }
  .hero-ok-sag { right: 8px; }
}

.hero-side {
  display: grid;
  grid-template-columns: 1fr 1fr;  /* Her zaman 2 sutun - mobilde bile yan yana */
  gap: 12px;
}
.hero-card {
  border-radius: var(--r); padding: 24px 22px;
  display: flex; align-items: center; justify-content: space-between;
  min-height: 130px; position: relative; overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease;
}
.hero-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.hero-card.dark { background: linear-gradient(135deg, #1F2B3D, #2A3847); color: #F5F1EA; }
.hero-card.green { background: linear-gradient(135deg, #1F4E3D, #2A5F4C); color: #F5F1EA; }
.hc-text h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.3rem; font-weight: 500; margin-bottom: 4px; }
.hc-text p { font-size: .72rem; opacity: .75; }
.hc-arrow {
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(255, 255, 255, .12);
  display: flex; align-items: center; justify-content: center;
  transition: background .2s;
  flex-shrink: 0;
}
.hero-card:hover .hc-arrow { background: rgba(255, 255, 255, .25); }
.hc-arrow svg { width: 18px; height: 18px; }

/* Mobilde 2 sutun olunca kartlar daralmasin */
@media (max-width: 560px) {
  .hero-side { gap: 8px; }
  .hero-card { padding: 16px 14px; min-height: 110px; }
  .hc-text h3 { font-size: 1.05rem; }
  .hc-text p { font-size: .65rem; }
  .hc-arrow { width: 32px; height: 32px; }
  .hc-arrow svg { width: 14px; height: 14px; }
}
@media (max-width: 400px) {
  .hero-card { padding: 14px 12px; }
  .hc-text h3 { font-size: .95rem; }
  .hc-text p { font-size: .6rem; }
}

/* ── FLAŞ BANTI ── */
.flash-head {
  background: linear-gradient(135deg, #0F1B2C 0%, #1A2B42 100%);
  color: #F5F1EA; border-radius: var(--r) var(--r) 0 0;
  padding: 18px 24px; display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 12px;
}
.flash-left { display: flex; align-items: center; gap: 12px; }
.flash-icon {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(201, 169, 110, .18); color: var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
}
.flash-title { font-family: 'Cormorant Garamond', serif; font-size: 1.3rem; font-weight: 500; margin-right: 10px; }
.flash-badge { background: rgba(255, 255, 255, .12); color: #fff; padding: 4px 10px; border-radius: 8px; font-size: .62rem; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; }
.flash-timer { display: flex; gap: 6px; align-items: center; font-size: .65rem; letter-spacing: .15em; text-transform: uppercase; color: rgba(245, 241, 234, .6); }
.flash-digits { display: flex; gap: 6px; }
.flash-digit { background: rgba(255, 255, 255, .1); color: #fff; font-family: 'JetBrains Mono', monospace; font-size: .9rem; font-weight: 600; padding: 6px 10px; border-radius: 6px; min-width: 36px; text-align: center; }
.flash-grid {
  background: var(--card);
  border-radius: 0 0 var(--r) var(--r);
  padding: 18px 16px;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 14px;
}

/* Telefonda her zaman 2 sütun garantisi */
@media (max-width: 768px) {
  .flash-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ── ÜRÜN KARTI ── */
.product-card {
  background: var(--card);
  border-radius: var(--r-sm);
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform .35s cubic-bezier(.4, 0, .2, 1),
              box-shadow .35s cubic-bezier(.4, 0, .2, 1),
              border-color .35s ease;
  border: 1px solid var(--line);
  position: relative;
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 42px -14px rgba(201, 169, 110, .35),
              0 10px 20px -10px rgba(15, 27, 44, .2);
  border-color: rgba(201, 169, 110, .4);
}
/* Altın ışıma */
.product-card::before {
  content: '';
  position: absolute; inset: 0;
  border-radius: var(--r-sm);
  box-shadow: inset 0 0 0 1px transparent;
  transition: box-shadow .35s ease;
  pointer-events: none;
  z-index: 2;
}
.product-card:hover::before {
  box-shadow: inset 0 0 0 1px rgba(201, 169, 110, .5),
              inset 0 0 30px rgba(201, 169, 110, .1);
}
.pc-img {
  position: relative;
  aspect-ratio: 1 / 1;
  background: linear-gradient(135deg, #F0E9DB, #E4DAC5);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.pc-img img {
  width: 100%; height: 100%; object-fit: cover;
  position: absolute; inset: 0;
  transition: transform .6s cubic-bezier(.4, 0, .2, 1);
}
.product-card:hover .pc-img img {
  transform: scale(1.08);
}
.pc-img .emoji { font-size: 3.5rem; line-height: 1; }
.pc-badge {
  position: absolute; top: 10px; left: 10px;
  padding: 4px 10px; border-radius: 6px;
  font-size: .6rem; font-weight: 700; letter-spacing: .04em;
  color: #fff; background: var(--ink);
}
.pc-badge.coral { background: var(--coral); }
.pc-badge.green { background: var(--green); }
.pc-badge.gold { background: var(--gold-dk); }
.pc-fav {
  position: absolute; top: 10px; right: 10px;
  width: 32px; height: 32px; border-radius: 50%;
  background: rgba(255, 255, 255, .9);
  display: flex; align-items: center; justify-content: center;
  color: var(--ink3); transition: all .2s;
}
.pc-fav svg { width: 16px; height: 16px; }
.pc-fav:hover, .pc-fav.on { background: var(--coral); color: #fff; }
.pc-body { padding: 14px; display: flex; flex-direction: column; flex: 1; }
.pc-name { font-size: .88rem; font-weight: 500; color: var(--ink); margin-bottom: 8px; line-height: 1.35; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; min-height: 2.4rem; }
.pc-meta { display: flex; align-items: center; gap: 4px; font-size: .62rem; color: var(--muted); margin-bottom: 10px; }
.pc-stars { color: var(--gold); letter-spacing: 1px; font-size: .7rem; }
.pc-price-row { display: flex; align-items: center; gap: 6px; margin-bottom: 10px; flex-wrap: wrap; }
.pc-price { font-size: 1.05rem; font-weight: 700; color: var(--ink); }
.pc-old { font-size: .72rem; color: var(--muted); text-decoration: line-through; }
.pc-disc { background: var(--bg2); color: var(--ink); padding: 2px 6px; border-radius: 4px; font-size: .62rem; font-weight: 700; }
.pc-btn {
  width: 100%; background: var(--ink); color: #fff;
  padding: 10px; border-radius: var(--r-sm);
  font-size: .72rem; font-weight: 600; letter-spacing: .04em;
  margin-top: auto; transition: background .2s;
}
.pc-btn:hover { background: var(--ink2); }
.pc-btn.out { background: var(--muted); cursor: not-allowed; }

/* ── KATEGORİ BUTONLARI ── */
.cat-scroll { display: flex; gap: 10px; overflow-x: auto; padding-bottom: 4px; -webkit-overflow-scrolling: touch; scrollbar-width: none; }
.cat-scroll::-webkit-scrollbar { display: none; }
.cat-chip {
  flex: 0 0 auto; display: flex; align-items: center; gap: 8px;
  padding: 10px 16px; border-radius: 24px;
  background: var(--card); border: 1px solid var(--line);
  font-size: .78rem; font-weight: 500; color: var(--ink2);
  transition: all .2s;
}
.cat-chip:hover, .cat-chip.active { background: var(--ink); color: #fff; border-color: var(--ink); }
.cat-chip .icon { font-size: 1rem; }

/* ── BUTONLAR ── */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 6px; padding: 12px 22px; border-radius: var(--r-sm); font-size: .8rem; font-weight: 600; transition: all .2s; letter-spacing: .02em; }
.btn-primary { background: var(--gold); color: var(--ink); }
.btn-primary:hover { background: var(--gold-dk); color: #fff; }
.btn-dark { background: var(--ink); color: #fff; }
.btn-dark:hover { background: var(--ink2); }
.btn-ghost { background: rgba(255, 255, 255, .1); color: #fff; border: 1px solid rgba(255, 255, 255, .2); }
.btn-ghost:hover { background: rgba(255, 255, 255, .2); }
.btn-outline { background: transparent; color: var(--ink); border: 1px solid var(--line2); }
.btn-outline:hover { background: var(--ink); color: #fff; }
.btn-full { width: 100%; }
.btn-sm { padding: 8px 16px; font-size: .72rem; }

/* ── FORM ── */
.form-grp { margin-bottom: 14px; }
.form-label { display: block; font-size: .72rem; font-weight: 600; color: var(--ink2); margin-bottom: 6px; }
.form-inp { width: 100%; background: var(--card); border: 1px solid var(--line2); border-radius: var(--r-sm); padding: 11px 14px; font-size: .88rem; font-family: inherit; color: var(--ink); transition: border-color .2s; }
.form-inp:focus { outline: none; border-color: var(--gold); }
textarea.form-inp { resize: vertical; min-height: 90px; }

/* ── DRAWER (Hamburger Menü) — Zarif, nav ile uyumlu ── */
.drawer {
  position: fixed; bottom: var(--botnav); left: 0; right: 0;
  background: linear-gradient(180deg, #FAF7F0 0%, var(--bg) 100%);
  border-top: 2px solid var(--gold);
  z-index: 850;
  transform: translateY(100%);
  transition: transform .4s cubic-bezier(.4, 0, .2, 1);
  max-height: 72vh; overflow-y: auto;
  border-radius: 20px 20px 0 0;
  box-shadow: 0 -8px 32px rgba(15, 27, 44, .2);
}
.drawer.open { transform: translateY(0); }
.drawer-handle {
  width: 44px; height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--gold-dk));
  border-radius: 2px; margin: 12px auto 14px;
  opacity: .8;
}
.drawer-grid { padding: 8px 20px 28px; }
.drawer-item {
  display: flex; align-items: center; gap: 14px;
  padding: 15px 4px; border-bottom: 1px solid var(--line);
  font-size: .9rem; font-weight: 500; color: var(--ink);
  transition: all .25s ease;
  position: relative;
}
.drawer-item::after {
  content: ''; position: absolute; left: 0; top: 50%;
  width: 3px; height: 0; background: var(--gold);
  border-radius: 2px;
  transform: translateY(-50%);
  transition: height .25s ease;
}
.drawer-item:last-child { border-bottom: none; }
.drawer-item:hover {
  color: var(--gold-dk);
  padding-left: 12px;
}
.drawer-item:hover::after { height: 60%; }
.drawer-item svg { width: 20px; height: 20px; color: var(--ink3); transition: color .25s; }
.drawer-item:hover svg { color: var(--gold-dk); }
.drawer-overlay {
  display: none; position: fixed; inset: 0;
  background: rgba(15, 27, 44, .6);
  backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px);
  z-index: 840;
}
.drawer-overlay.show { display: block; }

/* ── TOAST ── */
#toast {
  position: fixed; bottom: calc(var(--botnav) + 20px); left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: var(--ink); color: #fff;
  padding: 11px 24px; border-radius: 10px;
  font-size: .82rem; font-weight: 500;
  box-shadow: var(--shadow-lg);
  opacity: 0; pointer-events: none;
  transition: all .3s ease;
  z-index: 9700;
  white-space: nowrap;
}
#toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }

/* ── EMPTY STATE ── */
.empty { text-align: center; padding: 60px 20px; }
.empty-icon { font-size: 3.5rem; margin-bottom: 14px; opacity: .5; }
.empty h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.4rem; margin-bottom: 8px; }
.empty p { color: var(--muted); font-size: .85rem; margin-bottom: 20px; }

/* ── STAGGER ── */
.stg { opacity: 0; transform: translateY(20px); transition: opacity .5s ease, transform .5s ease; }
.stg.in { opacity: 1; transform: translateY(0); }

/* ── BREADCRUMB ── */
.breadcrumb { display: flex; gap: 6px; font-size: .72rem; color: var(--muted); margin: 16px 0; flex-wrap: wrap; }
.breadcrumb a { color: var(--ink3); }
.breadcrumb a:hover { color: var(--ink); }
.breadcrumb .sep { opacity: .5; }

/* ── ÜRÜN DETAY ── */
.detail-grid { display: grid; grid-template-columns: 1fr; gap: 24px; padding: 20px 0; }
@media (min-width: 768px) { .detail-grid { grid-template-columns: 1fr 1fr; gap: 40px; } }
.detail-img {
  display: flex; flex-direction: column; gap: 12px;
}
.detail-img .emoji { font-size: 7rem; }

/* ── GALERI: Ana resim ──  */
.dg-ana {
  position: relative;
  aspect-ratio: 1 / 1;
  background: linear-gradient(135deg, #F0E9DB, #E4DAC5);
  border-radius: var(--r);
  overflow: hidden;
  cursor: zoom-in;
  display: flex; align-items: center; justify-content: center;
}
.dg-ana img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: opacity .3s ease;
}
/* Buyutec overlay - sadece hover'da PC'de */
.dg-buyutec {
  position: absolute; inset: 0;
  background-repeat: no-repeat;
  background-size: 200% 200%;
  opacity: 0;
  transition: opacity .2s ease;
  pointer-events: none;
}
@media (hover: hover) and (pointer: fine) {
  .dg-ana:hover .dg-buyutec { opacity: 1; }
  .dg-ana:hover img { opacity: 0; }
}
.dg-tamekran {
  position: absolute; top: 14px; right: 14px;
  width: 38px; height: 38px;
  background: rgba(255, 255, 255, .9);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--ink);
  border: none; cursor: pointer;
  z-index: 3;
  transition: background .2s, transform .2s;
  backdrop-filter: blur(6px);
}
.dg-tamekran:hover { background: #fff; transform: scale(1.08); }

/* Thumbnail'ler */
.dg-thumbs {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
}
.dg-thumb {
  aspect-ratio: 1 / 1;
  border-radius: var(--r-sm);
  overflow: hidden;
  background: #F0E9DB;
  border: 2px solid transparent;
  cursor: pointer;
  padding: 0;
  transition: border-color .2s, transform .2s;
}
.dg-thumb img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .3s ease;
}
.dg-thumb:hover { border-color: rgba(201, 169, 110, .4); }
.dg-thumb:hover img { transform: scale(1.05); }
.dg-thumb.aktif {
  border-color: var(--gold-dk);
  box-shadow: 0 4px 12px rgba(201, 169, 110, .25);
}

/* ── GALERI: Tam ekran modal ── */
.dg-modal {
  position: fixed; inset: 0;
  background: rgba(10, 15, 25, .95);
  z-index: 9999;
  display: none;
  align-items: center; justify-content: center;
  padding: 20px;
  opacity: 0;
  transition: opacity .3s ease;
}
.dg-modal.acik {
  display: flex;
  opacity: 1;
}
.dg-modal-icerik {
  max-width: 90vw; max-height: 85vh;
  display: flex; align-items: center; justify-content: center;
}
.dg-modal-icerik img {
  max-width: 100%; max-height: 85vh;
  object-fit: contain;
  border-radius: 6px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, .5);
}
.dg-modal-kapat {
  position: absolute; top: 20px; right: 20px;
  width: 44px; height: 44px;
  background: rgba(255, 255, 255, .1);
  border: 1px solid rgba(255, 255, 255, .2);
  color: #fff; font-size: 28px;
  border-radius: 50%;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  line-height: 1;
  transition: background .2s;
  padding: 0;
}
.dg-modal-kapat:hover { background: rgba(255, 255, 255, .2); }
.dg-modal-ok {
  position: absolute; top: 50%;
  transform: translateY(-50%);
  width: 50px; height: 50px;
  background: rgba(255, 255, 255, .1);
  border: 1px solid rgba(255, 255, 255, .2);
  color: #fff; font-size: 32px;
  border-radius: 50%;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  line-height: 1;
  transition: background .2s;
  padding: 0;
}
.dg-modal-ok:hover { background: rgba(255, 255, 255, .25); }
.dg-modal-sol { left: 20px; }
.dg-modal-sag { right: 20px; }
.dg-modal-sayac {
  position: absolute; bottom: 24px; left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, .75);
  font-size: .9rem;
  background: rgba(255, 255, 255, .1);
  padding: 6px 14px;
  border-radius: 20px;
}

@media (max-width: 560px) {
  .dg-modal-ok { width: 42px; height: 42px; font-size: 26px; }
  .dg-modal-sol { left: 10px; }
  .dg-modal-sag { right: 10px; }
  .dg-modal-kapat { top: 14px; right: 14px; }
  .dg-thumbs { grid-template-columns: repeat(5, 1fr); gap: 6px; }
  .dg-tamekran { width: 34px; height: 34px; top: 10px; right: 10px; }
}
.detail-brand { font-size: .68rem; font-weight: 600; letter-spacing: .2em; text-transform: uppercase; color: var(--gold-dk); margin-bottom: 10px; }
.detail-name { font-family: 'Cormorant Garamond', serif; font-size: clamp(1.6rem, 4vw, 2.2rem); font-weight: 500; margin-bottom: 12px; line-height: 1.2; }
.detail-rating { display: flex; align-items: center; gap: 6px; margin-bottom: 18px; font-size: .8rem; color: var(--muted); }
.detail-rating .stars { color: var(--gold); font-size: .95rem; letter-spacing: 2px; }
.detail-price-row { display: flex; align-items: baseline; gap: 12px; margin-bottom: 22px; flex-wrap: wrap; }
.detail-price { font-size: 2rem; font-weight: 700; color: var(--ink); }
.detail-old { font-size: 1.1rem; color: var(--muted); text-decoration: line-through; }
.detail-disc { background: var(--coral); color: #fff; padding: 4px 10px; border-radius: 6px; font-size: .7rem; font-weight: 700; }
.detail-desc { font-size: .92rem; line-height: 1.8; color: var(--ink2); margin-bottom: 22px; }
.detail-qty { display: flex; align-items: center; gap: 10px; margin-bottom: 18px; }
.qty-box { display: flex; align-items: center; border: 1px solid var(--line2); border-radius: var(--r-sm); overflow: hidden; }
.qty-btn { width: 38px; height: 38px; font-size: 1.1rem; color: var(--ink); transition: background .2s; }
.qty-btn:hover { background: var(--line); }
.qty-inp { width: 50px; height: 38px; text-align: center; background: transparent; border: none; font-weight: 600; color: var(--ink); }
.qty-label { font-size: .7rem; color: var(--muted); }
.detail-actions { display: grid; grid-template-columns: 2fr 1fr; gap: 8px; margin-bottom: 22px; }
.detail-info-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0; border: 1px solid var(--line); border-radius: var(--r-sm); }
.detail-info-item { padding: 12px 14px; font-size: .72rem; color: var(--ink2); border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); display: flex; align-items: center; gap: 8px; }
.detail-info-item:nth-child(2n) { border-right: none; }
.detail-info-item:nth-last-child(-n+2) { border-bottom: none; }
.detail-info-item svg { width: 16px; height: 16px; color: var(--gold-dk); flex-shrink: 0; }

/* ── SEPET ── */
.cart-item {
  display: flex; gap: 14px; padding: 14px;
  background: var(--card); border-radius: var(--r-sm);
  border: 1px solid var(--line); margin-bottom: 10px;
}
.cart-img { width: 72px; height: 72px; background: linear-gradient(135deg, #F0E9DB, #E4DAC5); border-radius: var(--r-sm); display: flex; align-items: center; justify-content: center; font-size: 1.8rem; flex-shrink: 0; overflow: hidden; }
.cart-img img { width: 100%; height: 100%; object-fit: cover; }
.cart-body { flex: 1; min-width: 0; }
.cart-name { font-size: .88rem; font-weight: 600; margin-bottom: 6px; }
.cart-price { font-size: .85rem; color: var(--ink2); margin-bottom: 8px; }
.cart-controls { display: flex; justify-content: space-between; align-items: center; }
.cart-qty { display: flex; align-items: center; border: 1px solid var(--line2); border-radius: 6px; overflow: hidden; }
.cart-qty button { width: 28px; height: 28px; font-size: .9rem; }
.cart-qty input { width: 38px; height: 28px; text-align: center; border: none; background: transparent; }
.cart-remove { font-size: .7rem; color: var(--muted); }
.cart-remove:hover { color: var(--coral); }
.cart-total-sticky {
  position: sticky; bottom: calc(var(--botnav) + 12px);
  background: var(--card); border: 1px solid var(--line);
  border-radius: var(--r); padding: 18px; margin-top: 20px;
  box-shadow: var(--shadow-md);
}
.cart-total-row { display: flex; justify-content: space-between; padding: 6px 0; font-size: .82rem; color: var(--ink2); }
.cart-total-row.big { font-size: 1rem; font-weight: 700; color: var(--ink); border-top: 1px solid var(--line); padding-top: 12px; margin-top: 8px; }

/* ── GİRİŞ FORMU ── */
.auth-wrap { max-width: 420px; margin: 20px auto; padding: 0 20px; }
.auth-card { background: var(--card); border: 1px solid var(--line); border-radius: var(--r); padding: 28px 24px; }
.auth-tabs { display: flex; border-bottom: 1px solid var(--line); margin-bottom: 22px; }
.auth-tab { flex: 1; padding: 12px 0; font-size: .8rem; font-weight: 600; color: var(--muted); border-bottom: 2px solid transparent; transition: all .2s; }
.auth-tab.active { color: var(--ink); border-color: var(--gold); }

/* ── PAGINATION ── */
.pagination { display: flex; gap: 6px; justify-content: center; margin-top: 28px; flex-wrap: wrap; }
.pg-btn { min-width: 38px; height: 38px; display: flex; align-items: center; justify-content: center; padding: 0 12px; border-radius: 8px; background: var(--card); border: 1px solid var(--line); font-size: .78rem; color: var(--ink2); transition: all .2s; }
.pg-btn:hover { background: var(--bg2); }
.pg-btn.active { background: var(--ink); color: #fff; border-color: var(--ink); }

/* ── ALERT ── */
.alert { padding: 12px 16px; border-radius: var(--r-sm); margin-bottom: 14px; font-size: .82rem; }
.alert-error { background: #FEF2F2; border-left: 4px solid #DC2626; color: #991B1B; }
.alert-success { background: #F0FDF4; border-left: 4px solid #16A34A; color: #166534; }
.alert-info { background: #EFF6FF; border-left: 4px solid #3B82F6; color: #1E40AF; }

/* ── MOBİL DÜZEN ── */
@media (max-width: 600px) {
  .hero-main { padding: 28px 22px; min-height: 230px; }
  .detail-actions { grid-template-columns: 1fr; }
  .flash-head { padding: 14px 18px; }
  .flash-title { font-size: 1.1rem; }
}

/* ── SİTE FOOTER (Yasal alan) ── */
.site-footer {
  background: linear-gradient(180deg, #0F1B2C 0%, #1A2B42 100%);
  color: rgba(245, 241, 234, .85);
  padding: 40px 0 20px;
  margin-top: 40px;
  position: relative;
}
.site-footer::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(201, 169, 110, .5) 50%, transparent 100%);
}
.sf-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 32px; margin-bottom: 28px;
}
.sf-col { display: flex; flex-direction: column; gap: 8px; }
.sf-col a {
  color: rgba(245, 241, 234, .7);
  font-size: .82rem;
  transition: color .2s, transform .2s;
  display: inline-block;
}
.sf-col a:hover { color: var(--gold); transform: translateX(3px); }
.sf-h {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem; font-weight: 500;
  color: var(--gold); margin-bottom: 8px;
  letter-spacing: .05em;
}
.sf-brand {
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 12px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem; letter-spacing: .15em;
  color: #F5F1EA;
}
.sf-brand img {
  width: 36px; height: 36px; object-fit: contain;
  filter: drop-shadow(0 0 12px rgba(201, 169, 110, .4));
}
.sf-desc {
  font-size: .8rem; line-height: 1.7;
  color: rgba(245, 241, 234, .6);
  max-width: 280px;
}
.sf-bar {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 20px;
  border-top: 1px solid rgba(201, 169, 110, .15);
  font-size: .75rem; color: rgba(245, 241, 234, .55);
  flex-wrap: wrap; gap: 8px;
}
.sf-ssl { color: var(--gold); font-weight: 500; }
@media (max-width: 600px) {
  .site-footer { padding: 28px 0 16px; }
  .sf-grid { gap: 24px; }
  .sf-bar { flex-direction: column; text-align: center; }
}

/* ── ÇEREZ BANNER ── */
.cerez-banner {
  position: fixed;
  bottom: calc(var(--botnav) + 12px);
  left: 12px; right: 12px;
  z-index: 950;
  background: linear-gradient(135deg, rgba(15, 27, 44, .98), rgba(26, 43, 66, .98));
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(201, 169, 110, .3);
  border-radius: 14px;
  padding: 16px 20px;
  box-shadow: 0 12px 40px rgba(15, 27, 44, .4);
  animation: cerezSlide .5s cubic-bezier(.34, 1.56, .64, 1);
}
@keyframes cerezSlide { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
.cerez-icin {
  display: flex; gap: 16px; align-items: center; flex-wrap: wrap;
  max-width: 1100px; margin: 0 auto;
}
.cerez-metin { flex: 1; min-width: 200px; color: #F5F1EA; }
.cerez-metin strong { display: block; font-size: .88rem; margin-bottom: 4px; color: var(--gold); font-weight: 600; }
.cerez-metin p { font-size: .76rem; line-height: 1.5; color: rgba(245, 241, 234, .8); margin: 0; }
.cerez-aksiyon { display: flex; gap: 10px; align-items: center; }
.cerez-link {
  font-size: .78rem; color: rgba(245, 241, 234, .7);
  padding: 8px 12px; transition: color .2s;
}
.cerez-link:hover { color: var(--gold); }
.cerez-btn {
  background: linear-gradient(135deg, var(--gold), var(--gold-dk));
  color: var(--ink);
  font-weight: 700; font-size: .8rem;
  padding: 10px 20px; border-radius: 8px;
  letter-spacing: .03em;
  box-shadow: 0 4px 12px rgba(201, 169, 110, .3);
  transition: transform .2s, box-shadow .2s;
}
.cerez-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(201, 169, 110, .45);
}
@media (max-width: 600px) {
  .cerez-banner { bottom: calc(var(--botnav) + 8px); left: 8px; right: 8px; padding: 14px 16px; }
  .cerez-icin { flex-direction: column; align-items: stretch; gap: 12px; }
  .cerez-aksiyon { justify-content: space-between; }
}

/* ═══════════════════════════════════════════════════════
   SPRINT 2 — Yorumlar, Aciliyet, Stok
   ═══════════════════════════════════════════════════════ */

/* ── ACILIYET BAR (gorunmelar + stok uyarilari) ── */
.aciliyet-bar {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 0 0 18px 0;
}
.aciliyet-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 8px;
  font-size: .84rem;
  line-height: 1.4;
  animation: aciliyetGir .5s cubic-bezier(.4, 0, .2, 1);
}
.aciliyet-item.goruntuleme {
  background: linear-gradient(90deg, rgba(232, 93, 58, .1), rgba(232, 93, 58, .05));
  color: #B91C1C;
  border-left: 3px solid #E85D3A;
}
.aciliyet-item.stok-az {
  background: linear-gradient(90deg, rgba(245, 158, 11, .12), rgba(245, 158, 11, .05));
  color: #92400E;
  border-left: 3px solid #F59E0B;
}
.aciliyet-item.stok-yok {
  background: rgba(107, 114, 128, .1);
  color: #6B7280;
  border-left: 3px solid #9CA3AF;
}
.ac-ikon { font-size: 1.1rem; flex-shrink: 0; }
.ac-metin strong { font-weight: 700; }
@keyframes aciliyetGir {
  from { opacity: 0; transform: translateX(-10px); }
  to { opacity: 1; transform: translateX(0); }
}

/* ── YORUMLAR BOLUMU ── */
.yorum-bolumu { margin-top: 40px; }

.yorum-ozet {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 24px;
  background: linear-gradient(135deg, #FAF6EE, #F5F1EA);
  border-radius: var(--r);
  margin-bottom: 24px;
  flex-wrap: wrap;
}
.yo-buyuk-puan {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.5rem;
  font-weight: 500;
  color: var(--ink);
  line-height: 1;
}
.yo-yildizlar-wrap { flex: 1; min-width: 200px; }
.yo-yildizlar {
  color: var(--gold);
  font-size: 1.3rem;
  letter-spacing: 3px;
  margin-bottom: 4px;
}
.yo-sayi { font-size: .88rem; color: var(--ink3); }
.yo-bos { flex: 1; }
.yo-bos-ikon { font-size: 2rem; display: block; margin-bottom: 8px; }
.yo-bos h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  margin-bottom: 4px;
  color: var(--ink);
}
.yo-bos p { font-size: .85rem; color: var(--ink3); }
.yo-yaz-btn { white-space: nowrap; }

/* Yorum Formu */
.yorum-form {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 24px;
  margin-bottom: 20px;
}
.yorum-form h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 16px;
}
.yf-grup { margin-bottom: 16px; }
.yf-grup label {
  display: block;
  font-size: .78rem;
  font-weight: 600;
  color: var(--ink2);
  margin-bottom: 6px;
  letter-spacing: .02em;
}
.yf-grup input,
.yf-grup textarea {
  width: 100%;
  padding: 10px 14px;
  background: #FAF6EE;
  border: 1px solid var(--line2);
  border-radius: var(--r-sm);
  font-size: .9rem;
  font-family: inherit;
  color: var(--ink);
  transition: border-color .2s, background .2s;
}
.yf-grup input:focus,
.yf-grup textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: #fff;
}
.yf-grup textarea { resize: vertical; min-height: 90px; }
.yf-hint { font-size: .72rem; color: var(--ink3); margin-top: 4px; }

/* Yildiz secici */
.yildiz-sec {
  display: flex;
  gap: 4px;
  font-size: 1.8rem;
  color: var(--gold);
  cursor: pointer;
  user-select: none;
}
.yildiz-sec span {
  transition: transform .15s ease;
  line-height: 1;
}
.yildiz-sec span:hover { transform: scale(1.15); }
.yildiz-sec span.dolu { color: var(--gold-dk); }

/* Yorum listesi */
.yorum-liste {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.yorum-item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 18px 20px;
  transition: border-color .2s, transform .2s;
}
.yorum-item:hover {
  border-color: rgba(201, 169, 110, .3);
  transform: translateY(-2px);
}
.yi-ust {
  display: flex;
  gap: 12px;
  margin-bottom: 10px;
  align-items: flex-start;
}
.yi-avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-dk));
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-weight: 600;
  font-size: 1.1rem;
  flex-shrink: 0;
  text-transform: uppercase;
}
.yi-isim {
  font-weight: 600;
  color: var(--ink);
  font-size: .92rem;
}
.yi-yildiz {
  color: var(--gold);
  font-size: .85rem;
  letter-spacing: 2px;
  margin-top: 2px;
}
.yi-tarih {
  color: var(--ink3);
  font-size: .72rem;
  letter-spacing: 0;
  margin-left: 8px;
  font-weight: 400;
}
.yi-metin {
  margin: 0;
  color: var(--ink2);
  line-height: 1.65;
  font-size: .9rem;
}

@media (max-width: 560px) {
  .yorum-ozet { padding: 18px; gap: 14px; }
  .yo-buyuk-puan { font-size: 2.5rem; }
  .yo-yaz-btn { width: 100%; justify-content: center; }
}

/* ═══════════════════════════════════════════════════════
   MINI SPRINT A — WhatsApp sabit buton + Kargo progress bar
   ═══════════════════════════════════════════════════════ */

/* ── WHATSAPP SABIT BUTON ── */
.wa-sabit {
  position: fixed;
  bottom: 110px; /* Alt nav'in ve altin sepet butonunun ustunde */
  right: 20px;
  width: 58px;
  height: 58px;
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 700;
  box-shadow: 0 8px 22px rgba(37, 211, 102, .45),
              0 4px 10px rgba(0, 0, 0, .15);
  transition: transform .25s cubic-bezier(.4, 0, .2, 1),
              box-shadow .25s ease;
  cursor: pointer;
  text-decoration: none;
}
.wa-sabit:hover {
  transform: scale(1.08) translateY(-2px);
  box-shadow: 0 12px 30px rgba(37, 211, 102, .6),
              0 6px 14px rgba(0, 0, 0, .2);
  color: #fff;
}
.wa-sabit:active { transform: scale(0.96); }
.wa-sabit svg {
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 2px 3px rgba(0, 0, 0, .15));
}
/* Pulse animasyonu - dikkat cekici */
.wa-pulse {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: rgba(37, 211, 102, .5);
  animation: waPulse 2s ease-out infinite;
  pointer-events: none;
}
@keyframes waPulse {
  0% { transform: scale(1); opacity: .7; }
  100% { transform: scale(1.6); opacity: 0; }
}

/* Masa\u00fcst\u00fcnde daha buyuk, alt nav olmadigi icin asagida */
@media (min-width: 900px) {
  .wa-sabit {
    bottom: 28px;
    right: 28px;
    width: 64px;
    height: 64px;
  }
  .wa-sabit svg { width: 32px; height: 32px; }
}
@media (max-width: 480px) {
  .wa-sabit {
    width: 52px;
    height: 52px;
    bottom: 100px;
    right: 14px;
  }
  .wa-sabit svg { width: 24px; height: 24px; }
}

/* ── UCRETSIZ KARGO PROGRESS BAR ── */
.kargo-progress {
  margin: 14px 0 18px;
  padding: 14px 16px;
  background: linear-gradient(135deg, #FFF9EC, #FDF6E3);
  border: 1px solid rgba(201, 169, 110, .25);
  border-radius: var(--r-sm);
  transition: all .3s ease;
}
.kargo-progress.kazanildi {
  background: linear-gradient(135deg, #ECFDF5, #D1FAE5);
  border-color: rgba(16, 185, 129, .4);
}
.kp-metin {
  font-size: .85rem;
  color: var(--ink2);
  margin-bottom: 10px;
  text-align: center;
  line-height: 1.4;
}
.kargo-progress.kazanildi .kp-metin {
  color: #065F46;
  font-weight: 500;
}
.kp-metin strong { color: var(--gold-dk); font-weight: 700; }
.kargo-progress.kazanildi .kp-metin strong { color: #047857; }

.kp-cubuk {
  height: 10px;
  background: rgba(201, 169, 110, .15);
  border-radius: 20px;
  overflow: hidden;
  position: relative;
}
.kp-dolu {
  height: 100%;
  background: linear-gradient(90deg, var(--gold), var(--gold-dk));
  border-radius: 20px;
  transition: width .8s cubic-bezier(.4, 0, .2, 1);
  position: relative;
  overflow: hidden;
}
.kp-dolu::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg,
    transparent,
    rgba(255, 255, 255, .3),
    transparent);
  animation: kpParlar 2s ease-in-out infinite;
}
@keyframes kpParlar {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}
.kargo-progress.kazanildi .kp-dolu {
  background: linear-gradient(90deg, #10B981, #047857);
}
.kp-alt {
  display: flex;
  justify-content: space-between;
  font-size: .72rem;
  color: var(--muted);
  margin-top: 6px;
  font-weight: 600;
}

/* ═══════════════════════════════════════════════════════
   OZEL SIPARIS SAYFASI
   ═══════════════════════════════════════════════════════ */

.ozel-wrap { padding: 20px 0 40px; max-width: 840px; margin: 0 auto; }

.ozel-hero {
  text-align: center;
  padding: 30px 20px 24px;
}
.ozel-hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 10px;
}
.ozel-hero p {
  color: var(--ink3);
  font-size: .95rem;
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.55;
}

.ozel-form { display: flex; flex-direction: column; gap: 16px; }

.ozel-kart {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 20px;
  transition: border-color .2s, transform .2s, box-shadow .3s;
}
.ozel-kart:hover {
  border-color: rgba(201, 169, 110, .3);
  box-shadow: 0 4px 16px rgba(15, 27, 44, .06);
}

.ok-ust {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 14px;
}
.ok-numara {
  flex-shrink: 0;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-dk));
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  display: flex; align-items: center; justify-content: center;
}
.ok-ust h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 4px;
}
.ok-ust p {
  font-size: .82rem;
  color: var(--ink3);
  line-height: 1.5;
}

/* Textarea */
.ozel-kart textarea,
.ozel-kart input[type="text"],
.ozel-kart input[type="tel"],
.ozel-kart input[type="number"] {
  width: 100%;
  padding: 10px 14px;
  background: #FAF6EE;
  border: 1px solid var(--line2);
  border-radius: var(--r-sm);
  font-size: .92rem;
  font-family: inherit;
  color: var(--ink);
  transition: border-color .2s, background .2s;
}
.ozel-kart textarea:focus,
.ozel-kart input:focus {
  outline: none;
  border-color: var(--gold);
  background: #fff;
}
.ozel-kart textarea { resize: vertical; min-height: 110px; }

/* Foto yukleme */
#fotoInput { display: none; }
.ok-foto-btn {
  display: inline-block;
  padding: 10px 20px;
  background: #FAF6EE;
  border: 2px dashed var(--gold);
  border-radius: var(--r-sm);
  color: var(--ink2);
  cursor: pointer;
  transition: background .2s, border-color .2s;
  font-size: .88rem;
  font-weight: 500;
}
.ok-foto-btn:hover {
  background: #FFF9EC;
  border-color: var(--gold-dk);
}
.ok-foto-liste {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 12px;
}
.ok-foto-item {
  width: 100px;
  border-radius: var(--r-sm);
  overflow: hidden;
  border: 1px solid var(--line);
  background: #fff;
}
.ok-foto-item img {
  width: 100%;
  height: 100px;
  object-fit: cover;
  display: block;
}
.ok-foto-item span {
  display: block;
  padding: 6px 8px;
  font-size: .65rem;
  color: var(--ink3);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Cizim */
.ok-cizim-arac {
  display: flex;
  gap: 14px;
  align-items: center;
  margin-bottom: 10px;
  flex-wrap: wrap;
  font-size: .82rem;
}
.ok-cizim-arac label {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--ink2);
}
.ok-cizim-arac input[type="color"] {
  width: 36px; height: 36px;
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  padding: 2px;
  cursor: pointer;
}
.ok-cizim-arac input[type="range"] { width: 100px; }
.ok-canvas {
  width: 100%;
  max-width: 100%;
  height: auto;
  aspect-ratio: 3 / 2;
  border: 2px solid var(--line2);
  border-radius: var(--r-sm);
  background: #fff;
  cursor: crosshair;
  touch-action: none;
  display: block;
}

/* Olculer */
.ok-olculer {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
  gap: 10px;
}
.ok-olcu-grup label {
  display: block;
  font-size: .75rem;
  color: var(--ink2);
  margin-bottom: 6px;
  font-weight: 500;
}

/* Boyut secim */
.ok-boyut-sec {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.ok-boyut-sec label {
  flex: 1;
  min-width: 100px;
  cursor: pointer;
  position: relative;
}
.ok-boyut-sec input { display: none; }
.ok-boyut-sec span {
  display: block;
  padding: 10px;
  text-align: center;
  background: #FAF6EE;
  border: 2px solid transparent;
  border-radius: var(--r-sm);
  font-size: .82rem;
  font-weight: 500;
  color: var(--ink2);
  transition: all .2s;
}
.ok-boyut-sec input:checked + span {
  background: #FFF9EC;
  border-color: var(--gold);
  color: var(--gold-dk);
}
.ok-boyut-sec label:hover span {
  background: #FFF9EC;
}

/* Renkler */
.ok-renkler {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(110px, 1fr));
  gap: 10px;
}
.ok-renk-secim {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 10px;
  background: #FAF6EE;
  border: 2px solid transparent;
  border-radius: var(--r-sm);
  cursor: pointer;
  transition: all .2s;
  text-align: center;
}
.ok-renk-secim input { display: none; }
.ok-renk-secim:has(input:checked) {
  background: #FFF9EC;
  border-color: var(--gold);
  transform: scale(1.03);
}
.ok-renk-kutu {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: block;
  color: var(--ink2);
  font-weight: 600;
}
.ok-renk-secim span:last-child {
  font-size: .78rem;
  color: var(--ink2);
  font-weight: 500;
}

/* Submit */
.ozel-submit-wrap {
  text-align: center;
  margin-top: 10px;
  padding: 10px;
}
.ozel-submit {
  font-size: 1rem !important;
  padding: 14px 32px !important;
  background: linear-gradient(135deg, #25D366, #128C7E) !important;
  color: #fff !important;
  border: none !important;
}
.ozel-submit:hover {
  background: linear-gradient(135deg, #128C7E, #075E54) !important;
  transform: translateY(-2px);
}
.ozel-gizlilik {
  font-size: .75rem;
  color: var(--muted);
  margin-top: 12px;
}

/* Basarili */
.ozel-basarili {
  text-align: center;
  padding: 60px 20px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r);
}
.ob-ikon {
  width: 84px;
  height: 84px;
  border-radius: 50%;
  background: linear-gradient(135deg, #10B981, #047857);
  color: #fff;
  font-size: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  animation: obPulse .8s ease-out;
}
@keyframes obPulse {
  from { transform: scale(0); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}
.ozel-basarili h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 12px;
}
.ozel-basarili p {
  color: var(--ink2);
  max-width: 400px;
  margin: 0 auto 24px;
  line-height: 1.6;
}

@media (max-width: 560px) {
  .ozel-hero { padding: 20px 10px; }
  .ozel-kart { padding: 16px 14px; }
  .ok-renk-kutu { width: 40px; height: 40px; }
  .ok-cizim-arac input[type="range"] { width: 80px; }
}

/* ═══════════════════════════════════════════════════════
   ADMIN - OZEL TALEPLER SAYFASI
   ═══════════════════════════════════════════════════════ */

.ot-filtre {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}
.ot-f-item {
  padding: 8px 14px;
  border-radius: 20px;
  background: #fff;
  border: 1px solid #E5E5E5;
  font-size: .85rem;
  color: #555;
  display: inline-flex;
  gap: 6px;
  align-items: center;
  transition: all .2s;
}
.ot-f-item:hover { background: #F5F5F5; }
.ot-f-item.aktif {
  background: #1F2B3D;
  color: #fff;
  border-color: #1F2B3D;
}
.ot-badge {
  background: #F59E0B;
  color: #fff;
  padding: 1px 8px;
  border-radius: 10px;
  font-size: .72rem;
  font-weight: 700;
}

.ot-liste {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.ot-kart {
  background: #fff;
  border: 1px solid #E5E5E5;
  border-left: 4px solid #F59E0B;
  border-radius: 8px;
  padding: 18px;
}
.ot-kart.durum-konusuldu { border-left-color: #3B82F6; }
.ot-kart.durum-anlasildi { border-left-color: #10B981; }
.ot-kart.durum-iptal { border-left-color: #9CA3AF; opacity: .7; }

.ot-kart-ust {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 14px;
  padding-bottom: 12px;
  border-bottom: 1px solid #F0F0F0;
}
.ot-durum-etiket {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 12px;
  font-size: .72rem;
  margin-left: 10px;
  font-weight: 600;
}
.ot-d-yeni { background: #FEF3C7; color: #92400E; }
.ot-d-konusuldu { background: #DBEAFE; color: #1E40AF; }
.ot-d-anlasildi { background: #D1FAE5; color: #065F46; }
.ot-d-iptal { background: #E5E7EB; color: #374151; }

.ot-aciklama, .ot-fotograflar, .ot-cizim, .ot-olcu-grid, .ot-renkler-liste, .ot-notlar {
  margin-bottom: 14px;
  font-size: .88rem;
}
.ot-aciklama p {
  margin-top: 6px;
  color: #444;
  line-height: 1.55;
  background: #FAFAFA;
  padding: 10px;
  border-radius: 6px;
}
.ot-foto-liste {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 8px;
}
.ot-foto-liste a {
  display: block;
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid #E5E5E5;
}
.ot-foto-liste img {
  width: 90px;
  height: 90px;
  object-fit: cover;
  display: block;
  cursor: zoom-in;
  transition: transform .2s;
}
.ot-foto-liste img:hover { transform: scale(1.05); }
.ot-renk-tag {
  background: #FFF9EC;
  color: #8B6914;
  padding: 3px 10px;
  border-radius: 10px;
  font-size: .75rem;
  border: 1px solid rgba(201, 169, 110, .3);
}
.ot-notlar p {
  background: #FFFBEB;
  border-left: 3px solid #F59E0B;
  padding: 8px 10px;
  margin-top: 6px;
  border-radius: 4px;
  color: #92400E;
  line-height: 1.5;
}

.ot-aksiyonlar {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px solid #F0F0F0;
}
.ot-durum-sec {
  padding: 6px 10px;
  border: 1px solid #D1D5DB;
  border-radius: 6px;
  font-size: .8rem;
  background: #fff;
  color: #374151;
  cursor: pointer;
}

/* ═══════════════════════════════════════════════════════
   HAYALINDEKI URUNU TASARLAT - 3D KART
   ═══════════════════════════════════════════════════════ */

/* Kartin dis capi - perspektif ver */
.hero-card.hc-3d {
  perspective: 1000px;
  background: transparent;
  padding: 0;
  overflow: visible;
  border: none;
}

/* Ic katman - 3D donecek olan */
.hc-3d-inner {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 130px;
  padding: 24px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: var(--r);
  background:
    linear-gradient(135deg,
      #2A1810 0%,
      #1F2B3D 25%,
      #0F1B2C 50%,
      #1F2B3D 75%,
      #2A1810 100%);
  background-size: 200% 200%;
  box-shadow:
    0 8px 24px rgba(15, 27, 44, .35),
    inset 0 1px 0 rgba(201, 169, 110, .25),
    inset 0 -1px 0 rgba(0, 0, 0, .3);
  transform-style: preserve-3d;
  transition:
    transform .5s cubic-bezier(.25, .8, .25, 1),
    box-shadow .5s ease,
    background-position 4s ease-in-out;
  color: #F5F1EA;
  overflow: hidden;
  animation: hc3dGradient 8s ease-in-out infinite;
}
@keyframes hc3dGradient {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

/* Alt kenar altin cizgi - derinlik hissi */
.hc-3d-inner::after {
  content: '';
  position: absolute;
  left: 10%; right: 10%;
  bottom: 0;
  height: 1px;
  background: linear-gradient(90deg,
    transparent 0%,
    var(--gold) 50%,
    transparent 100%);
  opacity: .6;
  pointer-events: none;
}

/* Parilti efekti - hover'da gezecek */
.hc-3d-parilti {
  position: absolute;
  top: 0; left: -60%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(201, 169, 110, .15) 50%,
    transparent 100%);
  transform: skewX(-20deg);
  transition: left .8s cubic-bezier(.4, 0, .2, 1);
  pointer-events: none;
  z-index: 1;
}
.hero-card.hc-3d:hover .hc-3d-parilti {
  left: 130%;
}

/* Rozet - sadece 3D kart icin */
.hc-3d-rozet {
  display: inline-block;
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .12em;
  color: var(--gold);
  padding: 3px 10px;
  border: 1px solid rgba(201, 169, 110, .35);
  border-radius: 20px;
  margin-bottom: 10px;
  background: rgba(201, 169, 110, .08);
  text-shadow: 0 0 8px rgba(201, 169, 110, .3);
}

/* Yazilar */
.hero-card.hc-3d .hc-text h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem;
  font-weight: 500;
  background: linear-gradient(135deg, #F5F1EA 0%, var(--gold) 50%, #F5F1EA 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: hc3dYazi 5s linear infinite;
  margin-bottom: 4px;
  line-height: 1.15;
  position: relative;
  z-index: 2;
}
@keyframes hc3dYazi {
  to { background-position: 200% center; }
}
.hero-card.hc-3d .hc-text p {
  font-size: .72rem;
  color: rgba(245, 241, 234, .7);
  position: relative;
  z-index: 2;
}

/* Ok butonu - 3D effect ile birlikte */
.hero-card.hc-3d .hc-arrow {
  background: rgba(201, 169, 110, .18);
  color: var(--gold);
  border: 1px solid rgba(201, 169, 110, .35);
  transform: translateZ(20px);
  position: relative;
  z-index: 2;
  transition: all .35s ease;
}
.hero-card.hc-3d:hover .hc-arrow {
  background: rgba(201, 169, 110, .35);
  transform: translateZ(30px) scale(1.12);
  box-shadow: 0 6px 18px rgba(201, 169, 110, .3);
}

/* ANA 3D EFEKTI - hover'da kart donuk gibi gozuksun */
.hero-card.hc-3d:hover .hc-3d-inner {
  transform: translateY(-4px) rotateX(6deg) rotateY(-3deg);
  box-shadow:
    0 20px 40px rgba(15, 27, 44, .45),
    0 10px 20px rgba(201, 169, 110, .18),
    inset 0 1px 0 rgba(201, 169, 110, .4),
    inset 0 -1px 0 rgba(0, 0, 0, .3);
}

/* Sabit durum - cok hafif hareket */
.hero-card.hc-3d .hc-3d-inner {
  animation: hc3dGradient 8s ease-in-out infinite, hc3dYuz 6s ease-in-out infinite;
}
@keyframes hc3dYuz {
  0%, 100% { transform: rotateX(2deg) rotateY(1deg); }
  50% { transform: rotateX(-1deg) rotateY(-2deg); }
}
.hero-card.hc-3d:hover .hc-3d-inner {
  animation-play-state: paused;
}

/* Mobilde daha sade animasyon (pil/performans) */
@media (max-width: 680px) {
  .hero-card.hc-3d .hc-3d-inner {
    animation: none;
    transform: none;
  }
  .hero-card.hc-3d:hover .hc-3d-inner {
    transform: translateY(-2px) rotateX(3deg);
  }
}

/* Cok kucuk ekran - sadeleştir */
@media (max-width: 480px) {
  .hc-3d-inner { padding: 16px 14px; min-height: 110px; }
  .hero-card.hc-3d .hc-text h3 { font-size: 1.1rem; }
  .hc-3d-rozet { font-size: .55rem; padding: 2px 8px; margin-bottom: 6px; }
}

/* ═══════════════════════════════════════════════════════
   ATOLYEMIZ SAYFASI
   ═══════════════════════════════════════════════════════ */

/* Hero */
.atolye-hero {
  background:
    linear-gradient(135deg, rgba(15, 27, 44, .92), rgba(30, 20, 16, .85)),
    radial-gradient(circle at 70% 30%, rgba(201, 169, 110, .25), transparent 60%);
  padding: 60px 0 50px;
  margin: 0 auto 30px;
  position: relative;
  overflow: hidden;
  color: #F5F1EA;
}
.atolye-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 70%, rgba(232, 93, 58, .15), transparent 50%);
  pointer-events: none;
}
.ah-metin {
  text-align: center;
  max-width: 720px;
  margin: 20px auto 0;
  position: relative;
  z-index: 1;
}
.ah-rozet {
  display: inline-block;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .22em;
  color: var(--gold);
  background: rgba(201, 169, 110, .12);
  border: 1px solid rgba(201, 169, 110, .4);
  padding: 6px 16px;
  border-radius: 20px;
  margin-bottom: 18px;
}
.atolye-hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 500;
  margin-bottom: 14px;
  background: linear-gradient(135deg, #F5F1EA 0%, var(--gold) 50%, #F5F1EA 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: ahYazi 6s linear infinite;
}
@keyframes ahYazi {
  to { background-position: 200% center; }
}
.atolye-hero p {
  font-size: 1rem;
  color: rgba(245, 241, 234, .8);
  line-height: 1.7;
  max-width: 560px;
  margin: 0 auto;
}

/* Bolum yapisi */
.atolye-bolum { margin: 48px 0; }
.ab-baslik {
  text-align: center;
  margin-bottom: 28px;
}
.ab-baslik h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.6rem, 4vw, 2.3rem);
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 6px;
}
.ab-baslik p {
  color: var(--ink3);
  font-size: .9rem;
}

/* Galeri */
.atolye-galeri {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 14px;
}
.ag-item {
  position: relative;
  aspect-ratio: 4 / 3;
  border-radius: var(--r);
  overflow: hidden;
  background: #E4DAC5;
  cursor: pointer;
  transition: transform .35s ease, box-shadow .35s ease;
  display: block;
}
.ag-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 32px rgba(15, 27, 44, .2);
}
.ag-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .6s cubic-bezier(.4, 0, .2, 1);
}
.ag-item:hover img { transform: scale(1.08); }
.ag-video-placeholder {
  width: 100%; height: 100%;
  background: linear-gradient(135deg, #1F2B3D, #0F1B2C);
  display: flex; align-items: center; justify-content: center;
  font-size: 4rem;
}
.ag-play {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 60px; height: 60px;
  background: rgba(201, 169, 110, .95);
  color: #0F1B2C;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem;
  padding-left: 4px;
  box-shadow: 0 8px 20px rgba(15, 27, 44, .4);
  transition: transform .2s;
}
.ag-item:hover .ag-play {
  transform: translate(-50%, -50%) scale(1.1);
}
.ag-overlay {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 18px 16px 12px;
  background: linear-gradient(to top, rgba(15, 27, 44, .92), transparent);
  color: #F5F1EA;
  transform: translateY(100%);
  transition: transform .35s ease;
}
.ag-item:hover .ag-overlay,
.ag-item:focus-within .ag-overlay { transform: translateY(0); }
.ag-overlay h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  margin-bottom: 2px;
}
.ag-overlay p { font-size: .78rem; color: rgba(245, 241, 234, .8); }

/* Ekip */
.atolye-ekip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
}
.ae-kart {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r);
  overflow: hidden;
  transition: transform .3s, box-shadow .3s;
}
.ae-kart:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(15, 27, 44, .1);
}
.ae-foto {
  aspect-ratio: 1 / 1;
  background: linear-gradient(135deg, #F0E9DB, #E4DAC5);
  overflow: hidden;
}
.ae-foto img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.ae-foto-bos {
  width: 100%; height: 100%;
  background: linear-gradient(135deg, var(--gold), var(--gold-dk));
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 4rem;
  font-weight: 600;
  font-family: 'Cormorant Garamond', serif;
}
.ae-bilgi { padding: 16px 18px; }
.ae-bilgi h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 2px;
}
.ae-unvan {
  font-size: .72rem;
  color: var(--gold-dk);
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.ae-bilgi p {
  font-size: .85rem;
  line-height: 1.55;
  color: var(--ink2);
}

/* Yorumlar */
.atolye-yorumlar {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 14px;
}
.ay-kart {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 18px;
  transition: transform .25s, box-shadow .25s;
}
.ay-kart:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(15, 27, 44, .08);
}
.ay-ust {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--line);
}
.ay-kaynak {
  font-size: .78rem;
  font-weight: 600;
  color: var(--ink);
}
.ay-kullanici {
  font-size: .75rem;
  color: var(--gold-dk);
  margin-left: auto;
}
.ay-metin {
  font-style: italic;
  color: var(--ink2);
  line-height: 1.65;
  font-size: .92rem;
}
.ay-resim {
  width: 100%;
  border-radius: var(--r-sm);
  display: block;
}

/* CTA */
.atolye-cta {
  background: linear-gradient(135deg, #1F2B3D, #0F1B2C);
  color: #F5F1EA;
  padding: 44px 20px;
  border-radius: var(--r);
  text-align: center;
  margin: 48px 0 20px;
}
.atolye-cta h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.5rem, 3.5vw, 2rem);
  margin-bottom: 10px;
}
.atolye-cta p {
  color: rgba(245, 241, 234, .75);
  margin-bottom: 20px;
}

/* Video modal */
.atolye-modal {
  position: fixed; inset: 0;
  background: rgba(10, 15, 25, .95);
  z-index: 9999;
  display: none;
  align-items: center; justify-content: center;
  padding: 20px;
  opacity: 0;
  transition: opacity .3s;
}
.atolye-modal.acik {
  display: flex;
  opacity: 1;
}
.am-icerik {
  max-width: 90vw; max-height: 85vh;
  aspect-ratio: 16/9;
  width: 960px;
  background: #000;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, .5);
}
.am-icerik iframe,
.am-icerik video {
  width: 100%; height: 100%;
  border: none;
  display: block;
}
.am-kapat {
  position: absolute;
  top: 20px; right: 20px;
  width: 44px; height: 44px;
  background: rgba(255, 255, 255, .1);
  border: 1px solid rgba(255, 255, 255, .2);
  color: #fff;
  font-size: 28px;
  border-radius: 50%;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  padding: 0;
  line-height: 1;
}
.am-kapat:hover { background: rgba(255, 255, 255, .2); }

/* Admin modal - ap-modal genel kullanım */
.ap-modal {
  position: fixed; inset: 0;
  background: rgba(15, 27, 44, .75);
  z-index: 9999;
  display: none;
  align-items: flex-start;
  justify-content: center;
  padding: 40px 20px;
  overflow-y: auto;
  opacity: 0;
  transition: opacity .25s;
}
.ap-modal.acik {
  display: flex;
  opacity: 1;
}
.ap-modal-icerik {
  background: #fff;
  border-radius: 12px;
  padding: 24px;
  max-width: 600px;
  width: 100%;
  position: relative;
  box-shadow: 0 20px 60px rgba(0, 0, 0, .3);
}
.ap-modal-icerik h2 {
  font-size: 1.4rem;
  margin-bottom: 18px;
  color: #1F2B3D;
}
.ap-modal-kapat {
  position: absolute;
  top: 12px; right: 12px;
  width: 36px; height: 36px;
  background: #F5F5F5;
  border: none;
  border-radius: 50%;
  font-size: 22px;
  cursor: pointer;
  line-height: 1;
  color: #666;
}
.ap-modal-kapat:hover { background: #E5E5E5; }

/* Admin medya liste (kart grid) */
.am-liste {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 14px;
}
.am-kart {
  background: #fff;
  border: 1px solid #E5E5E5;
  border-radius: 8px;
  overflow: hidden;
}
.am-onizleme {
  aspect-ratio: 4/3;
  position: relative;
  background: #F5F5F5;
  overflow: hidden;
}
.am-onizleme img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.am-tip-rozet {
  position: absolute;
  top: 8px; left: 8px;
  background: rgba(0, 0, 0, .7);
  color: #fff;
  padding: 3px 8px;
  border-radius: 10px;
  font-size: .7rem;
}
.am-pasif {
  position: absolute;
  top: 8px; right: 8px;
  background: #DC2626;
  color: #fff;
  padding: 3px 8px;
  border-radius: 10px;
  font-size: .7rem;
}
.am-bilgi { padding: 12px; }
.am-bilgi strong { font-size: .95rem; color: #1F2B3D; display: block; margin-bottom: 4px; }

@media (max-width: 560px) {
  .atolye-hero { padding: 40px 0 30px; }
  .atolye-bolum { margin: 30px 0; }
  .am-icerik { width: 100%; }
}

/* ═══════════════════════════════════════════════════════
   SİNEMATİK ATOLYE SAYFASI
   ═══════════════════════════════════════════════════════ */

/* Sayfa gövdesi - container dışına çıkmak için */
.sinema-sayfa {
  margin: 0 auto;
  max-width: 100vw;
  overflow-x: hidden;
  background: #0A0F1A;
  color: #F5F1EA;
}
/* Normal container margin'ini sıfırla çünkü atolyemiz sayfası tam genişlik */
body:has(.sinema-sayfa) main { padding-bottom: 0; }

/* ══ HERO ══ */
.sn-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #0A0F1A;
}
.sn-hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 50%, rgba(232, 93, 58, .25), transparent 50%),
    radial-gradient(ellipse at 70% 60%, rgba(201, 169, 110, .2), transparent 55%),
    linear-gradient(135deg, #0A0F1A 0%, #1a0f08 50%, #0A0F1A 100%);
}

/* Kıvılcımlar - CSS animasyonu */
.sn-kivilcimlar {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.sn-kivilcim {
  position: absolute;
  left: var(--x);
  top: var(--y);
  width: var(--k);
  height: var(--k);
  background: radial-gradient(circle, rgba(255, 180, 90, 1), rgba(232, 93, 58, .6) 40%, transparent 70%);
  border-radius: 50%;
  animation: snKivilcim var(--s) linear var(--d) infinite;
  opacity: 0;
  filter: blur(.5px);
}
@keyframes snKivilcim {
  0% { transform: translate(0, 0) scale(0); opacity: 0; }
  10% { opacity: 1; }
  70% { opacity: .8; }
  100% { transform: translate(calc(var(--k) * 2), -150px) scale(1.5); opacity: 0; }
}

.sn-hero-icerik {
  position: relative;
  text-align: center;
  max-width: 900px;
  padding: 40px 20px;
  z-index: 2;
}
.sn-mini-rozet {
  display: inline-block;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .3em;
  color: #C9A96E;
  background: rgba(201, 169, 110, .1);
  border: 1px solid rgba(201, 169, 110, .3);
  padding: 8px 20px;
  border-radius: 30px;
  margin-bottom: 30px;
  animation: snFadeDown 1s ease-out;
}
.sn-hero-baslik {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.5rem, 8vw, 5.5rem);
  font-weight: 400;
  line-height: 1.05;
  margin-bottom: 20px;
  background: linear-gradient(135deg,
    #F5F1EA 0%,
    #C9A96E 30%,
    #E85D3A 50%,
    #C9A96E 70%,
    #F5F1EA 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: snBaslikParla 4s linear infinite, snFadeUp 1.2s ease-out .3s backwards;
  text-shadow: 0 0 40px rgba(201, 169, 110, .3);
  letter-spacing: -.01em;
}
@keyframes snBaslikParla { to { background-position: 200% center; } }
.sn-alt-yazi {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.2rem, 3vw, 2rem);
  font-style: italic;
  color: rgba(245, 241, 234, .85);
  margin-bottom: 24px;
  letter-spacing: .02em;
  animation: snFadeUp 1.2s ease-out .6s backwards;
}
.sn-aciklama {
  font-size: clamp(.9rem, 1.5vw, 1.05rem);
  line-height: 1.8;
  color: rgba(245, 241, 234, .65);
  max-width: 600px;
  margin: 0 auto 40px;
  animation: snFadeUp 1.2s ease-out .9s backwards;
}
.sn-kesfet {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  border: 1px solid rgba(201, 169, 110, .4);
  border-radius: 40px;
  color: #C9A96E;
  font-size: .85rem;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  transition: all .3s;
  animation: snFadeUp 1.2s ease-out 1.2s backwards, snKesfetZipla 2.5s ease-in-out infinite 2.4s;
  text-decoration: none;
}
.sn-kesfet:hover {
  background: rgba(201, 169, 110, .12);
  border-color: #C9A96E;
  color: #F5F1EA;
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(201, 169, 110, .2);
}
.sn-kesfet svg { animation: snOkZipla 1.5s ease-in-out infinite; }

@keyframes snFadeDown {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes snFadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes snKesfetZipla {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}
@keyframes snOkZipla {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(4px); }
}

/* ══ GENEL BÖLÜM ══ */
.sn-bolum {
  padding: 100px 20px;
  position: relative;
  opacity: 0;
  transform: translateY(40px);
  transition: opacity .8s ease-out, transform .8s ease-out;
}
.sn-bolum.sn-gorundu {
  opacity: 1;
  transform: translateY(0);
}
.sn-ic {
  max-width: 1200px;
  margin: 0 auto;
}
.sn-bolum-baslik {
  text-align: center;
  margin-bottom: 60px;
}
.sn-bolum-uzerindeki {
  display: inline-block;
  font-size: 2.5rem;
  margin-bottom: 16px;
  filter: drop-shadow(0 0 20px rgba(201, 169, 110, .4));
}
.sn-bolum-baslik h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 5vw, 3.4rem);
  font-weight: 400;
  color: #F5F1EA;
  margin-bottom: 10px;
  letter-spacing: -.01em;
}
.sn-bolum-baslik p {
  color: rgba(245, 241, 234, .6);
  font-size: 1rem;
  max-width: 500px;
  margin: 0 auto;
}

/* ══ İSTATİSTİK ══ */
.sn-istatistik {
  background:
    linear-gradient(180deg, #0A0F1A 0%, #141B2A 100%);
  padding: 120px 20px;
}
.sn-stat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
}
.sn-stat {
  text-align: center;
  padding: 40px 24px;
  background: linear-gradient(135deg, rgba(255,255,255,.03), rgba(255,255,255,.01));
  border: 1px solid rgba(201, 169, 110, .15);
  border-radius: 16px;
  transition: transform .4s, border-color .4s, box-shadow .4s;
  position: relative;
  overflow: hidden;
}
.sn-stat::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(201, 169, 110, .15), transparent 70%);
  opacity: 0;
  transition: opacity .4s;
}
.sn-stat:hover {
  transform: translateY(-6px);
  border-color: rgba(201, 169, 110, .5);
  box-shadow: 0 20px 50px rgba(201, 169, 110, .15);
}
.sn-stat:hover::before { opacity: 1; }

.sn-stat-ikon {
  font-size: 2.5rem;
  margin-bottom: 14px;
  filter: drop-shadow(0 0 15px rgba(201, 169, 110, .4));
}
.sn-stat-rakam {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3rem, 7vw, 5rem);
  font-weight: 500;
  line-height: 1;
  background: linear-gradient(135deg, #F5F1EA, #C9A96E);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 10px;
  letter-spacing: -.03em;
}
.sn-stat-etiket {
  font-size: .75rem;
  letter-spacing: .25em;
  color: rgba(245, 241, 234, .7);
  font-weight: 600;
}

/* ══ GALERİ ══ */
.sn-galeri {
  background:
    linear-gradient(180deg, #141B2A 0%, #0A0F1A 100%);
}
.sn-galeri-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 16px;
  grid-auto-rows: 300px;
}
.sn-galeri-item {
  position: relative;
  overflow: hidden;
  border-radius: 14px;
  cursor: pointer;
  transition: transform .5s cubic-bezier(.4, 0, .2, 1), box-shadow .5s;
  opacity: 0;
  transform: translateY(30px) scale(.95);
}
.sn-galeri-item.sn-gorundu {
  opacity: 1;
  transform: translateY(0) scale(1);
}
.sn-galeri-item:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 30px 60px rgba(0, 0, 0, .5), 0 0 0 1px rgba(201, 169, 110, .3);
}
.sn-g-buyuk {
  grid-column: span 2;
  grid-row: span 2;
}
.sn-g-resim {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 1s cubic-bezier(.4, 0, .2, 1), filter .5s;
  filter: saturate(1.1) contrast(1.05);
}
.sn-galeri-item:hover .sn-g-resim {
  transform: scale(1.1);
  filter: saturate(1.3) contrast(1.1) brightness(1.05);
}
.sn-galeri-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(10, 15, 26, .85) 100%);
  pointer-events: none;
}
.sn-g-play {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 70px; height: 70px;
  background: rgba(201, 169, 110, .95);
  color: #0A0F1A;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.7rem;
  padding-left: 5px;
  z-index: 2;
  box-shadow: 0 10px 30px rgba(0, 0, 0, .5);
  transition: transform .3s;
}
.sn-galeri-item:hover .sn-g-play { transform: translate(-50%, -50%) scale(1.15); }
.sn-g-overlay {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 24px 22px;
  color: #F5F1EA;
  z-index: 2;
  transform: translateY(20%);
  opacity: 0;
  transition: transform .4s, opacity .4s;
}
.sn-galeri-item:hover .sn-g-overlay,
.sn-g-buyuk .sn-g-overlay {
  transform: translateY(0);
  opacity: 1;
}
.sn-g-overlay h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  margin-bottom: 4px;
}
.sn-g-overlay p {
  font-size: .85rem;
  color: rgba(245, 241, 234, .75);
}

/* ══ EKİP ══ */
.sn-ekip {
  background:
    linear-gradient(180deg, #0A0F1A 0%, #1a0f08 50%, #0A0F1A 100%);
}
.sn-ekip-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.sn-ekip-kart {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  background: #141B2A;
  transition: transform .5s, box-shadow .5s;
  opacity: 0;
  transform: translateY(40px);
  transition: opacity .8s, transform .8s, box-shadow .5s;
}
.sn-ekip-kart.sn-gorundu {
  opacity: 1;
  transform: translateY(0);
}
.sn-ekip-kart:hover {
  transform: translateY(-10px) !important;
  box-shadow: 0 30px 60px rgba(0, 0, 0, .5), 0 0 0 1px rgba(201, 169, 110, .3);
}
.sn-ekip-foto {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  background: linear-gradient(135deg, #1F2B3D, #0A0F1A);
}
.sn-ekip-foto img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 1s cubic-bezier(.4, 0, .2, 1);
}
.sn-ekip-kart:hover .sn-ekip-foto img { transform: scale(1.08); }
.sn-ekip-harf {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 7rem;
  color: rgba(201, 169, 110, .6);
  background: linear-gradient(135deg, #1a0f08, #0A0F1A);
}
.sn-ekip-vigneti {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(10, 15, 26, .95) 100%);
  pointer-events: none;
}
.sn-ekip-bilgi {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 24px;
  color: #F5F1EA;
  z-index: 2;
}
.sn-ekip-unvan {
  font-size: .65rem;
  letter-spacing: .25em;
  color: #C9A96E;
  margin-bottom: 6px;
  font-weight: 700;
  text-transform: uppercase;
}
.sn-ekip-bilgi h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 500;
  margin-bottom: 8px;
}
.sn-ekip-bilgi p {
  font-size: .82rem;
  color: rgba(245, 241, 234, .7);
  line-height: 1.5;
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease;
}
.sn-ekip-kart:hover .sn-ekip-bilgi p {
  max-height: 200px;
}

/* ══ YORUMLAR (AÇIK TEMA) ══ */
.sn-yorumlar {
  background: linear-gradient(180deg, #0A0F1A 0%, #F5F1EA 15%);
  color: #1F2B3D;
}
.sn-bb-aydinlik h2 { color: #1F2B3D; }
.sn-bb-aydinlik p { color: #555; }

.sn-yorum-carousel {
  position: relative;
  overflow: hidden;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 60px;
}
.sn-yorum-liste {
  display: flex;
  transition: transform .7s cubic-bezier(.4, 0, .2, 1);
}
.sn-yorum-item {
  min-width: 100%;
  padding: 0 10px;
}
.sn-yorum-kart {
  background: #fff;
  border: 1px solid rgba(201, 169, 110, .2);
  border-radius: 20px;
  padding: 40px 36px;
  text-align: center;
  box-shadow: 0 30px 60px rgba(15, 27, 44, .08);
  position: relative;
}
.sn-y-ikon {
  font-size: 2.5rem;
  margin-bottom: 18px;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, .1));
}
.sn-y-metin {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.1rem, 2.4vw, 1.5rem);
  font-style: italic;
  line-height: 1.55;
  color: #1F2B3D;
  margin-bottom: 24px;
}
.sn-y-resim {
  max-width: 100%;
  max-height: 400px;
  border-radius: 10px;
  margin: 0 auto 20px;
  display: block;
}
.sn-y-alt {
  display: flex;
  justify-content: center;
  gap: 14px;
  font-size: .8rem;
  color: #888;
  padding-top: 16px;
  border-top: 1px solid rgba(201, 169, 110, .2);
}
.sn-y-kullanici { color: #C9A96E; font-weight: 600; }
.sn-y-kaynak { color: #999; }

.sn-y-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px; height: 44px;
  background: #fff;
  border: 1px solid rgba(201, 169, 110, .25);
  border-radius: 50%;
  color: #1F2B3D;
  font-size: 1.6rem;
  cursor: pointer;
  display: flex;
  align-items: center; justify-content: center;
  line-height: 0;
  padding-bottom: 4px;
  box-shadow: 0 6px 16px rgba(15, 27, 44, .1);
  transition: transform .2s, border-color .2s;
  z-index: 3;
}
.sn-y-nav:hover {
  border-color: #C9A96E;
  transform: translateY(-50%) scale(1.1);
}
.sn-y-sol { left: 0; }
.sn-y-sag { right: 0; }

.sn-y-noktalar {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
}
.sn-y-nokta {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: rgba(201, 169, 110, .3);
  cursor: pointer;
  transition: all .2s;
}
.sn-y-nokta.aktif {
  background: #C9A96E;
  transform: scale(1.3);
}

/* ══ CTA ══ */
.sn-cta {
  background: #0A0F1A;
  padding: 0;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.sn-cta-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 50% 50%, rgba(232, 93, 58, .35), transparent 60%),
    linear-gradient(135deg, #1a0f08 0%, #0A0F1A 100%);
}
.sn-cta-icerik {
  position: relative;
  text-align: center;
  padding: 60px 20px;
  z-index: 2;
}
.sn-cta-icerik h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 6vw, 4rem);
  font-weight: 400;
  background: linear-gradient(135deg, #F5F1EA 0%, #C9A96E 50%, #F5F1EA 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: snBaslikParla 4s linear infinite;
  margin-bottom: 20px;
  line-height: 1.1;
  letter-spacing: -.02em;
}
.sn-cta-icerik p {
  font-size: clamp(.95rem, 1.5vw, 1.1rem);
  color: rgba(245, 241, 234, .7);
  margin-bottom: 36px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}
.sn-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 18px 36px;
  background: linear-gradient(135deg, #C9A96E 0%, #8B6914 100%);
  color: #0A0F1A;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: .05em;
  border-radius: 40px;
  transition: transform .3s, box-shadow .3s;
  box-shadow: 0 14px 40px rgba(201, 169, 110, .35);
  text-decoration: none;
}
.sn-cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 50px rgba(201, 169, 110, .5);
  color: #0A0F1A;
}

/* ══ RESPONSIVE ══ */
@media (max-width: 768px) {
  .sn-bolum { padding: 70px 16px; }
  .sn-istatistik { padding: 80px 16px; }
  .sn-galeri-grid { grid-auto-rows: 260px; }
  .sn-g-buyuk { grid-column: span 1; grid-row: span 1; }
  .sn-yorum-carousel { padding: 0 40px; }
  .sn-y-nav { width: 36px; height: 36px; font-size: 1.3rem; }
}
@media (max-width: 480px) {
  .sn-hero-icerik { padding: 20px 16px; }
  .sn-mini-rozet { font-size: .62rem; padding: 6px 14px; }
  .sn-stat { padding: 30px 18px; }
  .sn-bolum-uzerindeki { font-size: 2rem; }
  .sn-bolum-baslik { margin-bottom: 40px; }
  .sn-yorum-kart { padding: 28px 22px; }
}

/* ══ HERO 3D CANVAS ══ */
.sn-hero-3d { position: relative; min-height: 100vh; overflow: hidden; }
.sn-hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  z-index: 1;
}
.sn-hero-vignet {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at center, transparent 20%, rgba(10, 15, 26, .4) 65%, rgba(10, 15, 26, .75) 100%),
    linear-gradient(180deg, rgba(10, 15, 26, .2) 0%, transparent 40%, rgba(10, 15, 26, .6) 100%);
  z-index: 2;
  pointer-events: none;
}
.sn-hero-3d .sn-hero-icerik {
  position: relative;
  z-index: 3;
}
.sn-hero-3d .sn-hero-bg {
  z-index: 0;
  opacity: .6;
}

/* ═══════════════════════════════════════════════════════
   HİKAYE SAYFASI - 3 BÖLÜMLÜ SİNEMATİK
   ═══════════════════════════════════════════════════════ */

.hikaye-sayfa {
  margin: 0 auto;
  max-width: 100vw;
  overflow-x: hidden;
  background: #050810;
  color: #F5F1EA;
}

/* ── BÖLÜM TEMEL YAPISI ── */
.hk-bolum {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hk-canvas {
  position: absolute !important;
  inset: 0;
  width: 100% !important;
  height: 100% !important;
  display: block;
  z-index: 1;
}
.hk-vignet {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    radial-gradient(ellipse at center, transparent 15%, rgba(5, 8, 16, .5) 60%, rgba(5, 8, 16, .85) 100%),
    linear-gradient(180deg, rgba(5, 8, 16, .3) 0%, transparent 35%, rgba(5, 8, 16, .65) 100%);
}
.hk-vignet-ates {
  background:
    radial-gradient(ellipse at center, transparent 15%, rgba(26, 8, 5, .5) 60%, rgba(26, 8, 5, .85) 100%),
    linear-gradient(180deg, rgba(26, 8, 5, .3) 0%, transparent 35%, rgba(26, 8, 5, .65) 100%);
}
.hk-vignet-altin {
  background:
    radial-gradient(ellipse at center, transparent 15%, rgba(26, 15, 8, .4) 60%, rgba(26, 15, 8, .8) 100%),
    linear-gradient(180deg, rgba(26, 15, 8, .2) 0%, transparent 35%, rgba(26, 15, 8, .6) 100%);
}

.hk-icerik {
  position: relative;
  z-index: 3;
  text-align: center;
  max-width: 800px;
  padding: 60px 20px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1.2s ease-out, transform 1.2s ease-out;
}
.hk-icerik.gorundu {
  opacity: 1;
  transform: translateY(0);
}

/* Bölüm numarası */
.hk-sayac {
  font-family: 'Cormorant Garamond', serif;
  font-size: .85rem;
  letter-spacing: .4em;
  color: rgba(201, 169, 110, .6);
  margin-bottom: 20px;
  font-weight: 400;
}

/* Bölüm adı (büyük, etiket gibi) */
.hk-bolum-adi {
  display: inline-block;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .35em;
  color: #6088BB;
  border: 1px solid rgba(96, 136, 187, .3);
  padding: 8px 22px;
  border-radius: 30px;
  margin-bottom: 32px;
  background: rgba(96, 136, 187, .08);
}
.hk-ad-ates {
  color: #FF6B1A;
  border-color: rgba(255, 107, 26, .35);
  background: rgba(255, 107, 26, .1);
}
.hk-ad-altin {
  color: #C9A96E;
  border-color: rgba(201, 169, 110, .35);
  background: rgba(201, 169, 110, .1);
}

/* Ana başlık */
.hk-baslik {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.2rem, 6vw, 4.5rem);
  font-weight: 400;
  line-height: 1.1;
  margin-bottom: 26px;
  background: linear-gradient(135deg, #F5F1EA 0%, #6088BB 50%, #F5F1EA 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: hkYaziAkis 6s linear infinite;
  letter-spacing: -.01em;
}
.hk-baslik-ates {
  background: linear-gradient(135deg, #F5F1EA 0%, #FF6B1A 40%, #FFAA44 60%, #F5F1EA 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hk-baslik-altin {
  background: linear-gradient(135deg, #F5F1EA 0%, #C9A96E 40%, #FFD700 60%, #F5F1EA 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
@keyframes hkYaziAkis { to { background-position: 200% center; } }

.hk-metin {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.1rem, 2.2vw, 1.5rem);
  font-style: italic;
  color: rgba(245, 241, 234, .8);
  line-height: 1.65;
  max-width: 600px;
  margin: 0 auto 40px;
}

/* Scroll ipucu */
.hk-scroll-ipucu {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: .75rem;
  letter-spacing: .2em;
  color: rgba(201, 169, 110, .7);
  text-transform: uppercase;
  animation: hkZipla 2.5s ease-in-out infinite;
  font-weight: 500;
}
.hk-scroll-ipucu svg {
  animation: hkOkZipla 1.5s ease-in-out infinite;
}
@keyframes hkZipla {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}
@keyframes hkOkZipla {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(4px); }
}

/* CTA butonu */
.hk-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 18px 36px;
  background: linear-gradient(135deg, #C9A96E 0%, #8B6914 100%);
  color: #0A0F1A;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: .05em;
  border-radius: 40px;
  transition: transform .3s, box-shadow .3s;
  box-shadow: 0 14px 40px rgba(201, 169, 110, .35);
  text-decoration: none;
  margin-top: 12px;
}
.hk-cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 50px rgba(201, 169, 110, .5);
  color: #0A0F1A;
}

/* ── ARA MEDYA BÖLÜMÜ ── */
.hk-medya-ara {
  background: linear-gradient(180deg, #050810 0%, #0A0F1A 50%, #1a0805 100%);
  padding: 80px 20px;
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1s, transform 1s;
}
.hk-medya-ara.gorundu {
  opacity: 1;
  transform: translateY(0);
}
.hk-medya-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 14px;
  grid-auto-rows: 280px;
}
.hk-medya-item {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  cursor: pointer;
  transition: transform .5s, box-shadow .5s;
  display: block;
}
.hk-medya-item:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 30px 60px rgba(0, 0, 0, .5), 0 0 0 1px rgba(201, 169, 110, .3);
}
.hk-m-buyuk { grid-column: span 2; grid-row: span 2; }
.hk-m-resim {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 1s cubic-bezier(.4, 0, .2, 1);
}
.hk-medya-item:hover .hk-m-resim { transform: scale(1.08); }
.hk-medya-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(5, 8, 16, .85) 100%);
  pointer-events: none;
}
.hk-m-play {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 64px; height: 64px;
  background: rgba(201, 169, 110, .95);
  color: #0A0F1A;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  padding-left: 4px;
  z-index: 2;
  box-shadow: 0 10px 30px rgba(0, 0, 0, .5);
  transition: transform .3s;
}
.hk-medya-item:hover .hk-m-play { transform: translate(-50%, -50%) scale(1.15); }
.hk-m-alt {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 18px 20px;
  color: #F5F1EA;
  z-index: 2;
}
.hk-m-alt h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
}

/* ── EKİP BÖLÜMÜ ── */
.hk-ekip-ara {
  background: linear-gradient(180deg, #1a0805 0%, #050810 100%);
  padding: 100px 20px;
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1s, transform 1s;
}
.hk-ekip-ara.gorundu {
  opacity: 1;
  transform: translateY(0);
}
.hk-ekip-baslik {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 50px;
}
.hk-ara-uzeri {
  font-size: .7rem;
  letter-spacing: .35em;
  color: rgba(201, 169, 110, .7);
  font-weight: 700;
  text-transform: uppercase;
  display: block;
  margin-bottom: 10px;
}
.hk-ekip-baslik h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 400;
  color: #F5F1EA;
}
.hk-ekip-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}
.hk-ekip-kart {
  background: #0A0F1A;
  border: 1px solid rgba(201, 169, 110, .15);
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  transition: transform .4s, box-shadow .4s, border-color .4s;
}
.hk-ekip-kart:hover {
  transform: translateY(-6px);
  border-color: rgba(201, 169, 110, .4);
  box-shadow: 0 30px 60px rgba(0, 0, 0, .5);
}
.hk-ekip-foto {
  aspect-ratio: 3 / 4;
  overflow: hidden;
  position: relative;
  background: linear-gradient(135deg, #1F2B3D, #050810);
}
.hk-ekip-foto img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 1s cubic-bezier(.4, 0, .2, 1);
}
.hk-ekip-kart:hover .hk-ekip-foto img { transform: scale(1.08); }
.hk-ekip-harf {
  width: 100%; height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 6rem;
  color: rgba(201, 169, 110, .5);
  background: linear-gradient(135deg, #1a0f08, #050810);
}
.hk-ekip-bilgi {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 20px;
  background: linear-gradient(180deg, transparent 0%, rgba(5, 8, 16, .92) 50%, rgba(5, 8, 16, 1) 100%);
  color: #F5F1EA;
}
.hk-ekip-unvan {
  font-size: .62rem;
  letter-spacing: .25em;
  color: #C9A96E;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.hk-ekip-bilgi h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 500;
  margin-bottom: 6px;
}
.hk-ekip-bilgi p {
  font-size: .82rem;
  color: rgba(245, 241, 234, .7);
  line-height: 1.5;
  max-height: 0;
  overflow: hidden;
  transition: max-height .5s ease;
}
.hk-ekip-kart:hover .hk-ekip-bilgi p { max-height: 160px; }

/* ── YORUMLAR CAROUSEL ── */
.hk-yorum-ara {
  background: linear-gradient(180deg, #050810 0%, #F5F1EA 20%);
  padding: 100px 20px 80px;
  color: #1F2B3D;
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1s, transform 1s;
}
.hk-yorum-ara.gorundu {
  opacity: 1;
  transform: translateY(0);
}
.hk-yorum-ara .hk-ekip-baslik h2 { color: #1F2B3D; }
.hk-yorum-ara .hk-ara-uzeri { color: #8B6914; }

.hk-yorum-carousel {
  position: relative;
  overflow: hidden;
  max-width: 780px;
  margin: 0 auto;
  padding: 0 60px;
}
.hk-yorum-liste {
  display: flex;
  transition: transform .7s cubic-bezier(.4, 0, .2, 1);
}
.hk-yorum-item {
  min-width: 100%;
  padding: 0 10px;
}
.hk-yorum-kart {
  background: #fff;
  border: 1px solid rgba(201, 169, 110, .2);
  border-radius: 20px;
  padding: 40px 36px;
  text-align: center;
  box-shadow: 0 30px 60px rgba(15, 27, 44, .08);
}
.hk-y-ikon { font-size: 2.5rem; margin-bottom: 16px; }
.hk-y-metin {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.1rem, 2.4vw, 1.5rem);
  font-style: italic;
  line-height: 1.55;
  color: #1F2B3D;
  margin-bottom: 22px;
}
.hk-y-resim {
  max-width: 100%;
  max-height: 400px;
  border-radius: 10px;
  margin: 0 auto 20px;
  display: block;
}
.hk-y-alt {
  display: flex;
  justify-content: center;
  gap: 14px;
  font-size: .8rem;
  color: #888;
  padding-top: 16px;
  border-top: 1px solid rgba(201, 169, 110, .2);
}
.hk-y-kullanici { color: #C9A96E; font-weight: 600; }

.hk-y-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px; height: 44px;
  background: #fff;
  border: 1px solid rgba(201, 169, 110, .25);
  border-radius: 50%;
  color: #1F2B3D;
  font-size: 1.6rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-bottom: 4px;
  box-shadow: 0 6px 16px rgba(15, 27, 44, .1);
  transition: transform .2s, border-color .2s;
  z-index: 3;
}
.hk-y-nav:hover {
  border-color: #C9A96E;
  transform: translateY(-50%) scale(1.1);
}
.hk-y-sol { left: 0; }
.hk-y-sag { right: 0; }
.hk-y-noktalar {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
}
.hk-y-nokta {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: rgba(201, 169, 110, .3);
  cursor: pointer;
  transition: all .2s;
}
.hk-y-nokta.aktif {
  background: #C9A96E;
  transform: scale(1.3);
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .hk-icerik { padding: 40px 16px; }
  .hk-medya-ara, .hk-ekip-ara, .hk-yorum-ara { padding: 60px 16px; }
  .hk-medya-grid { grid-auto-rows: 240px; }
  .hk-m-buyuk { grid-column: span 1; grid-row: span 1; }
  .hk-yorum-carousel { padding: 0 40px; }
  .hk-y-nav { width: 36px; height: 36px; font-size: 1.3rem; }
}
@media (max-width: 480px) {
  .hk-bolum-adi { font-size: .62rem; padding: 6px 16px; letter-spacing: .25em; }
  .hk-sayac { font-size: .75rem; }
  .hk-yorum-kart { padding: 28px 22px; }
}

/* ═══════════════════════════════════════════════════════
   ÇELİK ART ATÖLYESİ - FINAL SİNEMATİK SAYFA
   Find Real Estate tarzı + 3D sahne karışımı
   ═══════════════════════════════════════════════════════ */

.ca-sayfa {
  margin: 0 auto;
  max-width: 100vw;
  overflow-x: hidden;
  background: #F5F1EA;
  color: #1F2B3D;
}

/* ═══ HERO ═══ */
.ca-hero {
  position: relative;
  min-height: 100vh;
  background: #080B14;
  overflow: hidden;
}
.ca-canvas {
  position: absolute !important;
  inset: 0;
  width: 100% !important;
  height: 100% !important;
  display: block;
  z-index: 1;
}
.ca-hero-vig {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    radial-gradient(ellipse at center, transparent 15%, rgba(8, 11, 20, .4) 60%, rgba(8, 11, 20, .85) 100%),
    linear-gradient(180deg, rgba(8, 11, 20, .3) 0%, transparent 40%, rgba(8, 11, 20, .7) 100%);
}
.ca-hero-nav {
  position: absolute;
  top: 0; left: 0; right: 0;
  z-index: 5;
  display: flex;
  justify-content: space-between;
  padding: 30px 40px;
  color: #F5F1EA;
}
.ca-nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  letter-spacing: .3em;
  color: #F5F1EA;
  text-decoration: none;
  font-weight: 500;
}
.ca-nav-kesfet {
  font-size: .75rem;
  letter-spacing: .2em;
  color: rgba(245, 241, 234, .8);
  text-decoration: none;
  border-bottom: 1px solid rgba(201, 169, 110, .4);
  padding-bottom: 4px;
  transition: color .2s, border-color .2s;
}
.ca-nav-kesfet:hover {
  color: #C9A96E;
  border-color: #C9A96E;
}

.ca-hero-icerik {
  position: relative;
  z-index: 3;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 100px 20px 40px;
  color: #F5F1EA;
}
.ca-hero-ust {
  font-size: .72rem;
  letter-spacing: .4em;
  color: rgba(201, 169, 110, .75);
  font-weight: 600;
  margin-bottom: 40px;
  animation: caFadeIn 1.2s ease-out;
}
.ca-hero-baslik {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(4rem, 13vw, 11rem);
  font-weight: 400;
  line-height: .95;
  letter-spacing: -.02em;
  background: linear-gradient(135deg, #F5F1EA 0%, #C9A96E 50%, #F5F1EA 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: caYaziAkis 6s linear infinite, caFadeUp 1.5s ease-out .3s backwards;
  margin-bottom: -.15em;
}
.ca-hero-alt {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.5rem, 5vw, 3.5rem);
  font-weight: 300;
  letter-spacing: .4em;
  color: rgba(245, 241, 234, .9);
  margin-bottom: 30px;
  animation: caFadeUp 1.5s ease-out .6s backwards;
}
.ca-hero-slogan {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(.95rem, 1.8vw, 1.2rem);
  font-style: italic;
  color: rgba(245, 241, 234, .65);
  letter-spacing: .05em;
  animation: caFadeUp 1.5s ease-out .9s backwards;
}
@keyframes caYaziAkis { to { background-position: 200% center; } }
@keyframes caFadeIn {
  from { opacity: 0; } to { opacity: 1; }
}
@keyframes caFadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ═══ GENEL ANAHTARLAR ═══ */
.ca-giris, .ca-hikaye, .ca-adimlar, .ca-ekip, .ca-yorumlar {
  padding: 120px 20px;
  background: #F5F1EA;
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1s, transform 1s;
}
.ca-giris.ca-gorundu,
.ca-hikaye.ca-gorundu,
.ca-adimlar.ca-gorundu,
.ca-ekip.ca-gorundu,
.ca-yorumlar.ca-gorundu,
.ca-atolye-foto.ca-gorundu,
.ca-uclu.ca-gorundu {
  opacity: 1;
  transform: translateY(0);
}
.ca-ic {
  max-width: 1100px;
  margin: 0 auto;
}
.ca-etiket {
  display: inline-block;
  font-size: .7rem;
  letter-spacing: .3em;
  color: #8B6914;
  font-weight: 700;
  margin-bottom: 24px;
  padding: 6px 0;
  border-top: 1px solid rgba(201, 169, 110, .3);
  border-bottom: 1px solid rgba(201, 169, 110, .3);
}
.ca-etiket-ates { color: #E85D3A; border-color: rgba(232, 93, 58, .4); }
.ca-etiket-altin { color: #C9A96E; border-color: rgba(201, 169, 110, .4); }
.ca-etiket-beyaz { color: #F5F1EA; border-color: rgba(245, 241, 234, .4); }

.ca-buyuk-yazi {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.2rem, 6vw, 4.5rem);
  font-weight: 400;
  line-height: 1.1;
  color: #1F2B3D;
  margin-bottom: 28px;
  letter-spacing: -.02em;
}
.ca-orta-yazi {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  font-style: italic;
  line-height: 1.6;
  color: rgba(31, 43, 61, .75);
  max-width: 600px;
}
.ca-yazi-beyaz { color: #F5F1EA; }

/* ═══ 3'LÜ BÖLÜM ═══ */
.ca-uclu {
  background: #1F2B3D;
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1s, transform 1s;
}
.ca-b-item {
  position: relative;
  display: block;
  min-height: 340px;
  overflow: hidden;
  border-bottom: 1px solid rgba(201, 169, 110, .15);
  text-decoration: none;
  color: #F5F1EA;
  cursor: pointer;
}
.ca-b-item:last-child { border-bottom: none; }
.ca-b-arkafoto {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 1.5s cubic-bezier(.4, 0, .2, 1);
  filter: saturate(1.1);
}
.ca-b-item:hover .ca-b-arkafoto {
  transform: scale(1.05);
}
.ca-b-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg,
    rgba(8, 11, 20, .85) 0%,
    rgba(8, 11, 20, .6) 40%,
    rgba(8, 11, 20, .3) 80%,
    rgba(8, 11, 20, .1) 100%);
  transition: background .5s;
}
.ca-b-item:hover .ca-b-overlay {
  background: linear-gradient(90deg,
    rgba(8, 11, 20, .92) 0%,
    rgba(8, 11, 20, .75) 40%,
    rgba(8, 11, 20, .5) 80%,
    rgba(8, 11, 20, .3) 100%);
}
.ca-b-icerik {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 340px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 50px 40px;
}
.ca-b-numara {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  color: rgba(201, 169, 110, .6);
  letter-spacing: .3em;
  margin-bottom: 14px;
}
.ca-b-icerik h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.5rem, 7vw, 5rem);
  font-weight: 400;
  line-height: 1;
  letter-spacing: .04em;
  margin-bottom: 14px;
  color: #F5F1EA;
  transition: transform .5s;
}
.ca-b-item:hover h3 {
  transform: translateX(20px);
}
.ca-b-icerik p {
  font-size: 1rem;
  line-height: 1.55;
  color: rgba(245, 241, 234, .75);
  max-width: 400px;
  margin-bottom: 20px;
}
.ca-b-ok {
  display: inline-block;
  font-size: .85rem;
  letter-spacing: .18em;
  color: #C9A96E;
  padding-bottom: 6px;
  border-bottom: 1px solid #C9A96E;
  transition: letter-spacing .4s, padding-right .4s;
  width: fit-content;
}
.ca-b-item:hover .ca-b-ok {
  letter-spacing: .25em;
  padding-right: 10px;
}

/* ═══ ATEŞ SAHNESİ ═══ */
.ca-ates {
  position: relative;
  min-height: 100vh;
  background: #0A0F1A;
  overflow: hidden;
}
.ca-ates-icerik {
  position: relative;
  z-index: 3;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  max-width: 1100px;
  margin: 0 auto;
  padding: 100px 40px;
  color: #F5F1EA;
}
.ca-ates-icerik .ca-buyuk-yazi { color: #F5F1EA; }
.ca-ates-icerik .ca-orta-yazi { color: rgba(245, 241, 234, .75); }

/* ═══ 3 ADIM ═══ */
.ca-adim-liste {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 40px;
  margin-top: 60px;
}
.ca-adim {
  padding: 30px 0;
  border-top: 2px solid rgba(201, 169, 110, .3);
}
.ca-adim-no {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.5rem;
  color: #C9A96E;
  margin-bottom: 16px;
  line-height: 1;
}
.ca-adim h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  color: #1F2B3D;
  margin-bottom: 12px;
  font-weight: 500;
}
.ca-adim p {
  font-size: .95rem;
  line-height: 1.6;
  color: rgba(31, 43, 61, .7);
}

/* ═══ ATOLYE FOTO (tam ekran) ═══ */
.ca-atolye-foto {
  position: relative;
  min-height: 80vh;
  background: #1F2B3D;
  overflow: hidden;
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1s, transform 1s;
}
.ca-foto-katman {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(.55) saturate(1.1);
}
.ca-foto-ust {
  position: relative;
  z-index: 2;
  min-height: 80vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 1100px;
  margin: 0 auto;
  padding: 100px 40px;
}
.ca-atolye-stat {
  display: flex;
  gap: 50px;
  margin-top: 40px;
  flex-wrap: wrap;
}
.ca-atolye-stat > div {
  color: #F5F1EA;
}
.ca-atolye-stat strong {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 500;
  color: #C9A96E;
  line-height: 1;
  margin-bottom: 6px;
}
.ca-atolye-stat span {
  font-size: .72rem;
  letter-spacing: .25em;
  color: rgba(245, 241, 234, .7);
  font-weight: 600;
}

/* ═══ EKİP ═══ */
.ca-ekip-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  margin-top: 50px;
}
.ca-ekip-kart {
  background: #fff;
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid rgba(31, 43, 61, .08);
  transition: transform .5s, box-shadow .5s;
}
.ca-ekip-kart:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 48px rgba(31, 43, 61, .12);
}
.ca-ekip-foto {
  aspect-ratio: 3/4;
  overflow: hidden;
  background: linear-gradient(135deg, #E4DAC5, #F0E9DB);
}
.ca-ekip-foto img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 1s cubic-bezier(.4, 0, .2, 1);
}
.ca-ekip-kart:hover .ca-ekip-foto img { transform: scale(1.06); }
.ca-ekip-harf {
  width: 100%; height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 6rem;
  color: rgba(139, 105, 20, .4);
  background: linear-gradient(135deg, #F0E9DB, #E4DAC5);
}
.ca-ekip-bilgi {
  padding: 24px;
}
.ca-ekip-unvan {
  font-size: .65rem;
  letter-spacing: .25em;
  color: #C9A96E;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.ca-ekip-bilgi h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 500;
  color: #1F2B3D;
  margin-bottom: 10px;
}
.ca-ekip-bilgi p {
  font-size: .88rem;
  color: rgba(31, 43, 61, .7);
  line-height: 1.55;
}

/* ═══ YORUMLAR ═══ */
.ca-yorumlar { background: #EDE5D2; }
.ca-yorum-carousel {
  position: relative;
  max-width: 780px;
  margin: 50px auto 0;
  padding: 0 60px;
  overflow: hidden;
}
.ca-yorum-liste {
  display: flex;
  transition: transform .7s cubic-bezier(.4, 0, .2, 1);
}
.ca-yorum-item {
  min-width: 100%;
  padding: 0 10px;
}
.ca-yorum-kart {
  background: #fff;
  border-radius: 4px;
  padding: 50px 40px;
  text-align: center;
  box-shadow: 0 16px 40px rgba(31, 43, 61, .08);
  border: 1px solid rgba(201, 169, 110, .15);
}
.ca-y-ikon { font-size: 2.2rem; margin-bottom: 18px; }
.ca-y-metin {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.15rem, 2.4vw, 1.5rem);
  font-style: italic;
  line-height: 1.55;
  color: #1F2B3D;
  margin-bottom: 22px;
}
.ca-y-resim {
  max-width: 100%;
  max-height: 400px;
  border-radius: 6px;
  margin: 0 auto 20px;
  display: block;
}
.ca-y-alt {
  display: flex;
  justify-content: center;
  gap: 14px;
  font-size: .75rem;
  color: #888;
  padding-top: 16px;
  border-top: 1px solid rgba(201, 169, 110, .2);
}
.ca-y-kullanici { color: #C9A96E; font-weight: 600; }
.ca-y-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px; height: 44px;
  background: #fff;
  border: 1px solid rgba(201, 169, 110, .3);
  border-radius: 50%;
  color: #1F2B3D;
  font-size: 1.6rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-bottom: 4px;
  z-index: 3;
  transition: border-color .2s, transform .2s;
}
.ca-y-nav:hover {
  border-color: #C9A96E;
  transform: translateY(-50%) scale(1.1);
}
.ca-y-sol { left: 0; }
.ca-y-sag { right: 0; }
.ca-y-noktalar {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
}
.ca-y-nokta {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: rgba(201, 169, 110, .3);
  cursor: pointer;
  transition: all .2s;
}
.ca-y-nokta.aktif {
  background: #C9A96E;
  transform: scale(1.3);
}

/* ═══ FİNAL ═══ */
.ca-final {
  position: relative;
  min-height: 100vh;
  background: #0A0F1A;
  overflow: hidden;
}
.ca-final-vig {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    radial-gradient(ellipse at center, transparent 20%, rgba(10, 15, 26, .5) 70%, rgba(10, 15, 26, .9) 100%);
}
.ca-final-icerik {
  position: relative;
  z-index: 3;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 100px 20px;
  color: #F5F1EA;
}
.ca-final-baslik {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.5rem, 7vw, 5rem);
  font-weight: 400;
  line-height: 1.1;
  background: linear-gradient(135deg, #F5F1EA 0%, #C9A96E 50%, #F5F1EA 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: caYaziAkis 6s linear infinite;
  margin-bottom: 24px;
  letter-spacing: -.02em;
}
.ca-final-icerik .ca-orta-yazi {
  color: rgba(245, 241, 234, .75);
  margin-bottom: 40px;
}
.ca-final-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 18px 40px;
  background: linear-gradient(135deg, #C9A96E 0%, #8B6914 100%);
  color: #0A0F1A;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: .05em;
  border-radius: 40px;
  text-decoration: none;
  transition: transform .3s, box-shadow .3s;
  box-shadow: 0 14px 40px rgba(201, 169, 110, .35);
}
.ca-final-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 50px rgba(201, 169, 110, .55);
  color: #0A0F1A;
}

/* ═══ RESPONSIVE ═══ */
@media (max-width: 768px) {
  .ca-hero-nav { padding: 20px 20px; }
  .ca-giris, .ca-hikaye, .ca-adimlar, .ca-ekip, .ca-yorumlar { padding: 80px 20px; }
  .ca-b-icerik { padding: 40px 24px; }
  .ca-ates-icerik, .ca-foto-ust { padding: 80px 24px; }
  .ca-atolye-stat { gap: 30px; }
  .ca-yorum-carousel { padding: 0 40px; }
  .ca-y-nav { width: 36px; height: 36px; font-size: 1.3rem; }
}
@media (max-width: 480px) {
  .ca-hero-ust { font-size: .62rem; letter-spacing: .3em; }
  .ca-yorum-kart { padding: 30px 24px; }
  .ca-adim-liste { gap: 24px; }
  .ca-atolye-stat { gap: 24px; }
}

/* ═══════════════════════════════════════════════════════════════
   SLIDER YAZILARI — Otomatik Akışkan Boyut
   Ekran genişliğine göre yazı boyutu otomatik hesaplanır.
   Slider boyutu/yapısı/resim/buton konumu DEĞİŞMEZ.
   Sadece yazı kendi alanına sığacak şekilde küçülür/büyür.
   ═══════════════════════════════════════════════════════════════ */
.hero-slayt .hero-title {
  font-size: clamp(1rem, 4.2vw, 1.8rem);
  line-height: 1.15;
}
.hero-slayt .hero-desc {
  font-size: clamp(0.7rem, 2.4vw, 0.95rem);
  line-height: 1.4;
}