/* =====================================================================
   Garden Cafe — Menü Stilleri
   Editorial · minimal · siyah-beyaz · light/dark · RTL
   ===================================================================== */

/* ---------- Tema Değişkenleri ---------- */
:root {
  --paper: #faf8f4;
  --paper-2: #f2efe8;
  --card: #ffffff;
  --ink: #16150f;
  --ink-soft: #46443b;
  --muted: #8a877c;
  --line: rgba(20, 19, 13, 0.10);
  --line-strong: rgba(20, 19, 13, 0.22);
  --accent: #16150f;            /* ayarlardan override edilir */
  --accent-ink: #faf8f4;
  --shadow: 0 1px 2px rgba(0,0,0,.04), 0 8px 30px rgba(0,0,0,.06);
  --shadow-lg: 0 20px 60px rgba(0,0,0,.18);
  --radius: 16px;
  --radius-sm: 10px;
  --maxw: 900px;
  --ease: cubic-bezier(.22,.61,.36,1);
  /* Zemin gradyan tonları (marka zeytin + sıcak kum) */
  --glow-a: rgba(92, 96, 62, .17);
  --glow-b: rgba(198, 172, 118, .16);
  --glow-c: rgba(92, 96, 62, .10);
  --hero-glow: rgba(92, 96, 62, .15);
  --grain-opacity: .035;
  /* Ek katman: sıcak gökyüzü geçişi + soluk organik tepe dokusu (açık tema) */
  --bg-fx:
    url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20width='84'%20height='50'%3E%3Cg%20fill='none'%20stroke='rgba(92,96,62,0.06)'%20stroke-width='1'%3E%3Cpath%20d='M0%2013%20Q21%203%2042%2013%20T84%2013'/%3E%3Cpath%20d='M0%2037%20Q21%2027%2042%2037%20T84%2037'/%3E%3C/g%3E%3C/svg%3E") 0 0 / 84px 50px,
    linear-gradient(180deg, rgba(198, 172, 118, .16), transparent 30%),
    radial-gradient(120% 60% at 50% 118%, rgba(92, 96, 62, .10), transparent 60%);
}

:root[data-theme="dark"] {
  --paper: #0e0e0c;
  --paper-2: #141412;
  --card: #171714;
  --ink: #f3f1ea;
  --ink-soft: #c3c0b6;
  --muted: #8b887e;
  --line: rgba(243, 241, 234, 0.12);
  --line-strong: rgba(243, 241, 234, 0.26);
  --accent: #f3f1ea;
  --accent-ink: #0e0e0c;
  --shadow: 0 1px 2px rgba(0,0,0,.3), 0 10px 34px rgba(0,0,0,.5);
  --shadow-lg: 0 24px 70px rgba(0,0,0,.6);
  --glow-a: rgba(140, 154, 92, .13);
  --glow-b: rgba(94, 104, 68, .11);
  --glow-c: rgba(140, 154, 92, .06);
  --hero-glow: rgba(140, 154, 92, .14);
  --grain-opacity: .04;
  --bg-fx: linear-gradient(transparent, transparent);
}

@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) {
    --paper: #0e0e0c;
    --paper-2: #141412;
    --card: #171714;
    --ink: #f3f1ea;
    --ink-soft: #c3c0b6;
    --muted: #8b887e;
    --line: rgba(243, 241, 234, 0.12);
    --line-strong: rgba(243, 241, 234, 0.26);
    --accent: #f3f1ea;
    --accent-ink: #0e0e0c;
    --shadow: 0 1px 2px rgba(0,0,0,.3), 0 10px 34px rgba(0,0,0,.5);
    --shadow-lg: 0 24px 70px rgba(0,0,0,.6);
    --glow-a: rgba(140, 154, 92, .13);
    --glow-b: rgba(94, 104, 68, .11);
    --glow-c: rgba(140, 154, 92, .06);
    --hero-glow: rgba(140, 154, 92, .14);
    --grain-opacity: .04;
    --bg-fx: linear-gradient(transparent, transparent);
  }
}

