/* ============================================================
   Elfida Perde — tema

   Marka rengi logodan alındı: koyu orman yeşili (#2E7D32).
   Tabeladaki neon yeşil, beyaz üzerinde okunmadığı ve "market"
   hissi verdiği için ana renk yapılmadı; yalnızca koyu zeminlerde
   canlandırma amaçlı kullanılır.

   Tipografi: tek aile (Manrope). Logo küçük harf, kalın ve
   geometrik olduğu için başlıklar da aynı dili konuşuyor.

   Yeşil AZ kullanılır: logo, birincil buton, küçük vurgular.
   Sayfayı fotoğraflar ve boşluk taşır — renk değil.
   ============================================================ */

:root {
  /* Marka */
  --brand:       #2E7D32;  /* logo yeşili — beyaz üstünde 5.1:1 */
  --brand-dark:  #245C27;  /* üzerine gelince */
  --brand-tint:  #EEF5EE;  /* çok açık yeşil dolgu */
  --brand-lime:  #62C42E;  /* tabela yeşili — YALNIZCA koyu zeminde */

  /* Nötrler */
  --ink:         #15191A;  /* başlıklar, koyu bölümler */
  --ink-2:       #4A534E;  /* gövde metni */
  --muted:       #838B86;  /* ikincil metin */
  --line:        #E7EAE8;  /* çizgiler */
  --bg:          #FFFFFF;
  --bg-2:        #F7F9F7;  /* ara bölüm zemini */

  --shadow-sm: 0 1px 2px rgba(21,25,26,.04), 0 2px 8px rgba(21,25,26,.04);
  --shadow-md: 0 4px 12px rgba(21,25,26,.06), 0 12px 32px rgba(21,25,26,.08);
  --shadow-lg: 0 24px 64px rgba(21,25,26,.14);

  --font: "Manrope", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --serif: var(--font);   /* eski referanslar için takma ad */
  --sans:  var(--font);

  --wrap:   1200px;
  --gutter: clamp(20px, 5vw, 44px);
  --radius: 12px;
  --radius-sm: 8px;

  --ease: cubic-bezier(.22, .61, .36, 1);
  color-scheme: light;
}

/* ---------------------------------------------------------- temel */

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

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important; animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 16.5px;
  line-height: 1.65;
  font-weight: 400;
  color: var(--ink-2);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img, video { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }

h1, h2, h3, h4 {
  color: var(--ink);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -.032em;
  margin: 0 0 .5em;
  text-wrap: balance;
}
h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.7rem, 3.2vw, 2.5rem); }
h3 { font-size: clamp(1.1rem, 1.6vw, 1.3rem); letter-spacing: -.022em; }
p  { margin: 0 0 1.1em; text-wrap: pretty; }
p:last-child { margin-bottom: 0; }

::selection { background: var(--brand); color: #fff; }

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

.skip {
  position: absolute; left: -9999px; top: 0; z-index: 200;
  background: var(--ink); color: #fff; padding: 12px 20px; border-radius: 0 0 8px 0;
}
.skip:focus { left: 0; top: 0; }

/* Görsel yokken yer tutar — sayfa zıplamasın */
.img-ph {
  display: block; width: 100%; aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--bg-2), #e9eee9);
}

/* ---------------------------------------------------------- düzen */

.wrap { max-width: var(--wrap); margin-inline: auto; padding-inline: var(--gutter); }

