/* =====================================================================
   ELITE ESCAPE VILLAGE — STİL DOSYASI
   Tasarım tokenleri en üstte :root içinde tanımlıdır.
   Renk / yazı tipi değiştirmek isterseniz SADECE :root bloğunu düzenleyin.
   ===================================================================== */

:root{
  /* --- Renkler (marka logosundan türetildi) --- */
  --forest-900:#102A20;     /* en koyu yeşil — footer, gece dokusu */
  --forest-800:#163528;     /* koyu yeşil — sticky header (scroll) */
  --forest-700:#1F4D3A;     /* ana marka yeşili — kategori şeritleri, butonlar */
  --forest-600:#28614A;
  --olive-500:#93A35C;      /* logo ağacı yeşili — ikon/ayraç vurgusu */
  --olive-300:#C3CE9E;
  --parchment-50:#F6F4EC;   /* sayfa zemini — sıcak krem */
  --parchment-100:#EFEBDC;
  --ink-900:#20231F;        /* gövde metni */
  --ink-600:#5B5F55;        /* ikincil metin (EN çeviri satırı) */
  --ink-300:#9CA092;
  --ember-600:#86591C;      /* fiyat rengi — pirinç/kor vurgusu (WCAG AA için koyulaştırıldı) */
  --ember-500:#B6863C;
  --ember-100:#F1E2C4;
  --line:#DCD6C2;
  --white:#FFFFFF;

  --font-display:'Fraunces', Georgia, serif;
  --font-body:'Work Sans', 'Inter', -apple-system, sans-serif;

  --radius-sm:6px;
  --radius-md:14px;
  --radius-lg:28px;

  --shadow-sm:0 2px 10px rgba(16,42,32,.08);
  --shadow-md:0 12px 32px rgba(16,42,32,.14);

  --maxw:1180px;
}

*{box-sizing:border-box;}
html{scroll-behavior:smooth;}
@media (prefers-reduced-motion:reduce){
  html{scroll-behavior:auto;}
  *{animation-duration:.001ms !important; animation-iteration-count:1 !important; transition-duration:.001ms !important;}
}

body{
  margin:0;
  font-family:var(--font-body);
  background:var(--parchment-50);
  color:var(--ink-900);
  -webkit-font-smoothing:antialiased;
  line-height:1.5;
}

img{max-width:100%; display:block;}
a{color:inherit;}

.container{
  max-width:var(--maxw);
  margin:0 auto;
  padding:0 20px;
}

/* ===================== SKIP LINK / FOCUS ===================== */
.skip-link{
  position:absolute; left:-999px; top:auto;
  background:var(--forest-700); color:#fff; padding:10px 16px;
  border-radius:var(--radius-sm); z-index:200;
}
.skip-link:focus{ left:12px; top:12px; }

:focus-visible{
  outline:3px solid var(--ember-500);
  outline-offset:2px;
}

/* ===================== HEADER ===================== */
.site-header{
  position:sticky; top:0; z-index:100;
  background:rgba(246,244,236,.92);
  backdrop-filter:blur(10px);
  border-bottom:1px solid var(--line);
  transition:background .3s ease;
}
.site-header.is-scrolled{
  background:var(--forest-800);
  border-bottom-color:transparent;
}
.site-header.is-scrolled .brand-name,
.site-header.is-scrolled .brand-name small{ color:var(--parchment-50); }
.site-header.is-scrolled .lang-switch-btn{ border-color:rgba(255,255,255,.3); color:var(--parchment-50); }
.site-header.is-scrolled .search-toggle{ color:var(--parchment-50); }

.header-row{
  display:flex; align-items:center; justify-content:space-between;
  padding:12px 0;
  gap:16px;
}
.brand{
  display:flex; align-items:center; gap:10px;
  text-decoration:none;
}
.brand img{ height:38px; width:auto; }
.brand-name{
  font-family:var(--font-display);
  font-weight:600; font-size:1.05rem;
  color:var(--forest-800);
  letter-spacing:.02em;
  line-height:1.1;
  transition:color .3s ease;
}
.brand-name small{
  display:block;
  font-family:var(--font-body);
  font-size:.6rem;
  letter-spacing:.22em;
  font-weight:500;
  color:var(--olive-500);
  text-transform:uppercase;
  margin-top:2px;
}

.header-actions{ display:flex; align-items:center; gap:10px; }

