/* ============================================================
   EFE FRESH — MAIN.CSS
   Tüm sayfalarda ortak kullanılan stiller.
   Sayfa özelinde ek CSS gerekiyorsa ilgili sayfanın kendi
   <style> bloğunda ya da ayrı bir dosyada tanımlanır.
   ============================================================ */

/* ── ROOT & THEME ── */
:root {
  --gold:   #D4873A;
  --gold-l: #F0A855;
  --gold-p: #FDE8C8;
  --cream:  #FAF5EC;
  --ink:    #0F0B07;
  --ink2:   #1A1410;
  --ink3:   #2C2318;
  --wg:     #6B5E50;
  --wg2:    #9E8E7E;
  --green:  #3A7D44;
  --red:    #C0392B;
  --sp:     .4s;
  --ease:   cubic-bezier(.25,.46,.45,.94);
  --nav-h:  72px;
}

/* ── RESET ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Outfit', sans-serif;
  background: var(--ink);
  color: var(--cream);
  overflow-x: hidden;
  cursor: none;
  line-height: 1.6;
}
img { display: block; max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; }

/* ── CURSOR ── */
.cursor {
  width: 10px; height: 10px;
  background: var(--gold);
  border-radius: 50%;
  position: fixed; top: 0; left: 0;
  pointer-events: none; z-index: 99999;
  margin-left: -5px; margin-top: -5px;
  transition: width .2s, height .2s, background .2s;
  will-change: left, top;
}
.cursor-ring {
  width: 36px; height: 36px;
  border: 1.5px solid rgba(212,135,58,.45);
  border-radius: 50%;
  position: fixed; top: 0; left: 0;
  pointer-events: none; z-index: 99998;
  margin-left: -18px; margin-top: -18px;
  transition: left .16s var(--ease), top .16s var(--ease), width .2s, height .2s;
  will-change: left, top;
}
@media (hover: none), (pointer: coarse) { .cursor, .cursor-ring { display: none !important; } body { cursor: auto !important; } }

/* ── NAVBAR ── */
.navbar {
  position: fixed; top: 0; left: 0; right: 0;
  height: var(--nav-h);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 5%; z-index: 500;
  background: rgba(15,11,7,.93);
  backdrop-filter: blur(24px);
  border-bottom: 1px solid rgba(212,135,58,.12);
  transition: padding var(--sp) var(--ease), background var(--sp);
}
.navbar.scrolled { padding: 0 5%; background: rgba(15,11,7,.97); }
.nav-brand {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.55rem; font-weight: 700;
  color: var(--gold);
  letter-spacing: 4px; text-transform: uppercase;
  text-decoration: none;
}
.nav-brand span { color: var(--cream); font-weight: 300; }
.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-link {
  color: rgba(250,245,236,.5);
  font-size: .7rem; letter-spacing: 2.5px; text-transform: uppercase;
  font-weight: 500; padding: 8px 14px;
  position: relative; transition: color .3s;
  text-decoration: none;
}
.nav-link::after {
  content: ''; position: absolute;
  bottom: 4px; left: 50%; transform: translateX(-50%);
  width: 0; height: 1px; background: var(--gold);
  transition: width .3s var(--ease);
}
.nav-link:hover, .nav-link.active { color: var(--cream); }
.nav-link:hover::after, .nav-link.active::after { width: 55%; }
.nav-ctrls { display: flex; gap: 8px; align-items: center; }
.cbtn {
  background: rgba(212,135,58,.1);
  border: 1px solid rgba(212,135,58,.2);
  border-radius: 5px; color: var(--gold-p);
  font-size: .68rem; font-weight: 700; letter-spacing: 1.5px;
  padding: 7px 13px; cursor: pointer;
  transition: all .25s; font-family: 'Outfit', sans-serif;
}
.cbtn:hover { background: rgba(212,135,58,.2); border-color: var(--gold); color: var(--gold); }
.cbtn.on { background: var(--gold); border-color: var(--gold); color: var(--ink); }
.tbtn {
  background: rgba(212,135,58,.1);
  border: 1px solid rgba(212,135,58,.2);
  border-radius: 5px; width: 38px; height: 34px;
  cursor: pointer; font-size: .95rem;
  display: flex; align-items: center; justify-content: center;
  transition: all .25s;
}
.tbtn:hover { background: rgba(212,135,58,.2); border-color: var(--gold); }
.hbtn {
  display: none; background: none;
  border: 1px solid rgba(212,135,58,.3);
  border-radius: 5px; padding: 8px;
  cursor: pointer; flex-direction: column; gap: 4px;
}
.hbtn span { display: block; width: 20px; height: 1.5px; background: var(--gold); transition: all .3s; }
.hbtn.active span:nth-child(1) { transform: translateY(5.5px) rotate(45deg); }
.hbtn.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hbtn.active span:nth-child(3) { transform: translateY(-5.5px) rotate(-45deg); }

