:root {
  color-scheme: light;
  --red: #a81516;
  --red-2: #7b1110;
  --red-3: #cf2425;
  --cream: #fff8e8;
  --cream-2: #f4e3c4;
  --cream-3: #ead0a1;
  --yellow: #ffcf20;
  --green: #16a160;
  --ink: #17110f;
  --ink-soft: #39302b;
  --muted: #76685d;
  --glass: rgba(255, 248, 232, 0.78);
  --glass-strong: rgba(255, 251, 240, 0.94);
  --line: rgba(105, 30, 17, 0.14);
  --shadow: 0 30px 90px rgba(83, 24, 11, 0.17);
  --shadow-soft: 0 20px 55px rgba(83, 24, 11, 0.11);
  --radius-xl: 38px;
  --radius-lg: 28px;
  --radius-md: 20px;
  --font: "Plus Jakarta Sans", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "SF Pro Display", "Helvetica Neue", Arial, sans-serif;
  --font-serif: "Cormorant Garamond", Georgia, serif;
  --radius-pill: 999px;
}


* { box-sizing: border-box; }
*::selection { color: #fff7dd; background: var(--red); }
html { scroll-behavior: smooth; text-size-adjust: 100%; }
body {
  margin: 0;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  min-height: 100svh;
  overflow-x: hidden;
  color: var(--ink);
  font-family: var(--font);
  background:
    radial-gradient(circle at 8% 0%, rgba(255, 207, 32, .36), transparent 34rem),
    radial-gradient(circle at 95% 8%, rgba(168, 21, 22, .20), transparent 30rem),
    radial-gradient(circle at 50% 102%, rgba(168, 21, 22, .14), transparent 26rem),
    linear-gradient(135deg, #fffaf0 0%, #f4e4c7 50%, #fff8e8 100%);
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(168,21,22,.045) 1px, transparent 1px),
    linear-gradient(0deg, rgba(168,21,22,.03) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(to bottom, black, transparent 75%);
}
a { color: inherit; text-decoration: none; }
button, input { font: inherit; }
button { -webkit-tap-highlight-color: transparent; }
img { max-width: 100%; }
code { font-family: ui-monospace, SFMono-Regular, Consolas, monospace; }

.grain {
  position: fixed;
  inset: 0;
  opacity: .16;
  pointer-events: none;
  background-image:
    radial-gradient(circle at 20% 20%, rgba(255,255,255,.7) 0 1px, transparent 1px),
    radial-gradient(circle at 80% 30%, rgba(105,30,17,.18) 0 1px, transparent 1px),
    radial-gradient(circle at 35% 85%, rgba(255,207,32,.28) 0 1px, transparent 1px);
  background-size: 24px 24px, 32px 32px, 40px 40px;
}
.ambient {
  position: fixed;
  z-index: -1;
  width: 420px;
  aspect-ratio: 1;
  border-radius: 999px;
  filter: blur(26px);
  opacity: .5;
  pointer-events: none;
  animation: floatGlow 10s ease-in-out infinite alternate;
}
.ambient-one { left: -160px; top: 120px; background: rgba(255,207,32,.32); }
.ambient-two { right: -170px; top: 40px; background: rgba(168,21,22,.22); animation-delay: -4s; }

.site-shell {
  width: min(1220px, 100%);
  margin: 0 auto;
  padding: max(14px, env(safe-area-inset-top)) clamp(12px, 3vw, 34px) 70px;
}

.hero-panel,
.menu-tools,
.spotlight,
.menu-section,
.footer-panel,
.empty-state {
  border: 1px solid var(--line);
  background: var(--glass);
  backdrop-filter: blur(24px) saturate(1.18);
  -webkit-backdrop-filter: blur(24px) saturate(1.18);
  box-shadow: var(--shadow-soft);
}

.hero-panel {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-xl);
  padding: clamp(18px, 4vw, 44px);
  background:
    radial-gradient(circle at 76% 0%, rgba(255,207,32,.18), transparent 24rem),
    linear-gradient(135deg, rgba(255, 252, 243, .97), rgba(242, 219, 177, .72)),
    repeating-linear-gradient(90deg, rgba(168,21,22,.055) 0 13px, transparent 13px 26px);
  box-shadow: 0 34px 80px rgba(83, 24, 11, 0.14);
  isolation: isolate;
  transform: translateZ(0);
}
.hero-panel::before {
  content: "";
  position: absolute;
  inset: auto -120px -150px auto;
  width: 430px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(168,21,22,.18), transparent 67%);
  z-index: -1;
  animation: premiumPulse 8s ease-in-out infinite alternate;
}
.hero-panel::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 18px;
  background:
    linear-gradient(45deg, var(--red) 25%, transparent 25% 50%, var(--red) 50% 75%, transparent 75%) 0 0/28px 28px,
    linear-gradient(#fff7df,#fff7df);
  opacity: .92;
}
.hero-status-row {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.live-pill,
.share-button {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  border: 1px solid rgba(168,21,22,.14);
  border-radius: 999px;
  padding: 9px 14px;
  color: var(--red-2);
  background: rgba(255,255,255,.64);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-weight: 950;
}
.share-button {
  cursor: pointer;
  color: #fff8e2;
  border-color: rgba(123,17,16,.12);
  background: linear-gradient(135deg, var(--red), var(--red-2));
  box-shadow: 0 13px 28px rgba(168,21,22,.2);
}
.share-button:active { transform: translateY(1px); }
.status-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #aaa09a;
  box-shadow: 0 0 0 6px rgba(170,160,154,.18);
}
.status-dot.is-open {
  background: var(--green);
  box-shadow: 0 0 0 6px rgba(22,161,96,.16), 0 0 22px rgba(22,161,96,.42);
}