/* ---------- Reset ---------- */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  font-family: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background-color: var(--paper);
  color: var(--ink);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  min-height: 100vh;
  position: relative;
  transition: background-color .4s var(--ease), color .4s var(--ease);
}
[dir="rtl"] body {
  font-family: "IBM Plex Sans Arabic", "Manrope", sans-serif;
}
img { max-width: 100%; display: block; }
button { font: inherit; color: inherit; cursor: pointer; background: none; border: none; }
a { color: inherit; text-decoration: none; }
:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; border-radius: 4px; }

/* Zemin: yumuşak gradyan mesh (marka tonları) — fixed katman, kaydırırken sabit & hızlı */
body::before {
  content: "";
  position: fixed; inset: 0;
  z-index: -1; pointer-events: none;
  background:
    var(--bg-fx, linear-gradient(transparent, transparent)),
    radial-gradient(1150px 640px at 50% -12%, var(--glow-a), transparent 60%),
    radial-gradient(760px 680px at 112% 6%,  var(--glow-b), transparent 58%),
    radial-gradient(720px 720px at -12% 44%, var(--glow-c), transparent 55%),
    radial-gradient(900px 900px at 90% 108%, var(--glow-b), transparent 60%);
  transition: background .4s var(--ease);
}

/* Grain dokusu (atmosfer) */
body::after {
  content: "";
  position: fixed; inset: 0;
  pointer-events: none; z-index: 9999;
  opacity: var(--grain-opacity);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ---------- Üst Bar ---------- */
.topbar {
  position: sticky; top: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  gap: 12px;
  padding: 14px clamp(16px, 5vw, 40px);
  background: color-mix(in srgb, var(--paper) 82%, transparent);
  backdrop-filter: saturate(140%) blur(14px);
  border-bottom: 1px solid var(--line);
}
.brand {
  display: flex; align-items: center; gap: 10px;
  font-family: "Fraunces", Georgia, serif;
  font-weight: 600; font-size: 1.15rem;
  letter-spacing: -0.01em;
}
.brand img { height: 30px; width: auto; }
.brand .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--accent); }

.controls { display: flex; align-items: center; gap: 6px; }
.iconbtn {
  width: 40px; height: 40px; border-radius: 50%;
  display: grid; place-items: center;
  color: var(--ink-soft);
  transition: background .2s, color .2s, transform .2s var(--ease);
}
.iconbtn:hover { background: var(--paper-2); color: var(--ink); }
.iconbtn:active { transform: scale(.92); }
.iconbtn svg { width: 20px; height: 20px; }