/* ── MOBILE NAV ── */
.mnav {
  position: fixed; top: 0; right: 0; bottom: 0; z-index: 1001;
  width: min(320px, 85vw);
  background: rgba(10,6,2,.98); backdrop-filter: blur(28px);
  display: flex; flex-direction: column;
  padding: 90px 36px 48px; gap: 8px;
  transform: translateX(100%);
  transition: transform .38s cubic-bezier(.25,.46,.45,.94);
  border-left: 1px solid rgba(212,135,58,.18);
  box-shadow: -12px 0 48px rgba(0,0,0,.6);
  overflow-y: auto;
}
.mnav.open { transform: translateX(0); }
.mnav .nav-link { font-size: 1rem; letter-spacing: 3px; padding: 14px 0; border-bottom: 1px solid rgba(212,135,58,.08); width: 100%; text-align: left; }
.mnav .nav-link:last-of-type { border-bottom: none; }
.mnav-overlay { position: fixed; inset: 0; z-index: 1000; background: rgba(0,0,0,.55); backdrop-filter: blur(2px); opacity: 0; pointer-events: none; transition: opacity .35s; }
.mnav-overlay.open { opacity: 1; pointer-events: all; }
.mnav-close { position: absolute; top: 22px; right: 22px; background: none; border: 1px solid rgba(212,135,58,.25); border-radius: 6px; color: var(--gold); width: 36px; height: 36px; display: flex; align-items: center; justify-content: center; font-size: 1.1rem; cursor: pointer; transition: all .2s; }
.mnav-close:hover { background: rgba(212,135,58,.12); border-color: var(--gold); }
@media (max-width: 900px) { .hbtn { display: flex; } .nav-links { display: none; } }

/* ── PAGE HEADER (iç sayfalar) ── */
.phdr {
  padding: calc(var(--nav-h) + 80px) 5% 80px;
  position: relative; overflow: hidden;
  background: var(--ink2);
}
.phdr::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 0, rgba(212,135,58,.12) 0, transparent 70%);
}
.phdr-eyebrow { display: flex; align-items: center; gap: 10px; margin-bottom: 20px; }
.peline { display: block; width: 40px; height: 1px; background: var(--gold); }
.petxt { font-size: .72rem; letter-spacing: .2em; text-transform: uppercase; color: var(--gold); }
.phdr h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  font-weight: 300; line-height: 1.1; margin-bottom: 18px;
}
.phdr h1 em { font-style: italic; color: var(--gold); }
.phdr p { color: var(--wg2); max-width: 520px; font-size: 1.05rem; line-height: 1.7; }