/* ---- language switcher (flag dropdown) ---- */
.lang-switch{ position:relative; }
.lang-switch-btn{
  display:flex; align-items:center; gap:6px;
  border:1.5px solid var(--forest-700); border-radius:999px;
  background:transparent; padding:6px 10px; cursor:pointer;
  transition:.2s ease;
}
.lang-flag{ font-size:1.05rem; line-height:1; }
.lang-chevron{ width:13px; height:13px; color:var(--forest-700); transition:transform .2s ease; }
.site-header.is-scrolled .lang-chevron{ color:var(--parchment-50); }
.lang-switch.open .lang-chevron{ transform:rotate(180deg); }

.lang-dropdown{
  position:absolute; top:calc(100% + 8px); right:0; z-index:110;
  background:var(--white); border:1px solid var(--line); border-radius:var(--radius-md);
  box-shadow:var(--shadow-md); padding:6px; min-width:180px;
  display:grid; grid-template-columns:1fr; gap:2px;
  opacity:0; visibility:hidden; transform:translateY(-6px);
  transition:opacity .18s ease, transform .18s ease, visibility .18s ease;
}
.lang-switch.open .lang-dropdown{ opacity:1; visibility:visible; transform:translateY(0); }
.lang-option{
  display:flex; align-items:center; gap:10px; width:100%;
  border:0; background:transparent; padding:8px 10px; border-radius:8px;
  font-family:var(--font-body); font-size:.86rem; color:var(--ink-900);
  text-align:left; cursor:pointer; transition:background .15s ease;
}
.lang-option:hover{ background:var(--parchment-100); }
.lang-option.active{ background:var(--forest-700); color:#fff; }
.lang-option-flag{ font-size:1.05rem; line-height:1; }

[dir="rtl"] .lang-dropdown{ right:auto; left:0; }
[dir="rtl"] .lang-option{ text-align:right; }

.search-toggle, .menu-search-input{ font-family:var(--font-body); }
.search-toggle{
  background:transparent; border:1.5px solid var(--forest-700); color:var(--forest-700);
  width:38px; height:38px; border-radius:50%; cursor:pointer; display:flex; align-items:center; justify-content:center;
  transition:.2s ease;
}
.search-toggle svg{ width:17px; height:17px; }

.search-bar{
  max-height:0; overflow:hidden;
  transition:max-height .3s ease;
  border-top:1px solid transparent;
}
.search-bar.open{ max-height:72px; border-top-color:var(--line); }
.search-bar-inner{ padding:14px 0; }
.menu-search-input{
  width:100%; padding:11px 16px; border-radius:999px;
  border:1.5px solid var(--line); background:var(--white);
  font-size:.95rem; color:var(--ink-900);
}
.menu-search-input:focus{ border-color:var(--ember-500); }

/* ===================== GROUP NAV (sticky tabs) ===================== */
.group-nav{
  position:sticky; top:64px; z-index:90;
  background:var(--parchment-50);
  border-bottom:1px solid var(--line);
}
.group-nav-inner{
  display:grid; grid-template-columns:repeat(4, 1fr); gap:8px;
  padding:10px 16px;
}
.group-tab{
  font-family:var(--font-body); font-weight:600; font-size:.82rem;
  padding:10px 6px; border-radius:10px;
  border:1.5px solid var(--line); background:var(--white);
  color:var(--ink-600); cursor:pointer;
  text-align:center; line-height:1.25;
  overflow:hidden; text-overflow:ellipsis;
  transition:.2s ease;
}
.group-tab.active{
  background:var(--forest-700); border-color:var(--forest-700); color:#fff;
}
.cat-quicklinks{
  display:flex; gap:6px; overflow-x:auto; padding:0 20px 10px;
  scrollbar-width:none;
}
.cat-quicklinks::-webkit-scrollbar{ display:none; }
.cat-quicklinks a{
  flex:0 0 auto; font-size:.76rem; padding:5px 12px; border-radius:999px;
  background:var(--parchment-100); color:var(--ink-600); text-decoration:none;
  border:1px solid transparent;
}
.cat-quicklinks a:hover{ border-color:var(--olive-500); color:var(--forest-700); }

/* ===================== HERO ===================== */
.hero{
  position:relative; isolation:isolate;
  min-height:62vh;
  display:flex; align-items:center; justify-content:center;
  text-align:center; color:#fff; overflow:hidden;
}
.hero img.hero-bg{
  position:absolute; inset:0; width:100%; height:100%;
  object-fit:cover; z-index:-2;
}
.hero::before{
  content:''; position:absolute; inset:0; z-index:-1;
  background:linear-gradient(180deg, rgba(16,42,32,.78) 0%, rgba(16,42,32,.55) 45%, rgba(16,42,32,.92) 100%);
}
.hero-content{ max-width:680px; padding:90px 24px 56px; }
.hero-icon{ width:60px; height:60px; margin:0 auto 20px; opacity:.95; }
.hero-eyebrow{
  font-size:.74rem; letter-spacing:.3em; text-transform:uppercase;
  color:var(--olive-300); margin-bottom:14px; font-weight:600;
}
.hero h1{
  font-family:var(--font-display); font-weight:600;
  font-size:clamp(2.1rem, 5vw, 3.4rem);
  margin:0 0 14px; line-height:1.12; letter-spacing:-.01em;
}
.hero p.lead{
  font-size:1.02rem; color:rgba(255,255,255,.86); margin:0 auto 28px;
  max-width:520px; line-height:1.65;
}
.hero .hero-search{
  max-width:420px; margin:0 auto; position:relative;
}
.hero .hero-search input{
  width:100%; padding:14px 20px; border-radius:999px; border:none;
  font-family:var(--font-body); font-size:.95rem;
  background:rgba(255,255,255,.97); color:var(--ink-900);
  box-shadow:var(--shadow-md);
}
.hero-scroll-cue{
  position:absolute; bottom:18px; left:50%; transform:translateX(-50%);
  width:22px; height:34px; border:2px solid rgba(255,255,255,.55);
  border-radius:14px;
}
.hero-scroll-cue::after{
  content:''; position:absolute; top:6px; left:50%; width:4px; height:8px;
  background:#fff; border-radius:2px; transform:translateX(-50%);
  animation:scrollDot 1.8s infinite ease;
}
@keyframes scrollDot{ 0%{opacity:1; transform:translate(-50%,0);} 70%{opacity:0; transform:translate(-50%,10px);} 100%{opacity:0;} }

/* ===================== LEAF DIVIDER (signature element) ===================== */
.leaf-divider{
  display:flex; align-items:center; justify-content:center;
  gap:14px; margin:0 0 26px; color:var(--olive-500);
}
.leaf-divider svg{ width:34px; height:18px; flex:0 0 auto; }
.leaf-divider .rule{ height:1px; flex:1 1 auto; background:var(--line); max-width:120px; }

/* ===================== SECTIONS / CATEGORY ===================== */
.menu-main{ padding-top:8px; }
.menu-group{ padding:54px 0 10px; }
.menu-group-title{
  font-family:var(--font-display); font-weight:600;
  font-size:clamp(1.6rem,3vw,2.2rem);
  color:var(--forest-800); text-align:center; margin:0 0 6px;
}
.menu-group-title small{
  display:block; font-family:var(--font-body); font-size:.72rem;
  letter-spacing:.22em; text-transform:uppercase; color:var(--olive-500);
  font-weight:600; margin-top:6px;
}

.category{
  padding:38px 0;
  opacity:0; transform:translateY(14px);
  transition:opacity .5s ease, transform .5s ease;
}
.category.in-view{ opacity:1; transform:translateY(0); }
.category + .category{ border-top:1px solid var(--line); }

.category-head{ text-align:center; margin-bottom:28px; }
.category-title{
  font-family:var(--font-display); font-size:clamp(1.4rem,2.6vw,1.85rem);
  font-weight:600; color:var(--forest-700); margin:0;
}
.category-title-en{
  display:block; font-family:var(--font-body); font-style:normal;
  font-size:.78rem; letter-spacing:.08em; color:var(--ink-600);
  margin-top:4px; font-weight:500;
}

.category-items{ max-width:760px; margin:0 auto; }

/* --- simple item row --- */
.item-row{
  display:flex; align-items:baseline; gap:10px;
  padding:14px 4px; border-bottom:1px dotted var(--line);
}
.item-row.has-thumb{ align-items:flex-start; }
.item-row:last-child{ border-bottom:none; }
.item-main{ flex:1 1 auto; min-width:0; }
.item-thumb{
  flex:0 0 auto; width:56px; height:56px; border-radius:10px;
  object-fit:cover; background:var(--parchment-100); margin-top:2px;
}
.item-name-line{ display:flex; align-items:baseline; gap:6px; flex-wrap:wrap; }
.item-name{
  font-family:var(--font-body); font-weight:600; font-size:1rem;
  color:var(--ink-900);
}
.item-desc-tr{ font-size:.82rem; color:var(--ink-600); }
.item-allergen-badge{
  font-size:.62rem; color:var(--ember-600); border:1px solid var(--ember-100);
  background:var(--ember-100); border-radius:999px; padding:1px 6px;
  font-weight:700; cursor:help;
}
.item-badge{
  font-size:.62rem; font-weight:700; text-transform:uppercase; letter-spacing:.03em;
  padding:2px 9px; border-radius:999px; color:#fff;
}
.item-badge-chef{ background:var(--ember-600); }
.item-badge-popular{ background:var(--forest-600); }
.item-translation{
  font-family:var(--font-display); font-style:italic; font-weight:400;
  font-size:.85rem; color:var(--ink-600); margin-top:2px;
}
.item-leader{
  flex:1 1 auto; border-bottom:1px dotted transparent;
  min-width:8px;
}
.item-price{
  font-family:var(--font-display); font-weight:600; font-size:1.05rem;
  color:var(--ember-600); white-space:nowrap; position:relative;
}
.item-price::after{
  content:''; position:absolute; left:0; bottom:-3px; height:1.5px; width:0;
  background:var(--ember-500); transition:width .25s ease;
}
.item-row:hover .item-price::after{ width:100%; }

.item-includes{ margin-top:10px; }
.item-includes summary{
  cursor:pointer; font-size:.78rem; color:var(--forest-700); font-weight:600;
  list-style:none;
}
.item-includes summary::-webkit-details-marker{ display:none; }
.item-includes summary::before{ content:'+ '; }
.item-includes[open] summary::before{ content:'– '; }
.item-includes-list{
  display:flex; flex-wrap:wrap; gap:6px; margin-top:10px; padding:0; list-style:none;
}
.item-includes-list li{
  font-size:.76rem; background:var(--parchment-100); color:var(--ink-600);
  padding:4px 10px; border-radius:999px;
}

/* --- brand / variant item (spirits, wine) --- */
.brand-row{
  display:flex; gap:12px; align-items:flex-start;
  padding:14px 4px; border-bottom:1px dotted var(--line);
}
.brand-row:last-child{ border-bottom:none; }
.brand-main{ flex:1 1 auto; min-width:0; }
.brand-name-line{ display:flex; align-items:baseline; gap:8px; flex-wrap:wrap; margin-bottom:8px; }
.brand-name{ font-weight:600; font-size:.98rem; }
.brand-name-en{ font-family:var(--font-display); font-style:italic; font-size:.82rem; color:var(--ink-600); }
.variant-chips{ display:flex; flex-wrap:wrap; gap:8px; }
.variant-chip{
  display:flex; align-items:center; gap:6px;
  background:var(--white); border:1px solid var(--line); border-radius:999px;
  padding:5px 12px 5px 12px; font-size:.82rem;
}
.variant-chip .v-label{ color:var(--ink-600); }
.variant-chip .v-price{ font-family:var(--font-display); font-weight:600; color:var(--ember-600); }

/* ===================== ALLERGEN LEGEND ===================== */
.allergen-fab{
  position:fixed; bottom:18px; right:18px; z-index:80;
  background:var(--forest-700); color:#fff; border:none; border-radius:999px;
  padding:11px 18px; font-family:var(--font-body); font-weight:600; font-size:.8rem;
  box-shadow:var(--shadow-md); cursor:pointer; display:flex; align-items:center; gap:8px;
}
.modal-backdrop{
  position:fixed; inset:0; background:rgba(16,42,32,.55); z-index:150;
  display:none; align-items:center; justify-content:center; padding:20px;
}
.modal-backdrop.open{ display:flex; }
.modal-card{
  background:var(--parchment-50); border-radius:var(--radius-md);
  max-width:480px; width:100%; max-height:80vh; overflow-y:auto;
  padding:28px 26px; box-shadow:var(--shadow-md); position:relative;
}
.modal-close{
  position:absolute; top:14px; right:14px; background:none; border:none;
  font-size:1.4rem; cursor:pointer; color:var(--ink-600); line-height:1;
}
.modal-card h3{ font-family:var(--font-display); color:var(--forest-800); margin:0 0 16px; }
.allergen-list{ list-style:none; margin:0; padding:0; }
.allergen-list li{
  display:flex; gap:10px; padding:7px 0; border-bottom:1px solid var(--line); font-size:.88rem;
}
.allergen-list li:last-child{ border-bottom:none; }
.allergen-list .num{
  flex:0 0 auto; width:22px; height:22px; border-radius:50%; background:var(--forest-700);
  color:#fff; font-size:.72rem; font-weight:700; display:flex; align-items:center; justify-content:center;
}

/* ===================== EMPTY / NO RESULT ===================== */
.no-results{
  text-align:center; padding:60px 20px; color:var(--ink-600);
  display:none;
}
.no-results.show{ display:block; }
.no-results strong{ display:block; font-family:var(--font-display); font-size:1.3rem; color:var(--forest-800); margin-bottom:8px; }

/* ===================== FOOTER ===================== */
.site-footer{
  position:relative; background:var(--forest-900); color:rgba(246,244,236,.88);
  margin-top:50px; overflow:hidden;
}
.site-footer .footer-bg{
  position:absolute; inset:0; object-fit:cover; width:100%; height:100%;
  opacity:.16; mix-blend-mode:luminosity;
}
.footer-inner{ position:relative; z-index:1; padding:64px 0 32px; text-align:center; }
.footer-logo{ height:64px; width:auto; margin:0 auto 26px; opacity:.96; }
.footer-closing{
  font-family:var(--font-display); font-style:italic; font-weight:500;
  font-size:2rem; color:var(--olive-300); margin:0 0 24px;
}
.footer-meta{ font-size:.88rem; line-height:1.8; margin-bottom:22px; }
.footer-meta a{ text-decoration:none; border-bottom:1px solid rgba(246,244,236,.3); }
.footer-social{ display:flex; justify-content:center; gap:22px; margin-bottom:26px; }
.footer-social a{
  display:flex; align-items:center; gap:7px; text-decoration:none;
  color:rgba(246,244,236,.85); font-size:.82rem; font-weight:600;
  transition:color .2s ease;
}
.footer-social a:hover{ color:var(--olive-300); }
.footer-social svg{ width:19px; height:19px; flex:0 0 auto; }
.footer-divider{ width:48px; height:1px; background:rgba(246,244,236,.3); margin:0 auto 22px; }
.footer-copy{ font-size:.72rem; color:rgba(246,244,236,.5); }

/* ===================== WHATSAPP FAB ===================== */
.whatsapp-fab{
  position:fixed; bottom:18px; left:18px; z-index:80;
  background:#075E54; color:#fff; border:none; border-radius:999px;
  padding:11px 18px; font-family:var(--font-body); font-weight:600; font-size:.8rem;
  box-shadow:var(--shadow-md); cursor:pointer; display:flex; align-items:center; gap:8px;
  text-decoration:none;
}
.whatsapp-fab:hover{ background:#054c44; }

/* ===================== RESPONSIVE ===================== */
@media (max-width:640px){
  .brand img{ height:32px; }
  .brand-name{ font-size:.92rem; }
  .group-nav{ top:58px; }
  .hero{ min-height:56vh; }
  .hero-content{ padding:70px 18px 44px; }
  .item-row{ flex-wrap:wrap; }
  .item-price{ margin-left:auto; }
  .allergen-fab span.fab-text, .whatsapp-fab span.fab-text{ display:none; }
  .allergen-fab, .whatsapp-fab{ padding:13px; }
  .group-tab{ font-size:.7rem; padding:8px 4px; border-radius:8px; }
  .group-nav-inner{ gap:6px; padding:8px 12px; }
}

@media (max-width:380px){
  .group-tab{ font-size:.64rem; }
}

@media (min-width:641px){
  .category-items.two-col{
    display:grid; grid-template-columns:1fr 1fr; gap:0 36px;
  }
}

/* Print (kept simple, no shadows/animations) */
@media print{
  .site-header, .group-nav, .allergen-fab, .hero-scroll-cue{ display:none; }
  .category{ opacity:1; transform:none; }
  .category .item-row, .category .brand-row{ opacity:1 !important; transform:none !important; }
  .hero-content > *{ animation:none !important; opacity:1 !important; }
  .menu-group{ animation:none !important; }
}

@media (max-width:640px){
  .lang-dropdown{ min-width:160px; }
}

/* ===================== RTL (Arabic) ===================== */
[dir="rtl"] .skip-link{ left:auto; right:-999px; }
[dir="rtl"] .skip-link:focus{ right:12px; left:auto; }
[dir="rtl"] .modal-close{ right:auto; left:14px; }
[dir="rtl"] .allergen-fab{ right:auto; left:18px; }
[dir="rtl"] .whatsapp-fab{ left:auto; right:18px; }
[dir="rtl"] .item-price::after{ left:auto; right:0; }
[dir="rtl"] .cat-quicklinks a:hover{ border-color:var(--olive-500); }
[dir="rtl"] .footer-meta a{ border-bottom:1px solid rgba(246,244,236,.3); }
[dir="rtl"] .item-includes summary::before{ content:'+ '; }
[dir="rtl"] .item-name-line, [dir="rtl"] .brand-name-line{ direction:rtl; }
[dir="rtl"] #footer-phone, [dir="rtl"] #footer-email{ direction:ltr; unicode-bidi:isolate; display:inline-block; }
@media (max-width:640px){
  [dir="rtl"] .item-price{ margin-left:0; margin-right:auto; }
}

/* ===================== ANİMASYON GELİŞTİRMELERİ (v20260703) =====================
   Tüm animasyonlar dosyanın başındaki prefers-reduced-motion kuralı
   kapsamındadır; hareket azaltma tercih eden kullanıcılarda otomatik kapanır. */

/* --- Hero giriş animasyonu: sayfa açılışında yumuşak yükselme --- */
@keyframes eevFadeUp{
  from{ opacity:0; transform:translateY(18px); }
  to{ opacity:1; transform:translateY(0); }
}
.hero-content > *{
  animation:eevFadeUp .7s cubic-bezier(.22,.8,.32,1) both;
}
.hero-content > :nth-child(1){ animation-delay:.05s; }
.hero-content > :nth-child(2){ animation-delay:.15s; }
.hero-content > :nth-child(3){ animation-delay:.25s; }
.hero-content > :nth-child(4){ animation-delay:.35s; }
.hero-content > :nth-child(5){ animation-delay:.45s; }

/* --- Kategori içi kademeli (stagger) satır girişi ---
   Kategori görünür olduğunda satırlar sırayla belirir (ilk 8 satır kademeli,
   sonrakiler birlikte — uzun listelerde bekletmemek için). */
.category .item-row,
.category .brand-row{
  opacity:0; transform:translateY(8px);
  transition:opacity .45s ease, transform .45s ease;
}
.category.in-view .item-row,
.category.in-view .brand-row{
  opacity:1; transform:translateY(0);
}
.category.in-view .item-row:nth-child(1), .category.in-view .brand-row:nth-child(1){ transition-delay:.05s; }
.category.in-view .item-row:nth-child(2), .category.in-view .brand-row:nth-child(2){ transition-delay:.10s; }
.category.in-view .item-row:nth-child(3), .category.in-view .brand-row:nth-child(3){ transition-delay:.15s; }
.category.in-view .item-row:nth-child(4), .category.in-view .brand-row:nth-child(4){ transition-delay:.20s; }
.category.in-view .item-row:nth-child(5), .category.in-view .brand-row:nth-child(5){ transition-delay:.25s; }
.category.in-view .item-row:nth-child(6), .category.in-view .brand-row:nth-child(6){ transition-delay:.30s; }
.category.in-view .item-row:nth-child(7), .category.in-view .brand-row:nth-child(7){ transition-delay:.35s; }
.category.in-view .item-row:nth-child(8), .category.in-view .brand-row:nth-child(8){ transition-delay:.40s; }

/* --- Dil değişimi / arama sonrası yumuşak yeniden çizim --- */
@keyframes eevFadeIn{ from{ opacity:0; } to{ opacity:1; } }
.menu-group{ animation:eevFadeIn .35s ease both; }

/* --- Satır üzerine gelme (hover) cilası --- */
.item-row, .brand-row{
  transition:background-color .2s ease, opacity .45s ease, transform .45s ease;
  border-radius:8px;
}
@media (hover:hover){
  .item-row:hover, .brand-row:hover{ background:rgba(22,53,40,.035); }
  .item-thumb{ transition:transform .25s ease; }
  .item-row:hover .item-thumb{ transform:scale(1.05); }
  .variant-chip{ transition:transform .18s ease, box-shadow .18s ease; }
  .variant-chip:hover{ transform:translateY(-1px); box-shadow:0 2px 8px rgba(22,53,40,.10); }
}

/* --- Alerjen modal giriş animasyonu --- */
.modal-backdrop .modal-card{
  transform:translateY(10px) scale(.985); opacity:0;
  transition:transform .25s cubic-bezier(.22,.8,.32,1), opacity .25s ease;
}
.modal-backdrop.open .modal-card{ transform:translateY(0) scale(1); opacity:1; }