/* Dil seçici */
.lang { position: relative; }
.lang-btn {
  display: flex; align-items: center; gap: 6px;
  height: 40px; padding: 0 12px; border-radius: 999px;
  border: 1px solid var(--line-strong);
  font-size: .82rem; font-weight: 600; letter-spacing: .02em;
  color: var(--ink-soft);
  transition: border-color .2s, color .2s;
}
.lang-btn:hover { color: var(--ink); border-color: var(--ink); }
.lang-menu {
  position: absolute; inset-inline-end: 0; top: calc(100% + 8px);
  background: var(--card); border: 1px solid var(--line);
  border-radius: var(--radius-sm); box-shadow: var(--shadow-lg);
  padding: 6px; min-width: 150px;
  opacity: 0; visibility: hidden; transform: translateY(-6px);
  transition: opacity .18s, transform .18s var(--ease), visibility .18s;
  z-index: 200;
}
.lang.open .lang-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.lang-menu a {
  display: flex; align-items: center; gap: 10px;
  padding: 9px 12px; border-radius: 8px; font-size: .9rem; font-weight: 500;
}
.lang-menu a:hover { background: var(--paper-2); }
.lang-menu a.active { font-weight: 700; }
.lang-menu a .flag { font-size: 1.1rem; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  text-align: center;
  padding: clamp(38px, 8vw, 76px) clamp(16px, 5vw, 40px) clamp(20px, 4vw, 34px);
  max-width: var(--maxw); margin: 0 auto;
}
/* Logo arkası yumuşak ışık huzmesi */
.hero::before {
  content: "";
  position: absolute; z-index: -1;
  top: 8%; left: 50%; transform: translateX(-50%);
  width: min(560px, 92vw); height: min(560px, 92vw);
  background: radial-gradient(circle, var(--hero-glow), transparent 62%);
  filter: blur(6px);
  pointer-events: none;
}
.hero .eyebrow {
  font-size: .72rem; letter-spacing: .32em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 18px;
}
[dir="rtl"] .hero .eyebrow { letter-spacing: .12em; }
.hero h1 {
  font-family: "Fraunces", Georgia, serif;
  font-weight: 600;
  font-size: clamp(2.6rem, 10vw, 5rem);
  line-height: .96; letter-spacing: -0.03em;
  font-optical-sizing: auto;
}
/* Marka logosu (theme-aware; yalnızca aktif tema görseli indirilir) */
.hero-logo {
  width: min(260px, 60vw);
  aspect-ratio: 700 / 715;
  margin: 0 auto;
  background: center / contain no-repeat;
  background-image: url("../img/logo-green.webp");   /* açık tema */
  filter: drop-shadow(0 8px 22px rgba(20, 19, 13, .10));
}
:root[data-theme="dark"] .hero-logo { filter: drop-shadow(0 8px 26px rgba(0, 0, 0, .45)); }
:root[data-theme="dark"] .hero-logo { background-image: url("../img/logo-cream.webp"); }
@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) .hero-logo { background-image: url("../img/logo-cream.webp"); }
}
/* Görsel okuyuculara isim, ekranda gizli */
.visually-hidden {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}
.hero .tagline {
  margin-top: 16px; color: var(--ink-soft);
  font-size: clamp(.95rem, 3vw, 1.1rem);
  font-style: italic; font-family: "Fraunces", Georgia, serif;
}
.hero .rule {
  width: 46px; height: 1px; background: var(--line-strong);
  margin: 26px auto 0;
}

/* ---------- Kategori Navigasyonu ---------- */
.catnav {
  position: sticky; top: 68px; z-index: 90;
  background: color-mix(in srgb, var(--paper) 88%, transparent);
  backdrop-filter: blur(12px);
  border-block: 1px solid var(--line);
  margin-bottom: 8px;
}
.catnav-inner {
  display: flex; gap: 4px; overflow-x: auto; scrollbar-width: none;
  max-width: var(--maxw); margin: 0 auto;
  padding: 10px clamp(16px, 5vw, 40px);
}
.catnav-inner::-webkit-scrollbar { display: none; }
.catnav a {
  flex: 0 0 auto; padding: 8px 15px; border-radius: 999px;
  font-size: .86rem; font-weight: 600; white-space: nowrap;
  color: var(--muted);
  border: 1px solid transparent;
  transition: color .2s, background .2s, border-color .2s;
}
.catnav a:hover { color: var(--ink); }
.catnav a.active {
  color: var(--accent-ink); background: var(--accent);
}

/* ---------- Araç Çubuğu (arama + filtre) ---------- */
.toolbar {
  max-width: var(--maxw); margin: 0 auto;
  padding: 12px clamp(16px, 5vw, 40px) 0;
  display: flex; gap: 10px;
}
.search-box {
  flex: 1; display: flex; align-items: center; gap: 10px;
  padding: 0 16px; height: 46px;
  background: var(--card); border: 1px solid var(--line);
  border-radius: 999px; transition: border-color .2s, box-shadow .2s;
}
.search-box:focus-within { border-color: var(--ink); box-shadow: var(--shadow); }
.search-box svg { width: 18px; height: 18px; color: var(--muted); flex: 0 0 auto; }
.search-box input {
  flex: 1; border: none; background: none; outline: none;
  font: inherit; color: var(--ink); min-width: 0;
}
.search-box input::placeholder { color: var(--muted); }