/* ── SECTIONS ── */
.sec { padding: 90px 5%; }
.sec-alt { background: var(--ink2); }
.stag { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.tline { display: block; width: 30px; height: 1px; background: var(--gold); }
.ttxt { font-size: .63rem; letter-spacing: 4px; text-transform: uppercase; color: var(--gold); font-weight: 600; }
.stitle {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 300; color: var(--cream); line-height: 1.08;
}
.stitle em { font-style: italic; color: var(--gold); }
.sbody { font-size: 1rem; color: var(--wg2); line-height: 1.87; font-weight: 300; max-width: 560px; }

/* ── PRODUCT CARD (ortak) ── */
.pimgw { height: 250px; overflow: hidden; position: relative; }
.pimgw img {
  width: 100%; height: 100%; object-fit: cover;
  filter: sepia(12%) saturate(1.1);
  transition: transform .7s var(--ease), filter .5s;
}
.pcard:hover .pimgw img { transform: scale(1.09); filter: sepia(4%) saturate(1.2); }
.pov { position: absolute; inset: 0; background: linear-gradient(to top, rgba(10,6,2,.8) 0%, transparent 55%); }
.pbody { padding: 20px 22px 24px; }
.pname { font-family: 'Cormorant Garamond', serif; font-size: 1.18rem; font-weight: 600; color: var(--cream); margin-bottom: 5px; }
.pdesc { font-size: .74rem; color: var(--wg2); margin-bottom: 16px; font-weight: 300; }
.pfoot { display: flex; align-items: center; justify-content: space-between; }
.pprice { font-size: 1.05rem; font-weight: 700; color: var(--green); }
.pprice small { font-size: .66rem; font-weight: 400; color: var(--wg); }
.badd {
  background: transparent; border: 1px solid rgba(212,135,58,.35);
  color: var(--gold); font-size: .6rem; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase; padding: 8px 16px;
  cursor: pointer; transition: all .3s; font-family: 'Outfit', sans-serif;
}
.badd:hover, .badd.added { background: var(--gold); color: var(--ink); border-color: var(--gold); }
.badd.done { background: var(--green); border-color: var(--green); color: #fff; }

/* ── BUTTONS ── */
.btn-g {
  background: var(--gold); color: var(--ink); border: none;
  padding: 17px 44px; border-radius: 2px;
  font-family: 'Outfit', sans-serif; font-size: .74rem;
  font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase;
  text-decoration: none; display: inline-flex; align-items: center; gap: 10px;
  cursor: pointer; transition: all .35s var(--ease);
  position: relative; overflow: hidden;
}
.btn-g::before {
  content: ''; position: absolute; inset: 0;
  background: rgba(255,255,255,.18); transform: translateX(-110%) skewX(-18deg);
  transition: transform .5s var(--ease);
}
.btn-g:hover::before { transform: translateX(110%) skewX(-18deg); }
.btn-g:hover { background: var(--gold-l); transform: translateY(-3px); box-shadow: 0 18px 44px rgba(212,135,58,.38); color: var(--ink); }
.btn-o {
  background: transparent; color: var(--cream);
  border: 1px solid rgba(250,245,236,.22); padding: 17px 44px; border-radius: 2px;
  font-size: .74rem; font-weight: 500; letter-spacing: 2px; text-transform: uppercase;
  text-decoration: none; display: inline-flex; align-items: center; gap: 10px;
  transition: all .3s; cursor: pointer;
}
.btn-o:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-2px); }

/* ── STORY / SGRID ── */
.sgrid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.siwrap { position: relative; }
.simg { width: 100%; aspect-ratio: 3/4; object-fit: cover; filter: sepia(18%) contrast(1.05); display: block; }
.sframe { position: absolute; top: -18px; left: -18px; right: 18px; bottom: 18px; border: 1px solid rgba(212,135,58,.22); pointer-events: none; transition: transform .6s var(--ease); }
.siwrap:hover .sframe { transform: translate(5px,5px); }
.sbadge { position: absolute; bottom: -22px; right: -22px; background: var(--gold); padding: 20px 24px; text-align: center; }
.sbnum { font-family: 'Cormorant Garamond', serif; font-size: 2.4rem; font-weight: 700; color: var(--ink); display: block; line-height: 1; }
.sbtext { font-size: .62rem; letter-spacing: 2px; text-transform: uppercase; color: var(--ink2); font-weight: 600; }
.sc { padding-left: 16px; }
.slist { list-style: none; margin-top: 36px; display: flex; flex-direction: column; gap: 14px; }
.slist li { display: flex; align-items: center; gap: 14px; font-size: .84rem; color: var(--wg2); font-weight: 300; }
.slist li::before { content: ''; width: 20px; height: 1px; background: var(--gold); flex-shrink: 0; }