section { padding-block: clamp(60px, 8vw, 112px); }
section.tight { padding-block: clamp(44px, 5vw, 68px); }
.bg-cream2 { background: var(--bg-2); }
.bg-white  { background: var(--bg); }
.bg-ink    { background: var(--ink); color: #a8b0aa; }
.bg-ink h2, .bg-ink h3 { color: #fff; }

.sec-head { max-width: 620px; margin-bottom: clamp(34px, 4vw, 54px); }
.sec-head.center { margin-inline: auto; text-align: center; }
.sec-head p { color: var(--muted); font-size: 1.02rem; margin-bottom: 0; }

/* Bölüm etiketi — çizgi yerine sade yeşil nokta */
.eyebrow {
  display: inline-flex; align-items: center; gap: .5em;
  font-size: .73rem; font-weight: 700; letter-spacing: .13em;
  text-transform: uppercase; color: var(--brand);
  margin-bottom: 1em;
}
.eyebrow::before {
  content: ""; width: 6px; height: 6px; border-radius: 50%;
  background: currentColor; flex: none;
}
.sec-head.center .eyebrow { justify-content: center; }
.bg-ink .eyebrow, .hero .eyebrow, .cta-band .eyebrow { color: var(--brand-lime); }

/* ---------------------------------------------------------- butonlar */

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5em;
  padding: .88em 1.6em;
  font-size: .92rem; font-weight: 700; letter-spacing: -.01em;
  border: 1.5px solid transparent; border-radius: var(--radius-sm);
  transition: background .2s var(--ease), color .2s var(--ease),
              border-color .2s var(--ease), transform .12s var(--ease),
              box-shadow .2s var(--ease);
  white-space: nowrap; cursor: pointer;
}
.btn:active { transform: translateY(1px); }
.btn svg { width: 1.05em; height: 1.05em; fill: currentColor; flex: none; }

/* Birincil eylem — markanın yeşili, sayfada az sayıda */
.btn-brand { background: var(--brand); color: #fff; border-color: var(--brand); }
.btn-brand:hover { background: var(--brand-dark); border-color: var(--brand-dark);
                   box-shadow: 0 6px 18px rgba(46,125,50,.28); }

.btn-primary { background: var(--ink); color: #fff; border-color: var(--ink); }
.btn-primary:hover { background: var(--brand); border-color: var(--brand); }

.btn-ghost { border-color: var(--line); color: var(--ink); background: #fff; }
.btn-ghost:hover { border-color: var(--ink); background: var(--ink); color: #fff; }

.btn-light { border-color: rgba(255,255,255,.4); color: #fff; backdrop-filter: blur(4px); }
.btn-light:hover { background: #fff; color: var(--ink); border-color: #fff; }

.link-more {
  display: inline-flex; align-items: center; gap: .35em;
  font-weight: 700; font-size: .88rem; color: var(--brand);
  transition: gap .2s var(--ease);
}
.link-more::after { content: "→"; transition: transform .2s var(--ease); }
.link-more:hover { gap: .55em; }

/* ---------------------------------------------------------- üst bar + menü */

.topbar {
  background: var(--ink); color: #8d958f;
  font-size: .78rem; letter-spacing: .01em;
}
.topbar .wrap { display: flex; justify-content: space-between; align-items: center;
                gap: 20px; min-height: 38px; }
.topbar a { color: #ccd2ce; transition: color .2s; }
.topbar a:hover { color: var(--brand-lime); }
.topbar .tb-right { display: flex; gap: 20px; align-items: center; }
@media (max-width: 780px) {
  .topbar .tb-left { display: none; }
  .topbar .wrap { justify-content: center; }
}

.site-head {
  position: sticky; top: 0; z-index: 60;
  background: rgba(255,255,255,.88);
  backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s, box-shadow .3s;
}
.site-head.scrolled { border-bottom-color: var(--line); box-shadow: 0 1px 20px rgba(21,25,26,.05); }
.site-head .wrap { display: flex; align-items: center; justify-content: space-between;
                   gap: 22px; min-height: 74px; }

/* Logo — yüklenen görsel (varsa) + her zaman "elfida perde" yazısı */
.logo { display: flex; align-items: center; gap: .5em; flex: none; }
.logo-img { height: 40px; width: auto; object-fit: contain; flex: none; }
.logo-txt { font-size: 1.4rem; font-weight: 800; letter-spacing: -.045em;
            line-height: 1; white-space: nowrap; }
.logo-txt b { color: var(--brand); font-weight: 800; }
.logo-txt span { color: var(--ink); font-weight: 800; }
/* Canlı yeşil yalnızca KOYU zeminde (alt bilgi). Mobil menünün zemini
   beyaz olduğu için orada normal logo renkleri geçerli — ayrı kural yok. */
.site-foot .logo-txt b { color: var(--brand-lime); }
.site-foot .logo-txt span { color: #fff; }
.site-foot .logo-img { height: 40px; }

.nav { display: flex; align-items: center; gap: clamp(16px, 2vw, 30px); }
.nav a {
  position: relative; font-size: .9rem; font-weight: 600; color: var(--ink-2);
  padding-block: 8px; transition: color .2s var(--ease);
}
.nav a::after {
  content: ""; position: absolute; left: 0; bottom: 2px; height: 2px; width: 0;
  background: var(--brand); border-radius: 2px; transition: width .28s var(--ease);
}
.nav a:hover { color: var(--ink); }
.nav a[aria-current="page"] { color: var(--ink); }
.nav a:hover::after, .nav a[aria-current="page"]::after { width: 100%; }

.head-cta { display: flex; align-items: center; gap: 12px; flex: none; }
.head-phone {
  display: flex; align-items: center; gap: .45em;
  font-weight: 700; font-size: .92rem; color: var(--ink);
  transition: color .2s;
}
.head-phone:hover { color: var(--brand); }
.head-phone svg { width: 15px; height: 15px; fill: var(--brand); }

.burger { display: none; background: none; border: 0; padding: 8px; margin-right: -8px; color: var(--ink); }
.burger svg { width: 25px; height: 25px; stroke: currentColor; fill: none; stroke-width: 1.8; }

@media (max-width: 1000px) {
  .nav, .head-cta .btn { display: none; }
  .burger { display: block; }
  /* Menü açılınca geriye logo | telefon | menü kalıyor ve space-between
     bunları eşit dağıtıp telefonu ortaya atıyordu. Telefonu sağa,
     menü düğmesinin yanına sabitle. */
  .head-cta { margin-left: auto; gap: 6px; }
}

/* Dar ekran: telefon yazısı gizlenir, ikon menü düğmesiyle
   aynı boyutta yuvarlak butona döner. */
@media (max-width: 560px) {
  .site-head .wrap { gap: 6px; min-height: 64px; }
  .logo-img { height: 34px; }
  .logo-txt { font-size: 1.18rem; }
  .head-phone {
    width: 36px; height: 36px; justify-content: center;
    border-radius: 50%; background: var(--brand);
  }
  .head-phone span { display: none; }
  .head-phone svg { fill: #fff; width: 16px; height: 16px; }
  /* Menü düğmesi de 36×36 → ikisi eşit */
  .burger { padding: 6px; margin-right: -6px; }
  .burger svg { width: 24px; height: 24px; }
}

/* Mobil menü */
.mnav {
  position: fixed; inset: 0; z-index: 90;
  background: var(--bg); padding: 20px var(--gutter);
  display: flex; flex-direction: column;
  transform: translateX(100%); transition: transform .32s var(--ease);
  visibility: hidden; overflow-y: auto;
}
.mnav.open { transform: none; visibility: visible; }
.mnav-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 28px; }
.mnav-close { background: none; border: 0; padding: 8px; color: var(--ink); }
.mnav-close svg { width: 25px; height: 25px; stroke: currentColor; stroke-width: 1.8; fill: none; }
.mnav nav { display: flex; flex-direction: column; }
.mnav nav a {
  font-size: 1.32rem; font-weight: 700; letter-spacing: -.03em; color: var(--ink);
  padding: 15px 0; border-bottom: 1px solid var(--line);
}
.mnav nav a[aria-current="page"] { color: var(--brand); }
.mnav-foot { margin-top: auto; padding-top: 26px; display: grid; gap: 10px; }
body.nav-open { overflow: hidden; }

/* ---------------------------------------------------------- hero */

.hero { position: relative; min-height: clamp(500px, 78vh, 760px); display: grid; isolation: isolate; }
.hero > .hero-media { position: absolute; inset: 0; z-index: -2; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; }
/* Yazının okunması için soldan sağa yumuşak karartma */
.hero-media::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(95deg, rgba(12,16,13,.86) 0%, rgba(12,16,13,.62) 42%,
                    rgba(12,16,13,.18) 72%, rgba(12,16,13,.05) 100%);
}
.hero.no-img { background: linear-gradient(115deg, #15191A 0%, #1e2a20 55%, #2E7D32 140%); }

.hero .wrap { align-self: center; padding-block: clamp(64px, 9vw, 104px);
              display: grid; align-content: center; }
.hero-inner { max-width: 620px; color: #fff; }
.hero h1 { color: #fff; margin-bottom: .42em; letter-spacing: -.04em; }
.hero p {
  font-size: clamp(1rem, 1.4vw, 1.12rem); color: rgba(255,255,255,.82);
  max-width: 50ch; margin-bottom: 2em; line-height: 1.6;
}
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* Mobilde yazı tam genişlikte olduğu için yatay karartma yetmiyor;
   tüm görseli kaplayan dikey bir karartmaya geçilir → yazı her yerde okunur. */
@media (max-width: 700px) {
  .hero-media::after {
    background:
      linear-gradient(180deg, rgba(10,14,11,.55) 0%, rgba(10,14,11,.62) 55%, rgba(10,14,11,.82) 100%);
  }
  .hero p { color: rgba(255,255,255,.94); }
}

.hero-scroll {
  position: absolute; bottom: 24px; left: 50%; translate: -50% 0; z-index: 2;
  width: 1px; height: 42px; background: rgba(255,255,255,.22); overflow: hidden;
}
.hero-scroll::after {
  content: ""; position: absolute; inset: 0; background: var(--brand-lime);
  animation: scrollLine 2.6s var(--ease) infinite;
}
@keyframes scrollLine {
  0% { transform: translateY(-100%); } 55% { transform: translateY(0); }
  100% { transform: translateY(100%); }
}

/* ---------------------------------------------------------- güven şeridi */

.trust { border-bottom: 1px solid var(--line); background: var(--bg); }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.trust-item {
  padding: clamp(26px, 3vw, 36px) clamp(14px, 2vw, 26px);
  border-right: 1px solid var(--line);
  display: flex; gap: 14px; align-items: flex-start;
}
.trust-item:last-child { border-right: 0; }
.trust-item svg {
  width: 22px; height: 22px; stroke: var(--brand); fill: none; stroke-width: 1.7;
  flex: none; margin-top: 3px;
}
.trust-item h3 { font-size: .92rem; font-weight: 700; margin: 0 0 3px; letter-spacing: -.015em; }
.trust-item p { font-size: .83rem; color: var(--muted); margin: 0; line-height: 1.5; }
@media (max-width: 900px) {
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-item:nth-child(2n) { border-right: 0; }
  .trust-item:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
}
@media (max-width: 520px) {
  .trust-grid { grid-template-columns: 1fr; }
  .trust-item { border-right: 0; border-bottom: 1px solid var(--line); }
  .trust-item:last-child { border-bottom: 0; }
}

/* ---------------------------------------------------------- ızgaralar */

.grid { display: grid; gap: clamp(14px, 1.6vw, 22px); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 960px) { .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; } }

/* Kategori kartı — fotoğraf öne çıkar, yazı altta sade */
.cat-card {
  position: relative; display: block; overflow: hidden;
  border-radius: var(--radius); background: var(--ink);
  aspect-ratio: 3/4;
}
.cat-card img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .8s var(--ease);
}
.cat-card:hover img { transform: scale(1.05); }
.cat-card .img-ph { height: 100%; aspect-ratio: auto; }
.cat-card::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(to top, rgba(10,14,11,.88) 0%, rgba(10,14,11,.25) 48%, transparent 70%);
}
.cat-body { position: absolute; left: 0; right: 0; bottom: 0; z-index: 2;
            padding: clamp(18px, 2vw, 24px); color: #fff; }
.cat-body h3 { color: #fff; margin: 0 0 .3em; font-size: clamp(1.15rem, 1.5vw, 1.35rem); }
.cat-body p {
  font-size: .83rem; color: rgba(255,255,255,.68); margin: 0; line-height: 1.5;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.cat-body .go {
  display: inline-flex; align-items: center; gap: .35em; margin-top: .75em;
  font-size: .76rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
  color: var(--brand-lime);
  opacity: 0; transform: translateY(4px);
  transition: opacity .3s var(--ease), transform .3s var(--ease);
}
.cat-card:hover .go, .cat-card:focus-visible .go { opacity: 1; transform: none; }
@media (hover: none) { .cat-body .go { opacity: 1; transform: none; } }

/* Ürün kartı */
.p-card {
  background: var(--bg); border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; display: flex; flex-direction: column;
  transition: box-shadow .28s var(--ease), transform .28s var(--ease), border-color .28s;
}
.p-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); border-color: #dde3de; }
.p-thumb { position: relative; overflow: hidden; aspect-ratio: 4/3; background: var(--bg-2); }
.p-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease); }
.p-card:hover .p-thumb img { transform: scale(1.045); }
.p-badge {
  position: absolute; top: 10px; left: 10px; z-index: 2;
  background: rgba(255,255,255,.94); color: var(--brand);
  font-size: .66rem; font-weight: 800; letter-spacing: .04em; text-transform: uppercase;
  padding: 5px 9px; border-radius: 100px; backdrop-filter: blur(6px);
}
.p-body { padding: 18px 18px 20px; display: flex; flex-direction: column; flex: 1; }
.p-cat { font-size: .69rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
         color: var(--brand); margin-bottom: .45em; }
.p-body h3 { font-size: 1.06rem; margin: 0 0 .3em; }
.p-body p { font-size: .85rem; color: var(--muted); margin: 0 0 1em; line-height: 1.5;
            display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.p-foot { margin-top: auto; display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.p-price { font-size: 1rem; font-weight: 800; color: var(--ink); letter-spacing: -.02em; }

/* ---------------------------------------------------------- galeri */

.gal { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.gal a:first-child { grid-column: span 2; grid-row: span 2; }
.gal a {
  position: relative; overflow: hidden; border-radius: var(--radius);
  background: var(--bg-2); aspect-ratio: 1; display: block;
}
.gal img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease); }
.gal a::after {
  content: ""; position: absolute; inset: 0; background: rgba(10,14,11,.28);
  opacity: 0; transition: opacity .3s var(--ease);
}
.gal a:hover img { transform: scale(1.06); }
.gal a:hover::after { opacity: 1; }
.gal .zoom {
  position: absolute; inset: 0; z-index: 2; display: grid; place-items: center;
  opacity: 0; transition: opacity .3s var(--ease);
}
.gal .zoom svg { width: 26px; height: 26px; stroke: #fff; fill: none; stroke-width: 1.6; }
.gal a:hover .zoom { opacity: 1; }
@media (max-width: 900px) { .gal { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 560px) {
  .gal { grid-template-columns: repeat(2, 1fr); gap: 8px; }
  .gal a:first-child { grid-column: span 2; grid-row: span 1; aspect-ratio: 3/2; }
}

/* Lightbox */
.lb {
  position: fixed; inset: 0; z-index: 120; background: rgba(10,12,11,.96);
  display: grid; place-items: center; padding: clamp(16px, 4vw, 44px);
  opacity: 0; visibility: hidden; transition: opacity .28s var(--ease), visibility .28s;
}
.lb.open { opacity: 1; visibility: visible; }
.lb img { max-width: 100%; max-height: 84vh; object-fit: contain; border-radius: 6px; }
.lb-cap { color: rgba(255,255,255,.7); text-align: center; margin-top: 14px; font-size: .86rem; }
.lb-btn {
  position: absolute; background: rgba(255,255,255,.1); border: 0; color: #fff;
  width: 46px; height: 46px; border-radius: 50%; display: grid; place-items: center;
  transition: background .2s;
}
.lb-btn:hover { background: rgba(255,255,255,.22); }
.lb-btn svg { width: 20px; height: 20px; stroke: #fff; fill: none; stroke-width: 2; }
.lb-close { top: 18px; right: 18px; }
.lb-prev { left: 18px; top: 50%; translate: 0 -50%; }
.lb-next { right: 18px; top: 50%; translate: 0 -50%; }
@media (max-width: 560px) {
  .lb-prev { left: 8px; } .lb-next { right: 8px; }
  .lb-btn { width: 38px; height: 38px; }
}

/* ---------------------------------------------------------- video */

.vid-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(12px, 1.6vw, 20px); }
@media (max-width: 900px) { .vid-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .vid-grid { grid-template-columns: 1fr; } }

.vid {
  position: relative; aspect-ratio: 16/9; overflow: hidden; border-radius: var(--radius);
  background: #10130f; cursor: pointer; border: 0; padding: 0; width: 100%; display: block;
}
.vid img, .vid video { width: 100%; height: 100%; object-fit: cover; }
.vid::after {
  content: ""; position: absolute; inset: 0; background: rgba(10,14,11,.3);
  transition: background .3s var(--ease); pointer-events: none;
}
.vid:hover::after { background: rgba(10,14,11,.14); }
.vid-play {
  position: absolute; top: 50%; left: 50%; translate: -50% -50%; z-index: 2;
  width: 60px; height: 60px; border-radius: 50%;
  background: rgba(255,255,255,.95); display: grid; place-items: center;
  transition: transform .3s var(--ease), background .3s; pointer-events: none;
}
.vid:hover .vid-play { transform: scale(1.09); background: var(--brand); }
.vid-play svg { width: 18px; height: 18px; fill: var(--ink); margin-left: 3px; transition: fill .3s; }
.vid:hover .vid-play svg { fill: #fff; }
.vid-title {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 2; padding: 14px 16px;
  background: linear-gradient(to top, rgba(10,14,11,.86), transparent);
  color: #fff; font-size: .88rem; font-weight: 700; text-align: left;
  letter-spacing: -.015em; pointer-events: none;
}
.vid.playing::after, .vid.playing .vid-play, .vid.playing .vid-title { display: none; }
.vid iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }

/* ---------------------------------------------------------- hakkımızda */

.about-split { display: grid; grid-template-columns: 1fr 1fr;
               gap: clamp(30px, 4.5vw, 68px); align-items: center; }
@media (max-width: 880px) { .about-split { grid-template-columns: 1fr; } }
.about-media img { border-radius: var(--radius); aspect-ratio: 4/5; object-fit: cover; width: 100%; }
.about-media .img-ph { aspect-ratio: 4/5; border-radius: var(--radius); }
.about-body h2 { margin-bottom: .5em; }
.about-body p { color: var(--ink-2); }

.stats { display: flex; gap: clamp(22px, 3.5vw, 44px); margin-top: 32px; flex-wrap: wrap; }
.stat b {
  display: block; font-size: clamp(1.8rem, 2.8vw, 2.3rem);
  color: var(--brand); font-weight: 800; line-height: 1; letter-spacing: -.04em;
}
.stat span { font-size: .79rem; color: var(--muted); }

/* ---------------------------------------------------------- yorumlar */

.t-card {
  background: var(--bg); border: 1px solid var(--line); border-radius: var(--radius);
  padding: clamp(22px, 2.6vw, 30px); display: flex; flex-direction: column;
}
.t-stars { display: flex; gap: 2px; margin-bottom: 12px; }
.t-stars svg { width: 14px; height: 14px; fill: #E8B33A; }
.t-card p { font-size: .93rem; color: var(--ink-2); margin-bottom: 1.3em; line-height: 1.6; }
.t-who { margin-top: auto; display: flex; align-items: center; gap: 11px; }
.t-ava {
  width: 38px; height: 38px; border-radius: 50%; flex: none;
  background: var(--brand-tint); display: grid; place-items: center;
  font-weight: 800; color: var(--brand); font-size: .92rem;
}
.t-who b { display: block; font-size: .88rem; color: var(--ink); font-weight: 700; }
.t-who span { font-size: .76rem; color: var(--muted); }

/* ---------------------------------------------------------- sık sorulanlar */

.faq { max-width: 820px; margin-inline: auto; display: grid; gap: 10px; }
.faq-item {
  border: 1px solid var(--line); border-radius: var(--radius);
  background: var(--bg); overflow: hidden;
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
}
.faq-item[open] { border-color: #d8e2d9; box-shadow: var(--shadow-sm); }
.faq-item summary {
  cursor: pointer; list-style: none; padding: 17px 52px 17px 20px;
  font-weight: 700; font-size: .97rem; color: var(--ink);
  letter-spacing: -.015em; position: relative;
  transition: color .2s var(--ease);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: var(--brand); }
/* Artı → çarpı dönüşen işaret */
.faq-item summary::after,
.faq-item summary::before {
  content: ""; position: absolute; right: 20px; top: 50%;
  width: 13px; height: 2px; border-radius: 2px; background: var(--brand);
  transition: transform .28s var(--ease);
}
.faq-item summary::before { transform: translateY(-50%); }
.faq-item summary::after  { transform: translateY(-50%) rotate(90deg); }
.faq-item[open] summary::after { transform: translateY(-50%) rotate(0); }
.faq-a { padding: 0 20px 18px; }
.faq-a p { font-size: .92rem; color: var(--ink-2); margin: 0; line-height: 1.65; }
@media (max-width: 560px) {
  .faq-item summary { padding: 15px 46px 15px 16px; font-size: .92rem; }
  .faq-a { padding: 0 16px 16px; }
}

/* ---------------------------------------------------------- çağrı bandı */

.cta-band { position: relative; overflow: hidden; text-align: center; }
.cta-band .wrap { position: relative; z-index: 2; max-width: 680px; }
.cta-band h2 { color: #fff; }
.cta-band p { color: rgba(255,255,255,.66); font-size: 1.02rem; margin-bottom: 1.9em; }
.cta-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ---------------------------------------------------------- iletişim */

.contact-split { display: grid; grid-template-columns: 1fr 1.1fr;
                 gap: clamp(30px, 4vw, 56px); align-items: start; }
@media (max-width: 880px) { .contact-split { grid-template-columns: 1fr; } }

.info-list { display: grid; gap: 20px; margin: 26px 0 0; padding: 0; list-style: none; }
.info-list li { display: flex; gap: 14px; align-items: flex-start; }
.info-list svg { width: 18px; height: 18px; stroke: var(--brand); fill: none;
                 stroke-width: 1.7; flex: none; margin-top: 4px; }
.info-list b { display: block; font-size: .72rem; letter-spacing: .1em; text-transform: uppercase;
               color: var(--muted); font-weight: 700; margin-bottom: 2px; }
.info-list a, .info-list span { color: var(--ink); font-size: .97rem; font-weight: 500; }
.info-list a:hover { color: var(--brand); }

/* Form kapalıyken sağ sütunu dolduran mağaza görseli */
.contact-media img, .contact-media .img-ph {
  border-radius: var(--radius); aspect-ratio: 4/3; object-fit: cover;
  width: 100%; border: 1px solid var(--line);
}

.form-card {
  background: var(--bg); border: 1px solid var(--line);
  border-radius: var(--radius); padding: clamp(22px, 2.8vw, 34px);
  box-shadow: var(--shadow-sm);
}
.field { margin-bottom: 15px; }
.field label { display: block; font-size: .8rem; font-weight: 700; color: var(--ink); margin-bottom: 6px; }
.field input, .field textarea, .field select {
  width: 100%; padding: 11px 13px; font: inherit; font-size: .93rem;
  border: 1px solid var(--line); border-radius: var(--radius-sm);
  background: var(--bg-2); color: var(--ink);
  transition: border-color .2s, background .2s, box-shadow .2s;
}
.field textarea { resize: vertical; min-height: 112px; }
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none; border-color: var(--brand); background: #fff;
  box-shadow: 0 0 0 3px rgba(46,125,50,.1);
}
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 13px; }
@media (max-width: 480px) { .field-row { grid-template-columns: 1fr; } }
.form-note { font-size: .77rem; color: var(--muted); margin-top: 12px; }

.alert { padding: 12px 15px; border-radius: var(--radius-sm); font-size: .89rem; margin-bottom: 18px; }
.alert-ok  { background: var(--brand-tint); border-left: 3px solid var(--brand); color: #1d5220; }
.alert-err { background: #FDECEA; border-left: 3px solid #C0392B; color: #8E2B20; }

.map { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line);
       background: var(--bg-2); aspect-ratio: 16/7; }
.map iframe { width: 100%; height: 100%; border: 0; display: block; }

/* ---------------------------------------------------------- konum bölümü
   Harita tıklanana kadar yüklenmez (bkz. includes/map.php). */

.mapx {
  display: grid; grid-template-columns: 1.5fr 1fr;
  border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; background: var(--bg); box-shadow: var(--shadow-sm);
}
@media (max-width: 860px) { .mapx { grid-template-columns: 1fr; } }

.mapx-frame {
  position: relative; min-height: 350px; background: var(--bg-2);
  background-image:
    linear-gradient(90deg, rgba(46,125,50,.07) 2px, transparent 2px),
    linear-gradient(rgba(46,125,50,.07) 2px, transparent 2px),
    linear-gradient(90deg, rgba(46,125,50,.04) 1px, transparent 1px),
    linear-gradient(rgba(46,125,50,.04) 1px, transparent 1px);
  background-size: 116px 116px, 116px 116px, 24px 24px, 24px 24px;
}
.mapx-compact .mapx-frame { min-height: 300px; }
.mapx-frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }

.mapx-load {
  position: absolute; inset: 0; width: 100%; border: 0; background: none;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 5px; cursor: pointer; color: var(--ink); padding: 20px;
  transition: background .2s var(--ease);
}
.mapx-load:hover { background: rgba(46,125,50,.05); }
.mapx-load b { font-size: .93rem; font-weight: 700; }
.mapx-note { font-size: .77rem; color: var(--muted); }
.mapx-pin {
  width: 50px; height: 50px; border-radius: 50%; display: grid; place-items: center;
  background: var(--brand); color: #fff; margin-bottom: 6px;
  box-shadow: 0 8px 22px rgba(46,125,50,.32);
  transition: transform .25s var(--ease);
}
.mapx-load:hover .mapx-pin { transform: translateY(-3px) scale(1.06); }
.mapx-pin svg { width: 22px; height: 22px; }

.mapx-side { padding: clamp(24px, 3vw, 34px); display: flex; flex-direction: column; }
.mapx-side h3 { font-size: 1.28rem; margin-bottom: .4em; }
.mapx-side > p { color: var(--muted); font-size: .91rem; margin-bottom: 1.1em; }
.mapx-list { list-style: none; margin: 0 0 20px; padding: 0; display: grid; gap: 10px; }
.mapx-list li { display: flex; gap: 10px; align-items: center; font-size: .89rem; }
.mapx-list svg { width: 16px; height: 16px; color: var(--brand); flex: none; }
.mapx-list a:hover { color: var(--brand); }
.mapx-acts { margin-top: auto; display: flex; gap: 10px; flex-wrap: wrap; }
.mapx-acts .btn { flex: 1; min-width: 138px; }

/* ---------------------------------------------------------- alt bilgi */

.site-foot { background: var(--ink); color: #8d958f; padding-block: clamp(48px, 6vw, 72px) 0; }
.foot-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: clamp(26px, 3.5vw, 52px); }
@media (max-width: 940px) { .foot-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .foot-grid { grid-template-columns: 1fr; } }
.site-foot h4 {
  font-size: .74rem; font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase; color: #fff; margin: 0 0 16px;
}
.site-foot p { font-size: .87rem; line-height: 1.65; }
.foot-links { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.foot-links a { font-size: .87rem; transition: color .2s, padding-left .2s; }
.foot-links a:hover { color: var(--brand-lime); padding-left: 4px; }
.foot-contact { display: grid; gap: 11px; font-size: .87rem; }
.foot-contact a:hover { color: var(--brand-lime); }
.socials { display: flex; gap: 9px; margin-top: 18px; }
.socials a {
  width: 36px; height: 36px; border: 1px solid rgba(255,255,255,.14); border-radius: 50%;
  display: grid; place-items: center; transition: background .25s, border-color .25s, transform .25s;
}
.socials a:hover { background: var(--brand); border-color: var(--brand); transform: translateY(-2px); }
.socials svg { width: 15px; height: 15px; fill: #fff; }
.foot-bot {
  margin-top: clamp(34px, 4vw, 52px); border-top: 1px solid rgba(255,255,255,.08);
  padding-block: 20px; display: flex; justify-content: space-between; gap: 14px;
  flex-wrap: wrap; font-size: .79rem; color: #6b736d;
}
.foot-bot a:hover { color: var(--brand-lime); }

/* ---------------------------------------------------------- WhatsApp */

.wa-fab {
  position: fixed; right: 18px; bottom: 18px; z-index: 70;
  width: 52px; height: 52px; border-radius: 50%;
  background: #25D366; display: grid; place-items: center;
  box-shadow: 0 6px 20px rgba(37,211,102,.4);
  transition: transform .25s var(--ease), box-shadow .25s;
}
.wa-fab:hover { transform: scale(1.07); box-shadow: 0 8px 28px rgba(37,211,102,.52); }
.wa-fab svg { width: 27px; height: 27px; fill: #fff; }

/* ---------------------------------------------------------- iç sayfalar */

.page-head { background: var(--bg-2); border-bottom: 1px solid var(--line);
             padding-block: clamp(38px, 4.5vw, 62px); }
.page-head h1 { margin-bottom: .25em; font-size: clamp(1.9rem, 3.6vw, 2.8rem); }
.page-head p { color: var(--muted); max-width: 58ch; margin: 0; }
.crumbs { font-size: .79rem; color: var(--muted); margin-bottom: 1em; }
.crumbs a:hover { color: var(--brand); }
.crumbs span { margin-inline: 6px; opacity: .45; }

.prose { max-width: 70ch; }
.prose h2 { margin-top: 1.6em; }
.prose h3 { margin-top: 1.4em; }
.prose ul, .prose ol { padding-left: 1.2em; margin-bottom: 1.2em; }
.prose li { margin-bottom: .4em; }
.prose a { color: var(--brand); font-weight: 600; }
.prose a:hover { text-decoration: underline; }
.prose img { border-radius: var(--radius); margin-block: 1.6em; }

/* Filtre çipleri */
.chips { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 32px; }
.chip {
  padding: 8px 15px; border: 1px solid var(--line); border-radius: 100px;
  font-size: .83rem; font-weight: 600; color: var(--ink-2); background: var(--bg);
  transition: all .2s var(--ease);
}
.chip:hover { border-color: var(--brand); color: var(--brand); }
.chip[aria-current="true"] { background: var(--brand); border-color: var(--brand); color: #fff; }

/* Ürün detay */
.pd-split { display: grid; grid-template-columns: 1.1fr 1fr; gap: clamp(26px, 3.5vw, 54px); align-items: start; }
@media (max-width: 880px) { .pd-split { grid-template-columns: 1fr; } }
.pd-main { border-radius: var(--radius); overflow: hidden; background: var(--bg-2);
           border: 1px solid var(--line); aspect-ratio: 4/3; }
.pd-main img { width: 100%; height: 100%; object-fit: cover; }
.pd-thumbs { display: grid; grid-template-columns: repeat(5, 1fr); gap: 8px; margin-top: 8px; }
.pd-thumbs button {
  border: 1.5px solid var(--line); border-radius: var(--radius-sm); overflow: hidden;
  background: var(--bg-2); padding: 0; aspect-ratio: 1;
  transition: border-color .2s, opacity .2s; opacity: .7;
}
.pd-thumbs button:hover { opacity: 1; }
.pd-thumbs button[aria-current="true"] { border-color: var(--brand); opacity: 1; }
.pd-thumbs img { width: 100%; height: 100%; object-fit: cover; }
.pd-info .p-price { font-size: 1.5rem; }
.pd-actions { display: flex; gap: 10px; flex-wrap: wrap; margin: 24px 0; }
.pd-meta { border-top: 1px solid var(--line); padding-top: 20px; display: grid; gap: 11px; font-size: .87rem; }
.pd-meta div { display: flex; gap: 10px; }
.pd-meta b { color: var(--ink); min-width: 104px; font-weight: 700; }

/* Boş durum */
.empty {
  text-align: center; padding: clamp(44px, 6vw, 80px) 20px;
  border: 1px dashed var(--line); border-radius: var(--radius); background: var(--bg-2);
}
.empty svg { width: 40px; height: 40px; stroke: #cfd6d1; fill: none; stroke-width: 1.4; margin-bottom: 14px; }
.empty h3 { color: var(--ink); margin-bottom: .3em; }
.empty p { color: var(--muted); font-size: .9rem; margin: 0; }

/* Sayfalama */
.pager { display: flex; gap: 6px; justify-content: center; margin-top: 44px; flex-wrap: wrap; }
.pager a, .pager span {
  min-width: 40px; height: 40px; padding-inline: 12px; display: grid; place-items: center;
  border: 1px solid var(--line); border-radius: var(--radius-sm);
  font-size: .87rem; font-weight: 600; background: var(--bg); transition: all .2s;
}
.pager a:hover { border-color: var(--brand); color: var(--brand); }
.pager [aria-current="page"] { background: var(--brand); border-color: var(--brand); color: #fff; }

/* ---------------------------------------------------------- giriş animasyonu */

.reveal { opacity: 0; transform: translateY(14px); }
.reveal.in { opacity: 1; transform: none;
             transition: opacity .6s var(--ease), transform .6s var(--ease); }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; } }

@media print {
  .topbar, .site-head, .wa-fab, .hero-scroll, .site-foot, .mnav { display: none !important; }
  body { background: #fff; color: #000; font-size: 12pt; }
}