/* ---------- Menü Bölümleri ---------- */
main { max-width: var(--maxw); margin: 0 auto; padding: 0 clamp(16px, 5vw, 40px) 60px; }

.section { padding-top: clamp(30px, 6vw, 48px); scroll-margin-top: 130px; }
.section-head {
  display: flex; align-items: baseline; gap: 14px;
  margin-bottom: 22px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}
.section-head .idx {
  font-family: "Fraunces", serif; font-weight: 500;
  font-size: .9rem; color: var(--muted);
  font-feature-settings: "tnum";
}
.section-head h2 {
  font-family: "Fraunces", Georgia, serif;
  font-weight: 600; font-size: clamp(1.5rem, 5vw, 2rem);
  letter-spacing: -0.02em; line-height: 1;
}
.section-head .cat-icon { font-size: 1.4rem; }
.section-head .cat-desc {
  margin-inline-start: auto; color: var(--muted);
  font-size: .82rem; font-style: italic; text-align: end;
  max-width: 40%;
}

/* ---------- Ürün Satırı ---------- */
.items { display: flex; flex-direction: column; }
.item {
  display: flex; gap: 16px; align-items: flex-start;
  padding: 18px 0;
  border-bottom: 1px dashed var(--line);
  cursor: pointer;
  transition: background .2s;
}
.item:hover { background: color-mix(in srgb, var(--paper-2) 55%, transparent); }
.item:hover .item-name { text-decoration-color: var(--ink); }

.item-thumb {
  flex: 0 0 auto; width: 76px; height: 76px;
  border-radius: 12px; overflow: hidden;
  background: var(--paper-2);
  position: relative;
}
.item-thumb img { width: 100%; height: 100%; object-fit: cover; }
.item-thumb.empty {
  display: grid; place-items: center;
  font-family: "Fraunces", serif; font-size: 1.6rem; color: var(--muted);
}

.item-body { flex: 1; min-width: 0; }
.item-top { display: flex; align-items: baseline; gap: 10px; }
.item-name {
  font-weight: 700; font-size: 1.02rem; letter-spacing: -0.01em;
  text-decoration: underline; text-decoration-color: transparent;
  text-underline-offset: 3px; transition: text-decoration-color .2s;
}
.leader { flex: 1; border-bottom: 1px dotted var(--line-strong); transform: translateY(-4px); }
.item-price { flex: 0 0 auto; font-weight: 700; font-size: 1.02rem; white-space: nowrap; }
.item-price .old {
  color: var(--muted); text-decoration: line-through;
  font-weight: 500; font-size: .85em; margin-inline-end: 6px;
}
.item-desc {
  color: var(--ink-soft); font-size: .88rem; line-height: 1.45;
  margin-top: 4px; max-width: 52ch;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}