.hero-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: clamp(18px, 4vw, 40px);
  align-items: center;
  margin-top: clamp(22px, 4vw, 38px);
}
.brand-mark {
  width: clamp(118px, 18vw, 184px);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: linear-gradient(145deg, #fff5dc, #e8d0a1);
  box-shadow: inset 0 0 0 1px rgba(168,21,22,.12), 0 26px 55px rgba(111,16,15,.17);
  transition: transform .45s cubic-bezier(.2,.8,.2,1), box-shadow .45s ease;
}
.brand-mark:hover { transform: rotate(-2deg) scale(1.025); box-shadow: inset 0 0 0 1px rgba(168,21,22,.16), 0 32px 72px rgba(111,16,15,.22); }
.brand-mark img { width: 100%; height: 100%; object-fit: cover; border-radius: inherit; }
.hero-copy {
  max-width: 780px;
}
.eyebrow {
  margin: 0 0 10px;
  color: rgba(123, 17, 16, .92);
  font-family: var(--font-serif);
  font-size: clamp(15px, 2vw, 20px);
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}
h1 {
  margin: 0;
  color: #211a17;
  font-size: clamp(46px, 7.6vw, 80px);
  font-weight: 800;
  line-height: .92;
  letter-spacing: -.065em;
  text-shadow: 0 10px 28px rgba(88,40,16,.09);
}
h1::after {
  content: "";
  display: block;
  width: min(160px, 38vw);
  height: 5px;
  margin-top: 14px;
  border-radius: var(--radius-pill);
  background: linear-gradient(90deg, var(--red), var(--yellow));
  box-shadow: 0 8px 18px rgba(168,21,22,.16);
}
.headline {
  margin: 18px 0 0;
  max-width: 700px;
  color: var(--ink-soft);
  font-family: var(--font-serif);
  font-size: clamp(22px, 2.7vw, 34px);
  line-height: 1.04;
  font-weight: 700;
  letter-spacing: -.02em;
}
.bio-line {
  margin: 14px 0 0;
  max-width: 620px;
  color: #6c5d54;
  font-size: clamp(15px, 1.9vw, 18px);
  line-height: 1.72;
  font-weight: 500;
}
.hero-actions-note {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
  color: var(--red-2);
  font-size: 13px;
  font-weight: 700;
}
.hero-actions-note span {
  position: relative;
  border: 1px solid rgba(168,21,22,.12);
  border-radius: var(--radius-pill);
  padding: 10px 13px 10px 28px;
  background: rgba(255,255,255,.64);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.65);
}
.hero-actions-note span::before {
  content: "";
  position: absolute;
  left: 12px;
  top: 50%;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--red), var(--yellow));
  transform: translateY(-50%);
}
.notice-banner {
  position: relative;
  z-index: 2;
  margin-top: 22px;
  display: inline-flex;
  border: 1px dashed rgba(168,21,22,.42);
  border-radius: 999px;
  padding: 10px 14px;
  color: var(--red-2);
  background: rgba(255,255,255,.60);
  font-weight: 900;
}
.cta-row {
  position: relative;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}