/* ── FOOTER ── */
footer { background: var(--ink); border-top: 1px solid rgba(212,135,58,.1); padding: 72px 5% 36px; }
.fgd { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 56px; margin-bottom: 56px; }
.fbrand {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem; font-weight: 700; color: var(--gold);
  letter-spacing: 4px; text-transform: uppercase;
  text-decoration: none; display: block; margin-bottom: 14px;
}
.fbrand span { color: var(--cream); font-weight: 300; }
.ftag { font-size: .82rem; color: var(--wg); line-height: 1.72; font-weight: 300; }
.fctitle { font-size: .58rem; letter-spacing: 3.5px; text-transform: uppercase; color: rgba(212,135,58,.6); font-weight: 700; margin-bottom: 18px; }
.flinks { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.flinks a { color: var(--wg); font-size: .84rem; font-weight: 300; transition: color .25s; text-decoration: none; }
.flinks a:hover { color: var(--gold); }
.fbot { border-top: 1px solid rgba(212,135,58,.08); padding-top: 28px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.fcopy { font-size: .7rem; color: rgba(250,245,236,.2); letter-spacing: 1px; }
.fsoc { display: flex; gap: 10px; }
.fsoc a { width: 36px; height: 36px; border: 1px solid rgba(212,135,58,.18); display: flex; align-items: center; justify-content: center; color: var(--wg); font-size: .85rem; transition: all .25s; }
.fsoc a:hover { border-color: var(--gold); color: var(--gold); background: rgba(212,135,58,.07); }

/* ── WHATSAPP ── */
.wa {
  position: fixed; bottom: 32px; right: 32px; z-index: 300;
  width: 54px; height: 54px;
  background: #25D366; color: #fff; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; text-decoration: none;
  box-shadow: 0 6px 20px rgba(37,211,102,.4); transition: transform .3s var(--ease);
}
.wa:hover { transform: scale(1.12); }

/* ── STATS (ana sayfa) ── */
.stats { background: var(--ink2); border-bottom: 1px solid rgba(212,135,58,.1); padding: 64px 5%; display: grid; grid-template-columns: repeat(4,1fr); }
.sblock { text-align: center; padding: 20px; border-right: 1px solid rgba(212,135,58,.1); }
.sblock:last-child { border-right: none; }
.snum { font-family: 'Cormorant Garamond', serif; font-size: 3.6rem; font-weight: 600; color: var(--gold); line-height: 1; display: block; margin-bottom: 8px; }
.slbl { font-size: .63rem; letter-spacing: 3px; text-transform: uppercase; color: var(--wg2); font-weight: 500; }

/* ── FEATURES ── */
.fgrid { display: grid; grid-template-columns: repeat(3,1fr); gap: 2px; }
.ftile { background: var(--ink3); padding: 52px 42px; position: relative; overflow: hidden; transition: background .4s; }
.ftile::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 2px; background: linear-gradient(90deg, transparent, var(--gold), transparent); transform: scaleX(0); transition: transform .5s var(--ease); }
.ftile:hover { background: #221A10; }
.ftile:hover::after { transform: scaleX(1); }
.fnum { font-family: 'Cormorant Garamond', serif; font-size: .72rem; font-weight: 600; letter-spacing: 3px; color: var(--gold); opacity: .45; margin-bottom: 26px; display: block; }
.ficon { font-size: 2rem; margin-bottom: 18px; display: block; }
.ftitle { font-family: 'Cormorant Garamond', serif; font-size: 1.5rem; font-weight: 600; color: var(--cream); margin-bottom: 14px; }
.fdesc { font-size: .87rem; color: var(--wg2); line-height: 1.78; font-weight: 300; }

/* ── REVIEWS ── */
.rgrid { display: grid; grid-template-columns: repeat(3,1fr); gap: 2px; }
.rcard { background: var(--ink3); padding: 44px 36px; position: relative; overflow: hidden; transition: background .3s; }
.rcard::before { content: '\201C'; font-family: 'Cormorant Garamond', serif; font-size: 9rem; line-height: 1; color: var(--gold); opacity: .06; position: absolute; top: -12px; left: 14px; pointer-events: none; }
.rcard:hover { background: #211910; }
.rstars { color: var(--gold); font-size: .78rem; letter-spacing: 3px; margin-bottom: 18px; }
.rtext { font-family: 'Cormorant Garamond', serif; font-size: 1.08rem; font-style: italic; color: rgba(250,245,236,.72); line-height: 1.7; margin-bottom: 26px; }
.rauthor { display: flex; align-items: center; gap: 14px; }
.rav { width: 44px; height: 44px; border-radius: 50%; background: linear-gradient(135deg, var(--gold), var(--gold-l)); display: flex; align-items: center; justify-content: center; font-size: 1.1rem; }
.rname { font-size: .85rem; font-weight: 600; color: var(--cream); }
.rcity { font-size: .68rem; color: var(--wg); letter-spacing: 1.5px; text-transform: uppercase; }

/* ── CTA ── */
.cta { padding: 140px 5%; background: linear-gradient(135deg, #2A1200 0%, var(--ink) 100%); text-align: center; position: relative; overflow: hidden; }
.cta::before { content: 'EFE FRESH'; font-family: 'Cormorant Garamond', serif; font-size: 18vw; font-weight: 700; color: rgba(212,135,58,.035); position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); white-space: nowrap; pointer-events: none; letter-spacing: 10px; }
.ctatitle { font-family: 'Cormorant Garamond', serif; font-size: clamp(2.6rem,6vw,5.2rem); font-weight: 300; color: var(--cream); margin-bottom: 20px; position: relative; z-index: 1; }
.ctatitle em { font-style: italic; color: var(--gold); }
.ctasub { font-size: 1rem; color: var(--wg2); margin-bottom: 52px; font-weight: 300; position: relative; z-index: 1; }

/* ── HERO (index) ── */
.hero { position: relative; height: 100vh; min-height: 680px; display: flex; align-items: center; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; background: radial-gradient(ellipse at 65% 50%, #3B1A05 0%, #1A0C03 45%, var(--ink) 100%); }
.hero-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: .22; transform: scale(1.06); animation: kb 20s ease-in-out infinite alternate; }
@keyframes kb { from { transform: scale(1.06) translate(0,0); } to { transform: scale(1.14) translate(-2%,-1%); } }
.hero-vig { position: absolute; inset: 0; background: linear-gradient(108deg, rgba(8,4,1,.96) 0%, rgba(8,4,1,.55) 52%, rgba(8,4,1,.1) 100%); }
.hero-c { position: relative; z-index: 10; padding: 0 5%; padding-top: 100px; max-width: 800px; }
.eyebrow { display: inline-flex; align-items: center; gap: 12px; margin-bottom: 32px; opacity: 0; animation: fu .9s .3s var(--ease) forwards; }
.eline { width: 40px; height: 1px; background: var(--gold); }
.etxt { font-size: .66rem; letter-spacing: 4px; text-transform: uppercase; color: var(--gold); font-weight: 600; }
.hero-title { font-family: 'Cormorant Garamond', serif; font-size: clamp(3.8rem,8.5vw,7.5rem); font-weight: 300; line-height: .97; color: var(--cream); margin-bottom: 10px; opacity: 0; animation: fu .9s .45s var(--ease) forwards; }
.hero-title em { font-style: italic; color: var(--gold); display: block; }
.hero-sub { font-size: clamp(1rem,1.8vw,1.2rem); font-weight: 300; color: rgba(250,245,236,.5); max-width: 460px; line-height: 1.8; margin-bottom: 52px; opacity: 0; animation: fu .9s .6s var(--ease) forwards; }
.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; opacity: 0; animation: fu .9s .75s var(--ease) forwards; }
.scroll-ind { position: absolute; bottom: 38px; left: 5%; z-index: 10; display: flex; align-items: center; gap: 12px; opacity: 0; animation: fi 1s 1.3s forwards; }
.sline { width: 1px; height: 55px; background: linear-gradient(to bottom, transparent, var(--gold), transparent); animation: sp 2.5s infinite; }
@keyframes sp { 0%,100% { opacity: .3; } 50% { opacity: 1; } }
.stxt { font-size: .58rem; letter-spacing: 3px; text-transform: uppercase; color: rgba(250,245,236,.35); writing-mode: vertical-rl; }

/* ── MARQUEE ── */
.mband { background: var(--gold); padding: 13px 0; overflow: hidden; }
.mtrack { display: flex; animation: ms 22s linear infinite; white-space: nowrap; }
@keyframes ms { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.mitem { display: inline-flex; align-items: center; gap: 18px; padding: 0 30px; font-size: .66rem; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: var(--ink); flex-shrink: 0; }
.mdot { width: 4px; height: 4px; background: var(--ink); border-radius: 50%; opacity: .45; }

/* ── INFO CARDS (iletişim) ── */
.info-sec { padding: 0 5%; position: relative; z-index: 5; margin-top: -32px; }
.info-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 2px; }
.info-card { background: var(--ink2); padding: 36px 28px; text-align: center; transition: background .3s; position: relative; overflow: hidden; }
.info-card::before { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 2px; background: linear-gradient(90deg, transparent, var(--gold), transparent); transform: scaleX(0); transition: transform .5s var(--ease); }
.info-card:hover { background: var(--ink3); }
.info-card:hover::before { transform: scaleX(1); }
.info-icon { width: 60px; height: 60px; background: rgba(212,135,58,.12); border: 1px solid rgba(212,135,58,.2); border-radius: 2px; display: flex; align-items: center; justify-content: center; font-size: 1.6rem; margin: 0 auto 20px; }
.info-card h5 { font-family: 'Cormorant Garamond', serif; font-size: 1.15rem; font-weight: 600; color: var(--cream); margin-bottom: 10px; }
.info-card p { color: var(--wg2); font-size: .84rem; line-height: 1.75; font-weight: 300; }

/* ── CART BUTTON (market) ── */
.cart-btn { background: var(--gold); color: var(--ink); border: none; border-radius: 4px; padding: 9px 20px; font-family: 'Outfit', sans-serif; font-size: .7rem; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; cursor: pointer; transition: all .3s; display: flex; align-items: center; gap: 8px; }
.cart-btn:hover { background: var(--gold-l); transform: translateY(-1px); }
.cart-count { background: var(--ink); color: var(--gold); border-radius: 50%; width: 20px; height: 20px; display: flex; align-items: center; justify-content: center; font-size: .65rem; font-weight: 800; }

/* ── TOAST ── */
.toast { position: fixed; top: 90px; right: 24px; z-index: 9000; background: var(--ink2); border: 1px solid rgba(212,135,58,.3); border-left: 4px solid var(--gold); border-radius: 3px; padding: 16px 22px; font-size: .82rem; color: var(--cream); display: flex; align-items: center; gap: 12px; box-shadow: 0 20px 40px rgba(0,0,0,.5); transform: translateX(120%); transition: transform .45s var(--ease); min-width: 280px; }
.toast.show { transform: translateX(0); }
.toast-icon { font-size: 1.2rem; }

/* ── MUSIC PLAYER ── */
@keyframes eqBar1 { from { height: 4px; } to { height: 14px; } }
@keyframes eqBar2 { from { height: 10px; } to { height: 4px; } }
@keyframes eqBar3 { from { height: 14px; } to { height: 6px; } }
@keyframes eqBar4 { from { height: 6px; } to { height: 16px; } }
#music-player {
  position: fixed; bottom: 28px; left: 28px; z-index: 9000;
  display: flex; align-items: center; gap: 10px;
  background: rgba(13,13,11,.92);
  border: 1px solid rgba(212,135,58,.4); border-radius: 50px;
  padding: 8px 16px 8px 8px; backdrop-filter: blur(16px);
  box-shadow: 0 8px 32px rgba(0,0,0,.5);
  cursor: pointer; user-select: none; transition: border-color .3s;
}
#music-player:hover { border-color: rgba(212,135,58,.8); }
#music-icon {
  width: 36px; height: 36px; border-radius: 50%;
  background: linear-gradient(135deg, #d4873a, #b8671f);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(212,135,58,.4); transition: transform .2s;
}
#music-player:hover #music-icon { transform: scale(1.1); }
#eq-bars { display: flex; align-items: flex-end; gap: 2px; height: 18px; margin-left: 4px; opacity: 0; transition: opacity .3s; }
#eq-bars span { width: 3px; border-radius: 2px; background: #d4873a; }

/* ── ANIMATIONS ── */
@keyframes fu { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fi { from { opacity: 0; } to { opacity: 1; } }
.rev { opacity: 0; transform: translateY(28px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.rev.vis, .rev.visible { opacity: 1; transform: translateY(0); }
.rd1 { transition-delay: .1s; } .rd2 { transition-delay: .2s; } .rd3 { transition-delay: .3s; } .rd4 { transition-delay: .4s; }

/* ── LIGHT MODE ── */
[data-theme="light"] body { background: var(--cream); color: var(--ink); cursor: auto; }
[data-theme="light"] .cursor, [data-theme="light"] .cursor-ring { display: none; }
[data-theme="light"] .navbar { background: rgba(250,245,236,.96); border-color: rgba(212,135,58,.15); }
[data-theme="light"] .nav-link { color: rgba(15,11,7,.45); }
[data-theme="light"] .nav-link:hover, [data-theme="light"] .nav-link.active { color: var(--ink); }
[data-theme="light"] .sec-alt { background: #F0E6CE; }
[data-theme="light"] .ftile, [data-theme="light"] .pcard, [data-theme="light"] .rcard, [data-theme="light"] .info-card { background: #fff; }
[data-theme="light"] .ftile:hover { background: #FDF7EE; }
[data-theme="light"] .rcard:hover, [data-theme="light"] .info-card:hover { background: #FEF9F0; }
[data-theme="light"] .ftitle, [data-theme="light"] .pname, [data-theme="light"] .rname, [data-theme="light"] .stitle, [data-theme="light"] .info-card h5 { color: var(--ink); }
[data-theme="light"] .rtext { color: rgba(15,11,7,.62); }
[data-theme="light"] .cta { background: linear-gradient(135deg, #F5E5C8 0%, var(--cream) 100%); }
[data-theme="light"] .ctatitle { color: var(--ink); }
[data-theme="light"] footer { background: #EDE0C4; border-color: rgba(212,135,58,.2); color: var(--ink); }
[data-theme="light"] .fbot { border-color: rgba(212,135,58,.15); }
[data-theme="light"] .fcopy { color: rgba(15,11,7,.25); }
[data-theme="light"] .btn-o { color: var(--ink); border-color: rgba(15,11,7,.22); }
[data-theme="light"] .btn-o:hover { border-color: var(--gold); color: var(--gold); }
[data-theme="light"] .cbtn { background: rgba(212,135,58,.08); border-color: rgba(212,135,58,.2); color: var(--ink3); }
[data-theme="light"] .cbtn.on { background: var(--gold); color: var(--ink); }
[data-theme="light"] .tbtn { background: rgba(212,135,58,.08); border-color: rgba(212,135,58,.2); }
[data-theme="light"] .phdr { background: linear-gradient(108deg,#3d1c00 0%,#5a2c00 45%,#8B3A00 100%); }
[data-theme="light"] .finput { background: rgba(212,135,58,.06); border-color: rgba(212,135,58,.2); color: var(--ink); }
[data-theme="light"] .finput:focus { background: rgba(212,135,58,.1); }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .fgrid { grid-template-columns: repeat(2,1fr); }
  .pgrid { grid-template-columns: repeat(2,1fr); }
  .fgd { grid-template-columns: 1fr 1fr; gap: 36px; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .info-grid { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 768px) {
  .navbar { padding: 0 5%; }
  .hero-title { font-size: clamp(3rem,11vw,5rem); }
  .stats { grid-template-columns: repeat(2,1fr); }
  .sblock:nth-child(2) { border-right: none; }
  .sblock:nth-child(3), .sblock:nth-child(4) { border-top: 1px solid rgba(212,135,58,.1); }
  .fgrid { grid-template-columns: 1fr; }
  .sgrid { grid-template-columns: 1fr; }
  .siwrap { order: -1; }
  .sbadge { right: 8px; bottom: -14px; }
  .rgrid { grid-template-columns: 1fr; }
  .sec { padding: 64px 5%; }
  body { cursor: auto; }
  .cursor, .cursor-ring { display: none; }
  .fgd { grid-template-columns: 1fr; gap: 28px; }
  .hero-btns { flex-direction: column; width: 100%; gap: 12px; }
  .hero-btns .btn-g, .hero-btns .btn-o { width: 100%; justify-content: center; }
  .phdr { padding: calc(var(--nav-h) + 40px) 5% 40px; }
  .info-grid { grid-template-columns: repeat(2,1fr); }
  .frow { grid-template-columns: 1fr; }
  .info-grid { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .fgd { grid-template-columns: 1fr; }
  .fbot { flex-direction: column; gap: 16px; text-align: center; }
}
@media (max-width: 480px) {
  .pgrid { grid-template-columns: 1fr; }
  .hero-btns { flex-direction: column; }
  .btn-g, .btn-o { justify-content: center; }
  .nav-brand { font-size: 1.15rem; letter-spacing: 2px; }
  .navbar { padding: 0 4%; }
  .nav-ctrls { gap: 5px; }
  .cbtn { padding: 6px 9px; font-size: .6rem; }
  .tbtn { width: 32px; height: 30px; font-size: .85rem; }
}

/* ── PERFORMANCE / REDUCED MOTION ── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
  .hero-img, .mtrack, .sline { animation: none !important; }
}
@media (hover: none), (pointer: coarse) {
  .ftile:hover, .pcard:hover, .rcard:hover, .feature-box:hover,
  .siwrap:hover .sframe, .pcard:hover .pimgw img, .card:hover { transform: none !important; }
  .mtrack { animation-duration: 40s !important; }
  .hero-img { animation: none !important; transform: scale(1.06) !important; }
  .pimgw img, .simg { filter: none !important; transition: none !important; transform: none !important; }
  .rev { transition-duration: .4s !important; }
  .info-card::before, .info-card:hover::before { display: none !important; }
}

/* Performans: will-change sadece aktif animasyon için */
.pcard, .ftile, .rcard { contain: layout style paint; }
.pgrid > *, .fgrid > *, .rgrid > * { content-visibility: auto; contain-intrinsic-size: 1px 380px; }
.pimgw img, .simg, .hero-img { background: #1A1410; }

/* Backdrop-filter yok ise fallback */
.no-backdrop .navbar, .no-backdrop .mnav, .no-backdrop .cat-bar { background: rgba(15,11,7,.97) !important; }

@media print {
  .navbar, .wa, .cursor, .cursor-ring, .mnav { display: none !important; }
}