/* Rozetler */
.badges { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 9px; }
.badge {
  display: inline-flex; align-items: center; gap: 4px;
  font-size: .68rem; font-weight: 700; letter-spacing: .03em;
  padding: 3px 8px; border-radius: 999px;
  border: 1px solid var(--line-strong);
  color: var(--ink-soft); text-transform: uppercase;
}
.badge.label { color: #fff; border: none; }
.badge .em { font-size: .82rem; }
.badge.allergen { background: var(--paper-2); }

/* ---------- Boş Durum ---------- */
.empty-state {
  text-align: center; padding: 80px 20px; color: var(--muted);
}
.empty-state .big { font-size: 2.4rem; margin-bottom: 12px; }
.empty-state h3 { font-family: "Fraunces", serif; color: var(--ink); font-weight: 600; margin-bottom: 6px; }

/* ---------- Ürün Modalı ---------- */
.modal-backdrop {
  position: fixed; inset: 0; z-index: 500;
  background: color-mix(in srgb, var(--ink) 45%, transparent);
  backdrop-filter: blur(4px);
  opacity: 0; visibility: hidden; transition: opacity .3s, visibility .3s;
  display: grid; place-items: end center;
}
.modal-backdrop.open { opacity: 1; visibility: visible; }
.modal {
  background: var(--card); width: 100%; max-width: 520px;
  border-radius: 24px 24px 0 0;
  max-height: 92vh; overflow-y: auto;
  transform: translateY(100%); transition: transform .38s var(--ease);
  box-shadow: var(--shadow-lg);
}
.modal-backdrop.open .modal { transform: translateY(0); }
@media (min-width: 640px) {
  .modal-backdrop { place-items: center; padding: 20px; }
  .modal { border-radius: 24px; }
  .modal-backdrop.open .modal { transform: none; }
  .modal { transform: translateY(20px) scale(.98); }
}
.modal-img { width: 100%; aspect-ratio: 16/10; object-fit: cover; background: var(--paper-2); }
.modal-img.empty { display: grid; place-items: center; font-family: "Fraunces", serif; font-size: 3rem; color: var(--muted); }
.modal-close {
  position: absolute; top: 14px; inset-inline-end: 14px;
  width: 40px; height: 40px; border-radius: 50%;
  background: color-mix(in srgb, var(--card) 80%, transparent);
  backdrop-filter: blur(8px); box-shadow: var(--shadow);
  display: grid; place-items: center; color: var(--ink);
}
.modal-body { padding: 22px clamp(18px, 5vw, 28px) 30px; }
.modal-body h3 {
  font-family: "Fraunces", serif; font-weight: 600;
  font-size: 1.7rem; letter-spacing: -0.02em; line-height: 1.05;
}
.modal-price { font-size: 1.35rem; font-weight: 700; margin-top: 10px; }
.modal-price .old { color: var(--muted); text-decoration: line-through; font-weight: 500; font-size: .8em; margin-inline-end: 8px; }
.modal-desc { color: var(--ink-soft); margin-top: 14px; line-height: 1.6; }
.modal-meta { display: flex; gap: 18px; margin-top: 16px; color: var(--muted); font-size: .85rem; }
.modal-meta span { display: inline-flex; align-items: center; gap: 6px; }
.modal-section { margin-top: 22px; }
.modal-section h4 {
  font-size: .72rem; letter-spacing: .18em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 10px;
}

/* ---------- Footer ---------- */
.footer {
  border-top: 1px solid var(--line);
  background: var(--paper-2);
  padding: 44px clamp(16px, 5vw, 40px);
}
.footer-inner { max-width: var(--maxw); margin: 0 auto; text-align: center; }
.footer .fname { font-family: "Fraunces", serif; font-size: 1.5rem; font-weight: 600; }
.footer .frow { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px 26px; margin-top: 18px; color: var(--ink-soft); font-size: .9rem; }
.footer .frow a { display: inline-flex; align-items: center; gap: 7px; }
.footer .frow a:hover { color: var(--ink); }
.footer .socials { display: flex; justify-content: center; gap: 8px; margin-top: 22px; }
.footer .socials a {
  width: 42px; height: 42px; border-radius: 50%;
  border: 1px solid var(--line-strong); display: grid; place-items: center;
  color: var(--ink-soft); transition: background .2s, color .2s, border-color .2s;
}
.footer .socials a:hover { background: var(--accent); color: var(--accent-ink); border-color: var(--accent); }
.footer .socials svg { width: 19px; height: 19px; }
.footer .copyright { margin-top: 26px; font-size: .76rem; color: var(--muted); }

/* ---------- Yükleme Animasyonu ---------- */
@keyframes rise { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: none; } }
.reveal { opacity: 0; animation: rise .7s var(--ease) forwards; }

/* ---------- Yardımcılar ---------- */
.hidden { display: none !important; }

@media (max-width: 480px) {
  .item-thumb { width: 62px; height: 62px; }
  .section-head .cat-desc { display: none; }
  .catnav { top: 62px; }
}

/* =====================================================================
   MENÜ DİZAYNLARI (layout varyantları)
   ===================================================================== */