.cta {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 13px 20px;
  font-size: 14px;
  font-weight: 800;
  transition: transform .22s ease, box-shadow .22s ease, background .22s ease;
}
.cta:hover { transform: translateY(-2px); }
.cta-primary {
  color: #fff7df;
  background: linear-gradient(135deg, var(--red-3), var(--red-2));
  box-shadow: 0 16px 32px rgba(168,21,22,.24);
}
.cta-soft {
  color: var(--red-2);
  border: 1px solid rgba(168,21,22,.16);
  background: rgba(255,255,255,.68);
}

.menu-tools {
  position: sticky;
  top: 0;
  z-index: 20;
  margin: 16px 0 22px;
  border-radius: 28px;
  padding: 12px;
  background: rgba(255, 248, 232, .82);
  transition: box-shadow .25s ease, transform .25s ease, background .25s ease;
}
.menu-tools.is-scrolled { background: rgba(255, 250, 239, .94); box-shadow: 0 22px 50px rgba(78,18,12,.16); }
.search-box {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 10px;
  min-height: 54px;
  border: 1px solid rgba(168,21,22,.16);
  border-radius: 19px;
  padding: 0 14px;
  background: rgba(255,255,255,.70);
}
.search-box span { color: var(--red); font-size: 20px; font-weight: 1000; }
.search-box input {
  width: 100%;
  min-height: 52px;
  border: 0;
  outline: 0;
  color: var(--ink);
  background: transparent;
  font-weight: 850;
}
.search-box input::placeholder { color: rgba(118,104,93,.72); }
.clear-link { color: var(--red); font-size: 13px; font-weight: 1000; }
.category-track {
  display: flex;
  gap: 8px;
  margin-top: 10px;
  overflow-x: auto;
  padding-bottom: 3px;
  scrollbar-width: none;
  scroll-snap-type: x proximity;
}
.category-track::-webkit-scrollbar { display: none; }
.category-chip {
  flex: 0 0 auto;
  scroll-snap-align: start;
  border: 1px solid rgba(168,21,22,.14);
  border-radius: 999px;
  padding: 10px 14px;
  color: var(--red-2);
  background: rgba(255,255,255,.64);
  font-size: 14px;
  font-weight: 800;
  transition: transform .18s ease, background .18s ease, color .18s ease;
}
.category-chip:hover { transform: translateY(-1px); }
.category-chip.active { color: #fff8df; border-color: var(--red); background: linear-gradient(135deg, var(--red), var(--red-2)); box-shadow: 0 11px 22px rgba(168,21,22,.19); }

.spotlight,
.menu-section,
.footer-panel,
.empty-state {
  border-radius: var(--radius-lg);
  background: var(--glass-strong);
}
.spotlight { padding: clamp(16px, 3vw, 28px); margin-bottom: 22px; }
.section-title {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: flex-end;
  margin-bottom: 16px;
}
.section-title span {
  color: var(--red);
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: 12px;
  font-weight: 800;
}
.section-title h2 {
  margin: 0;
  color: #211a17;
  font-size: clamp(28px, 4.2vw, 48px);
  line-height: .95;
  letter-spacing: -.055em;
  font-weight: 800;
}
.spotlight-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 13px;
}
.spotlight-card {
  min-height: 158px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  position: relative;
  border: 1px solid rgba(168,21,22,.14);
  border-radius: 24px;
  padding: 17px;
  background:
    linear-gradient(150deg, rgba(255,255,255,.88), rgba(255,238,202,.78)),
    radial-gradient(circle at 100% 0%, rgba(168,21,22,.18), transparent 62%);
  transition: transform .28s cubic-bezier(.2,.8,.2,1), box-shadow .28s ease;
}
.spotlight-card::after {
  content: "";
  position: absolute;
  right: -24px;
  bottom: -24px;
  width: 88px;
  aspect-ratio: 1;
  border-radius: 50%;
  border: 18px solid rgba(255,207,32,.25);
}
.spotlight-card:hover { transform: translateY(-4px) rotate(-.2deg); box-shadow: 0 20px 42px rgba(83,24,11,.13); }
.spotlight-card h3 { margin: 12px 0 4px; font-size: 19px; line-height: 1.1; letter-spacing: -.025em; }
.spotlight-card p { margin: 0; color: var(--muted); font-size: 13px; font-weight: 850; }
.spotlight-card strong { margin-top: 14px; color: var(--red); }
.tiny-badge,
.badge {
  align-self: flex-start;
  border-radius: 999px;
  padding: 7px 10px;
  color: #fff8df;
  background: linear-gradient(135deg, var(--red), var(--red-2));
  font-size: 12px;
  font-weight: 800;
}
.muted-price { color: var(--muted) !important; }

.menu-section {
  margin-bottom: 22px;
  padding: clamp(16px, 3vw, 28px);
  scroll-margin-top: 136px;
}
.item-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.item-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(168,21,22,.13);
  border-radius: 26px;
  background: rgba(255,255,255,.72);
  box-shadow: 0 10px 30px rgba(83,24,11,.06);
  transition: transform .28s cubic-bezier(.2,.8,.2,1), box-shadow .28s ease, border-color .28s ease;
}
.item-card:hover { transform: translateY(-5px); border-color: rgba(168,21,22,.25); box-shadow: 0 22px 48px rgba(83,24,11,.14); }
.item-media {
  position: relative;
  height: clamp(175px, 19vw, 230px);
  overflow: hidden;
  background: #efd7aa;
}
.item-media img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .5s cubic-bezier(.2,.8,.2,1); }
.item-card:hover .item-media > img { transform: scale(1.045); }
.zingo-placeholder {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 8px;
  background:
    radial-gradient(circle at 22% 16%, rgba(255,207,32,.32), transparent 45%),
    linear-gradient(145deg, rgba(255,248,232,.98), rgba(231,202,152,.88)),
    repeating-linear-gradient(90deg, rgba(168,21,22,.12) 0 10px, transparent 10px 20px);
}
.zingo-placeholder img { width: 124px; height: 124px; filter: drop-shadow(0 12px 20px rgba(83,24,11,.12)); }
.zingo-placeholder span {
  display: inline-flex;
  border-radius: 999px;
  padding: 7px 12px;
  color: var(--red-2);
  background: rgba(255,255,255,.58);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .11em;
  text-transform: uppercase;
}
.badge { position: absolute; left: 13px; bottom: 13px; box-shadow: 0 10px 22px rgba(168,21,22,.18); }
.item-body { padding: 16px; }
.item-title-line { display: flex; align-items: flex-start; justify-content: space-between; gap: 12px; }
.item-title-line h3 { margin: 0; font-size: 20px; line-height: 1.12; letter-spacing: -.032em; font-weight: 1000; }
.item-title-line strong { flex: 0 0 auto; white-space: nowrap; color: var(--red); font-size: 15px; font-weight: 1000; }
.item-body p { margin: 10px 0 0; color: var(--muted); line-height: 1.48; font-size: 14px; font-weight: 620; }
.item-meta { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 13px; }
.item-meta span {
  border-radius: 999px;
  padding: 6px 9px;
  color: var(--red-2);
  background: rgba(168,21,22,.075);
  font-size: 12px;
  font-weight: 900;
}

.footer-panel,
.empty-state {
  margin-top: 22px;
  padding: 24px;
  text-align: center;
}
.footer-panel {
  display: grid;
  gap: 13px;
  color: var(--muted);
}
.footer-panel strong { display: block; color: var(--red); font-size: 22px; font-weight: 1000; }
.footer-links { display: flex; justify-content: center; flex-wrap: wrap; gap: 12px; }
.footer-links a { color: var(--red-2); font-weight: 1000; }
.credit { margin: 0; color: var(--ink-soft); font-size: 13px; }
.credit b { color: var(--red); }
.empty-state h2 { margin: 0 0 8px; }
.empty-state p { margin: 0; color: var(--muted); }
.hidden { display: none !important; }