/* ---------- Geri butonu (Kategori Odaklı) ---------- */
.cat-back {
  display: none; align-items: center; gap: 8px; flex: 0 0 auto;
  height: 46px; padding: 0 16px; border-radius: 999px;
  border: 1px solid var(--line-strong); color: var(--ink-soft);
  font-weight: 600; font-size: .88rem; white-space: nowrap;
  transition: border-color .2s, color .2s;
}
.cat-back:hover { border-color: var(--ink); color: var(--ink); }
.cat-back svg { width: 18px; height: 18px; }
[dir="rtl"] .cat-back svg { transform: scaleX(-1); }

/* ---------- Kategori kartları (Kategori Odaklı) ---------- */
.cat-grid {
  max-width: var(--maxw); margin: 0 auto;
  padding: 10px clamp(16px, 5vw, 40px) 50px;
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px;
}
@media (min-width: 680px) { .cat-grid { grid-template-columns: repeat(3, 1fr); gap: 18px; } }
.cat-card {
  position: relative; display: flex; flex-direction: column; text-align: start;
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; cursor: pointer;
  transition: transform .22s var(--ease), box-shadow .22s, border-color .2s;
}
.cat-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: var(--line-strong); }
.cat-card:active { transform: scale(.98); }
.cat-card-media { aspect-ratio: 4/3; background: var(--paper-2); display: grid; place-items: center; overflow: hidden; }
.cat-card-media img { width: 100%; height: 100%; object-fit: cover; }
.cat-card-icon { font-size: 2.4rem; }
.cat-card-body { padding: 13px 16px 15px; }
.cat-card-name { display: block; font-family: "Fraunces", serif; font-weight: 600; font-size: 1.1rem; letter-spacing: -.01em; }
.cat-card-count { display: block; color: var(--muted); font-size: .8rem; margin-top: 2px; }
.cat-card > svg { position: absolute; bottom: 15px; inset-inline-end: 14px; width: 18px; height: 18px; color: var(--muted); }
[dir="rtl"] .cat-card > svg { transform: scaleX(-1); }

/* ---------- TABS: tek seferde tek kategori ---------- */
.layout-tabs .section { display: none; animation: none !important; opacity: 1 !important; }
.layout-tabs .section.active { display: block; }
.layout-tabs.is-searching .section { display: block; }
.layout-tabs .section { padding-top: clamp(20px, 4vw, 30px); }

/* ---------- CATEGORIES: önce kartlar, tıkla → ürünler ---------- */
.layout-categories .section { display: none; animation: none !important; opacity: 1 !important; }
.layout-categories .section.active { display: block; }
.layout-categories.is-searching .section { display: block; }
.layout-categories.is-searching #catGrid { display: none; }
.layout-categories.drilled #catGrid { display: none; }
.layout-categories.drilled .cat-back,
.layout-categories.is-searching .cat-back { display: inline-flex; }

/* ---------- GRID: görselli 2 sütun kart ---------- */
.layout-grid .items {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px;
}
@media (min-width: 560px) { .layout-grid .items { gap: 16px; } }
@media (min-width: 860px) { .layout-grid .items { grid-template-columns: repeat(3, 1fr); } }
.item-card {
  flex-direction: column; align-items: stretch; gap: 0; padding: 0;
  background: var(--card); border: 1px solid var(--line);
  border-radius: var(--radius); overflow: hidden;
}
.item-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); background: var(--card); }
.card-media { aspect-ratio: 1/1; background: var(--paper-2); display: grid; place-items: center; overflow: hidden; }
.card-media img { width: 100%; height: 100%; object-fit: cover; }
.card-media.empty span { font-family: "Fraunces", serif; font-size: 2rem; color: var(--muted); }
.card-body { padding: 12px 14px 15px; display: flex; flex-direction: column; gap: 6px; }
.item-card .item-name { font-weight: 700; font-size: .98rem; text-decoration: none; }
.item-card .item-desc { margin: 0; -webkit-line-clamp: 2; }
.item-card .item-price { font-weight: 700; margin-top: 2px; }
.item-card .badges { margin-top: 2px; }