.floating-whatsapp {
  position: fixed;
  left: max(14px, env(safe-area-inset-left));
  bottom: max(14px, env(safe-area-inset-bottom));
  z-index: 30;
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 12px 17px;
  color: #fff;
  background: linear-gradient(135deg, #1bb35f, #0c8041);
  box-shadow: 0 18px 34px rgba(12,128,65,.27);
  font-weight: 1000;
}
.to-top {
  position: fixed;
  right: max(14px, env(safe-area-inset-right));
  bottom: max(14px, env(safe-area-inset-bottom));
  z-index: 30;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 999px;
  color: #fff8df;
  background: linear-gradient(135deg, var(--red), var(--red-2));
  box-shadow: 0 18px 34px rgba(168,21,22,.25);
  cursor: pointer;
  opacity: 0;
  transform: translateY(14px);
  pointer-events: none;
  transition: opacity .22s ease, transform .22s ease;
  font-size: 22px;
  font-weight: 1000;
}
.to-top.is-visible { opacity: 1; transform: translateY(0); pointer-events: auto; }

.reveal { opacity: 0; transform: translateY(18px); transition: opacity .62s ease, transform .62s cubic-bezier(.2,.8,.2,1); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@keyframes floatGlow {
  from { transform: translate3d(0,0,0) scale(1); }
  to { transform: translate3d(18px, -24px, 0) scale(1.08); }
}

@media (max-width: 1100px) {
  .spotlight-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .item-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 720px) {
  .site-shell { padding-inline: 10px; padding-bottom: 82px; }
  .hero-panel { border-radius: 30px; padding: 18px 16px 28px; }
  .hero-layout { grid-template-columns: 1fr; text-align: center; justify-items: center; gap: 16px; }
  .hero-status-row { align-items: stretch; }
  .live-pill, .share-button { min-height: 38px; font-size: 11px; padding-inline: 11px; }
  .brand-mark { width: min(150px, 44vw); }
  h1 { font-size: clamp(58px, 18vw, 88px); }
  .headline { font-size: clamp(24px, 7vw, 36px); }
  .bio-line { margin-inline: auto; }
  .hero-metrics { grid-template-columns: 1fr 1fr 1fr; gap: 7px; }
  .hero-metrics div { padding: 11px 8px; border-radius: 17px; }
  .hero-metrics strong { font-size: 20px; }
  .hero-metrics span { font-size: 10px; }
  .cta-row { display: grid; grid-template-columns: 1fr; }
  .cta { width: 100%; }
  .menu-tools { border-radius: 22px; }
  .section-title { display: block; }
  .section-title h2 { margin-top: 4px; }
  .spotlight-grid, .item-grid { grid-template-columns: 1fr; }
  .spotlight-card { min-height: 136px; }
  .item-media { height: 215px; }
  .item-title-line h3 { font-size: 19px; }
  .floating-whatsapp { right: 70px; justify-content: center; }
}

@media (max-width: 390px) {
  .hero-metrics { grid-template-columns: 1fr; }
  .search-box { grid-template-columns: auto 1fr; }
  .clear-link { grid-column: 1 / -1; padding: 0 0 10px 30px; }
  .item-media { height: 196px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
}


.share-button,
.cta,
.category-chip,
.footer-links a,
.floating-whatsapp,
.to-top,
.badge,
.tiny-badge,
.item-meta span,
.live-pill {
  letter-spacing: .02em;
}

.section-title span {
  font-family: var(--font-serif);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: .12em;
}

.section-title h2 {
  font-family: var(--font-serif);
  font-size: clamp(30px, 3.4vw, 42px);
  line-height: 1;
  letter-spacing: -.03em;
  font-weight: 700;
}

.item-title-line h3 {
  font-size: 19px;
  line-height: 1.2;
  letter-spacing: -.015em;
  font-weight: 800;
}

.item-title-line strong {
  font-size: 14px;
  font-weight: 800;
}

.item-body p {
  font-size: 14px;
  line-height: 1.62;
  font-weight: 500;
}

.footer-panel strong {
  font-family: var(--font-serif);
  font-size: 30px;
  font-weight: 700;
}

.credit {
  font-size: 14px;
  letter-spacing: .03em;
}

.credit b {
  font-family: var(--font-serif);
  font-size: 18px;
}

@media (max-width: 720px) {
  .eyebrow {
    font-size: 13px;
    letter-spacing: .14em;
  }
  h1 {
    font-size: clamp(42px, 14vw, 64px);
    line-height: .94;
  }
  .headline {
    font-size: clamp(22px, 7vw, 30px);
  }
  .hero-metrics span {
    font-size: 9px;
    letter-spacing: .08em;
  }
}


.menu-section,
.spotlight,
.footer-panel {
  content-visibility: auto;
  contain-intrinsic-size: 420px;
}

.item-card,
.spotlight-card,
.brand-mark,
.cta,
.category-chip {
  will-change: transform;
}

.search-box:focus-within {
  border-color: rgba(168,21,22,.26);
  box-shadow: 0 0 0 5px rgba(168,21,22,.06);
}

.item-card::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(115deg, transparent 0%, rgba(255,255,255,.32) 42%, transparent 62%);
  transform: translateX(-120%);
  transition: transform .7s cubic-bezier(.2,.8,.2,1);
}
.item-card:hover::after { transform: translateX(120%); }

.mobile-quickbar {
  position: fixed;
  left: max(10px, env(safe-area-inset-left));
  right: max(10px, env(safe-area-inset-right));
  bottom: max(10px, env(safe-area-inset-bottom));
  z-index: 45;
  display: none;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  padding: 8px;
  border: 1px solid rgba(168,21,22,.16);
  border-radius: 22px;
  background: rgba(255, 250, 239, .88);
  backdrop-filter: blur(18px) saturate(1.25);
  -webkit-backdrop-filter: blur(18px) saturate(1.25);
  box-shadow: 0 18px 40px rgba(83,24,11,.18);
}
.mobile-quickbar a {
  min-height: 42px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  color: var(--red-2);
  background: rgba(255,255,255,.70);
  font-size: 13px;
  font-weight: 800;
}
.mobile-quickbar a:first-child {
  color: #fff8df;
  background: linear-gradient(135deg, var(--red), var(--red-2));
}

@keyframes premiumPulse {
  from { transform: scale(1) translate3d(0,0,0); opacity: .78; }
  to { transform: scale(1.08) translate3d(-18px,-10px,0); opacity: .95; }
}


@media (max-width: 900px) {
  .hero-actions-note { justify-content: center; }
  .item-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 720px) {
  .site-shell { padding-bottom: 92px; }
  .hero-actions-note { display: grid; grid-template-columns: 1fr; width: 100%; margin-top: 18px; }
  .hero-actions-note span { text-align: left; }
  .mobile-quickbar { display: grid; }
  .floating-whatsapp { display: none; }
  .to-top { bottom: 78px; }
  h1::after { margin-inline: auto; }
  .item-grid { grid-template-columns: 1fr; }
  .category-chip { padding: 10px 13px; font-size: 13px; }
}

@media (hover: none) {
  .item-card:hover,
  .spotlight-card:hover,
  .feature-card:hover,
  .cta:hover,
  .category-chip:hover { transform: none; }
  .item-card::after { display: none; }
}

/* ===============================
   ZINGO photo viewer professional patch
   =============================== */
.item-photo-trigger {
  width: 100%;
  border: 0;
  padding: 0;
  display: block;
  cursor: zoom-in;
  text-align: inherit;
  font: inherit;
  color: inherit;
  appearance: none;
  -webkit-appearance: none;
}
.item-photo-trigger::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(0,0,0,0) 55%, rgba(37,16,10,.22) 100%),
    radial-gradient(circle at 80% 22%, rgba(255,255,255,.18), transparent 45%);
  opacity: .88;
  transition: opacity .28s ease;
}
.item-photo-trigger:hover::before { opacity: .55; }
.item-photo-trigger img {
  object-fit: cover;
  object-position: center 68%;
}
.item-photo-trigger:focus-visible {
  outline: 4px solid rgba(168,21,22,.28);
  outline-offset: -4px;
}
.view-photo-chip {
  position: absolute;
  right: 13px;
  bottom: 13px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border-radius: 999px;
  padding: 8px 12px;
  color: #fff8df;
  background: linear-gradient(135deg, rgba(168,21,22,.94), rgba(86,14,13,.96));
  box-shadow: 0 12px 28px rgba(83,24,11,.24);
  font-size: 12px;
  line-height: 1;
  font-weight: 850;
  letter-spacing: .01em;
  transition: transform .28s cubic-bezier(.2,.8,.2,1), box-shadow .28s ease;
}
.item-photo-trigger:hover .view-photo-chip {
  transform: translateY(-2px);
  box-shadow: 0 18px 36px rgba(83,24,11,.28);
}
.item-photo-trigger .badge { z-index: 3; }
.photo-viewer-open { overflow: hidden; }
.photo-viewer[hidden] { display: none !important; }
.photo-viewer {
  position: fixed;
  inset: 0;
  z-index: 5000;
  display: grid;
  place-items: center;
  padding: clamp(12px, 2.4vw, 34px);
}
.photo-viewer__shade {
  position: absolute;
  inset: 0;
  border: 0;
  padding: 0;
  cursor: zoom-out;
  background:
    radial-gradient(circle at 24% 18%, rgba(255,207,32,.16), transparent 28rem),
    radial-gradient(circle at 80% 12%, rgba(168,21,22,.22), transparent 26rem),
    rgba(15, 11, 10, .78);
  backdrop-filter: blur(22px) saturate(1.18);
  -webkit-backdrop-filter: blur(22px) saturate(1.18);
  opacity: 0;
  transition: opacity .26s ease;
}
.photo-viewer.is-open .photo-viewer__shade { opacity: 1; }
.photo-viewer__card {
  position: relative;
  z-index: 1;
  width: min(1120px, 100%);
  max-height: min(760px, calc(100svh - 36px));
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(280px, .75fr);
  overflow: hidden;
  border: 1px solid rgba(255, 248, 232, .42);
  border-radius: clamp(26px, 3vw, 42px);
  background:
    linear-gradient(135deg, rgba(255,252,244,.96), rgba(238,208,151,.94)),
    radial-gradient(circle at 100% 0%, rgba(168,21,22,.18), transparent 58%);
  box-shadow:
    0 48px 120px rgba(0,0,0,.48),
    0 0 0 1px rgba(255,255,255,.28) inset;
  opacity: 0;
  transform: translateY(20px) scale(.975);
  transition:
    opacity .34s ease,
    transform .42s cubic-bezier(.2,.8,.2,1);
  outline: 0;
}
.photo-viewer.is-open .photo-viewer__card {
  opacity: 1;
  transform: translateY(0) scale(1);
}
.photo-viewer__stage {
  position: relative;
  min-height: min(650px, calc(100svh - 90px));
  overflow: hidden;
  isolation: isolate;
  background: #1d1512;
}
.photo-viewer__stage::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(0,0,0,.10), transparent 18%, transparent 82%, rgba(0,0,0,.08)),
    linear-gradient(180deg, rgba(255,255,255,.08), transparent 42%, rgba(0,0,0,.16));
  mix-blend-mode: soft-light;
}
.photo-viewer__blur,
.photo-viewer__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
}
.photo-viewer__blur {
  z-index: 0;
  object-fit: cover;
  object-position: center 72%;
  filter: blur(28px) saturate(1.08) brightness(.9);
  transform: scale(1.12);
  opacity: .48;
}
.photo-viewer__image {
  z-index: 2;
  object-fit: cover;
  object-position: center 72%;
  transform: scale(1.015);
  transition: transform .55s cubic-bezier(.2,.8,.2,1), filter .55s ease;
}
.photo-viewer.is-open .photo-viewer__image { transform: scale(1); }
.photo-viewer__shine {
  position: absolute;
  inset: -40% auto auto -18%;
  z-index: 4;
  width: 42%;
  height: 180%;
  pointer-events: none;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.22), transparent);
  transform: rotate(18deg) translateX(-140%);
  transition: transform .9s cubic-bezier(.2,.8,.2,1) .18s;
}
.photo-viewer.is-open .photo-viewer__shine { transform: rotate(18deg) translateX(330%); }
.photo-viewer__details {
  position: relative;
  z-index: 5;
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: end;
  padding: clamp(22px, 4.2vw, 54px);
  background:
    radial-gradient(circle at 100% 0%, rgba(255,207,32,.18), transparent 40%),
    linear-gradient(135deg, rgba(255,249,236,.88), rgba(234,208,160,.78));
}
.photo-viewer__details::before {
  content: "ZINGO";
  position: absolute;
  top: 32px;
  right: 30px;
  color: rgba(123,17,16,.055);
  font-size: clamp(48px, 8vw, 92px);
  line-height: 1;
  font-weight: 900;
  letter-spacing: -.08em;
  pointer-events: none;
}
.photo-viewer__category {
  width: fit-content;
  border-radius: 999px;
  padding: 8px 12px;
  color: #fff8df;
  background: linear-gradient(135deg, var(--red), var(--red-2));
  box-shadow: 0 12px 24px rgba(168,21,22,.18);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.photo-viewer__details h2 {
  position: relative;
  margin: 18px 0 12px;
  color: #25201d;
  font-family: var(--font-serif);
  font-size: clamp(34px, 4.8vw, 68px);
  line-height: .95;
  letter-spacing: -.035em;
  font-weight: 700;
}
.photo-viewer__price {
  width: fit-content;
  margin: 0;
  border-radius: 999px;
  padding: 10px 14px;
  color: var(--red-2);
  background: rgba(255,255,255,.66);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.6);
  font-size: 14px;
  font-weight: 850;
}
.photo-viewer__details small {
  margin-top: 22px;
  color: rgba(57,48,43,.58);
  font-size: 12px;
  font-weight: 650;
}
.photo-viewer__close {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 9;
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.42);
  border-radius: 999px;
  cursor: pointer;
  color: #fff8df;
  background:
    radial-gradient(circle at 30% 20%, rgba(255,255,255,.22), transparent 40%),
    linear-gradient(135deg, rgba(168,21,22,.95), rgba(82,13,12,.94));
  box-shadow:
    0 18px 38px rgba(83,24,11,.28),
    inset 0 1px 0 rgba(255,255,255,.25);
  backdrop-filter: blur(14px) saturate(1.2);
  -webkit-backdrop-filter: blur(14px) saturate(1.2);
  transition: transform .22s ease, box-shadow .22s ease, background .22s ease;
}
.photo-viewer__close span {
  display: block;
  transform: translateY(-1px);
  font-size: 31px;
  line-height: 1;
  font-weight: 300;
}
.photo-viewer__close:hover {
  transform: translateY(-2px) scale(1.04);
  box-shadow:
    0 24px 48px rgba(83,24,11,.34),
    inset 0 1px 0 rgba(255,255,255,.25);
}
.photo-viewer__close:focus-visible {
  outline: 4px solid rgba(255,207,32,.42);
  outline-offset: 4px;
}

@media (max-width: 980px) {
  .photo-viewer__card {
    grid-template-columns: 1fr;
    width: min(680px, 100%);
    max-height: calc(100svh - 24px);
    overflow: auto;
    scrollbar-width: none;
  }
  .photo-viewer__card::-webkit-scrollbar { display: none; }
  .photo-viewer__stage {
    min-height: min(62svh, 560px);
    aspect-ratio: 1 / .82;
  }
  .photo-viewer__details {
    padding: 22px 22px 26px;
  }
  .photo-viewer__details::before {
    top: 16px;
    right: 22px;
    font-size: 54px;
  }
  .photo-viewer__details h2 {
    font-size: clamp(34px, 10vw, 52px);
  }
}

@media (max-width: 540px) {
  .photo-viewer { padding: 10px; }
  .photo-viewer__card { border-radius: 28px; }
  .photo-viewer__stage {
    min-height: 58svh;
    aspect-ratio: 1 / .95;
  }
  .photo-viewer__image,
  .photo-viewer__blur {
    object-position: center 70%;
  }
  .photo-viewer__close {
    top: 12px;
    right: 12px;
    width: 44px;
    height: 44px;
  }
  .photo-viewer__close span { font-size: 28px; }
  .view-photo-chip { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  .photo-viewer__card,
  .photo-viewer__shade,
  .photo-viewer__image,
  .photo-viewer__shine,
  .view-photo-chip {
    transition: none !important;
  }
}
