/* L&D Nuts, Dryfruits & Spices
   Palette: deep emerald / bone / amber, from the shop's logo.
   Type: Cormorant Garamond (display), Outfit (body). Single dark theme. */

:root {
  --ink: #06201a;
  --ink-2: #0a2b21;
  --emerald: #0e3a2c;
  --emerald-soft: #144736;
  --bone: #f1e9d6;
  --bone-dim: #b9b19a;
  --amber: #d9a441;
  --amber-bright: #eac26a;
  --line: rgba(241, 233, 214, 0.13);
  --font-display: "Cormorant Garamond", serif;
  --font-body: "Outfit", sans-serif;
  --nav-h: 80px;
  --radius: 14px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

/* the hidden attribute always wins, even over display rules below
   (fixes the cart drawer showing up open on page load) */
[hidden] { display: none !important; }

html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

body {
  background: var(--ink);
  color: var(--bone);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

a { color: inherit; text-decoration: none; }

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

.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

/* film grain, fixed so it never repaints on scroll */
.grain {
  position: fixed;
  inset: 0;
  z-index: 60;
  pointer-events: none;
  opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
}

/* ---------- nav ---------- */

.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  gap: 2rem;
  padding: 0 clamp(1rem, 4vw, 3rem);
  background: color-mix(in srgb, var(--ink) 82%, transparent);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-right: auto;
}

.nav-logo {
  width: 58px; height: 58px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(217, 164, 65, 0.55);
  box-shadow: 0 0 0 3px rgba(217, 164, 65, 0.12);
}

.nav-wordmark {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.6rem;
  letter-spacing: 0.02em;
}
.nav-wordmark em {
  font-style: italic;
  color: var(--amber);
}
.nav-wordmark span {
  display: none;
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 0.78rem;
  color: var(--bone-dim);
  margin-left: 0.6rem;
  letter-spacing: 0.04em;
}
@media (min-width: 1100px) {
  .nav-wordmark span { display: inline; }
}

.nav-links {
  display: flex;
  gap: 1.8rem;
  font-size: 0.92rem;
  font-weight: 400;
}
.nav-links a {
  position: relative;
  padding: 0.3rem 0;
  color: var(--bone-dim);
  transition: color 0.25s ease;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 100%;
  height: 1px;
  background: var(--amber);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s ease;
}
.nav-links a:hover { color: var(--bone); }
.nav-links a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}
@media (max-width: 1080px) {
  .nav-links { display: none; }
}
@media (max-width: 540px) {
  .nav-cta { display: none; }
}

/* ---------- buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.85rem 1.6rem;
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  white-space: nowrap;
  transition: transform 0.2s ease, background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}
.btn:active { transform: translateY(1px) scale(0.98); }

.btn-gold {
  background: var(--amber);
  color: #241a06;
}
.btn-gold:hover { background: var(--amber-bright); }

.btn-ghost {
  border: 1px solid var(--line);
  color: var(--bone);
}
.btn-ghost:hover { border-color: var(--amber); color: var(--amber-bright); }

.btn-whatsapp {
  background: transparent;
  border: 1px solid var(--line);
  color: var(--bone);
}
.btn-whatsapp:hover {
  background: #1da851;
  border-color: #1da851;
  color: #ffffff;
}
.nav-cta { padding: 0.6rem 1.2rem; font-size: 0.88rem; }
.btn-large { padding: 1.05rem 2.2rem; font-size: 1.05rem; }

/* ---------- shared type ---------- */

.eyebrow {
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--amber);
  margin-bottom: 1.1rem;
}

.section-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2.2rem, 4.5vw, 3.6rem);
  line-height: 1.08;
  letter-spacing: 0.005em;
}

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

.hero {
  min-height: 100dvh;
  display: flex;
  align-items: center;
  padding: calc(var(--nav-h) + 2rem) clamp(1rem, 4vw, 3rem) 3rem;
}

.hero-inner {
  width: min(1280px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: clamp(2rem, 5vw, 5rem);
}

.hero-eyebrow { margin-bottom: 1.4rem; }

.hero-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(3rem, 7.2vw, 5.8rem);
  line-height: 1.1;
  letter-spacing: 0.005em;
}
.hero-title .line {
  display: block;
  overflow: hidden;
  padding-bottom: 0.12em;
  margin-bottom: -0.06em;
}
.hero-title .line > span { display: inline-block; }
.hero-title em {
  font-style: italic;
  color: var(--amber-bright);
}

.hero-sub {
  margin-top: 1.5rem;
  max-width: 46ch;
  font-size: 1.06rem;
  color: var(--bone-dim);
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2.2rem;
}

.hero-visual {
  position: relative;
  justify-self: center;
}

.hero-arch {
  width: clamp(280px, 34vw, 460px);
  aspect-ratio: 4 / 5.4;
  border-radius: 999px 999px var(--radius) var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: 0 40px 90px rgba(0, 0, 0, 0.45);
}
.hero-arch img {
  width: 100%; height: 100%;
  object-fit: cover;
}

.hero-chip {
  position: absolute;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--emerald-soft);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.5);
}
.hero-chip img { width: 100%; height: 100%; object-fit: cover; }
.chip-1 { width: 108px; height: 108px; top: 6%; left: -54px; }
.chip-2 { width: 88px; height: 88px; bottom: 20%; right: -40px; }
.chip-3 { width: 96px; height: 96px; bottom: -26px; left: 12%; }

@media (max-width: 900px) {
  .hero { padding-top: calc(var(--nav-h) + 1rem); }
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { margin-top: 1rem; }
  .chip-1 { left: -10px; }
  .chip-2 { right: -8px; }
}

/* ---------- vanta fog background (whole page) ---------- */

.vanta-bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.nav, main, .footer { position: relative; z-index: 1; }

/* ---------- hero floaters: ingredients drifting in the air ---------- */

.hero { position: relative; }
.hero-copy, .hero-visual { position: relative; z-index: 1; }

.hero-floaters {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.floater {
  position: absolute;
  border-radius: 50%;
  object-fit: cover;
  opacity: 0.4;
  border: 1px solid var(--line);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.4);
  will-change: transform;
}
.floater.f1 { width: 72px; height: 72px; top: 16%; left: 4%; }
.floater.f2 { width: 56px; height: 56px; top: 64%; left: 10%; }
.floater.f3 { width: 64px; height: 64px; top: 26%; left: 44%; }
.floater.f4 { width: 48px; height: 48px; top: 76%; left: 52%; }
.floater.f5 { width: 52px; height: 52px; top: 10%; right: 6%; }
.floater.f6 { width: 84px; height: 84px; bottom: 6%; right: 3%; }
@media (max-width: 900px) {
  .floater.f3, .floater.f4 { display: none; }
  .floater { opacity: 0.28; }
}

/* ---------- ticker ribbons: two crossing offer bands ---------- */

.ribbons {
  position: relative;
  padding: 3.2rem 0 3.6rem;
  overflow: hidden;
}

.ribbon {
  position: relative;
  width: 112%;
  left: -6%;
  overflow: hidden;
}
.ribbon-gold {
  background: var(--amber);
  transform: rotate(-1.6deg);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
  z-index: 2;
}
.ribbon-green {
  background: var(--emerald-soft);
  border-top: 1px solid rgba(217, 164, 65, 0.35);
  border-bottom: 1px solid rgba(217, 164, 65, 0.35);
  transform: rotate(1.1deg);
  margin-top: -0.7rem;
  z-index: 1;
}

.ribbon-track {
  display: flex;
  width: max-content;
  will-change: transform;
}

.ribbon-group {
  display: flex;
  align-items: center;
  gap: 2.2rem;
  padding: 0.85rem 2.2rem 0.85rem 0;
}

.ribbon-group span {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  white-space: nowrap;
}
.ribbon-gold .ribbon-group span { color: #241a06; }
.ribbon-green .ribbon-group span { color: var(--amber-bright); }

.ribbon-group i {
  width: 7px; height: 7px;
  transform: rotate(45deg);
  flex: none;
}
.ribbon-gold .ribbon-group i { background: #241a06; }
.ribbon-green .ribbon-group i { background: var(--amber); }

/* ---------- wavy section dividers ---------- */

.wave {
  display: block;
  line-height: 0;
  margin-bottom: -1px;
  margin-top: clamp(4rem, 8vw, 7rem);
}
.wave svg {
  display: block;
  width: 100%;
  height: clamp(42px, 7vw, 90px);
}
.wave-contact { margin-top: clamp(5rem, 10vw, 9rem); }

/* ---------- story ---------- */

.story {
  padding: clamp(5rem, 10vw, 9rem) clamp(1rem, 4vw, 3rem) 0;
}

.story-inner {
  width: min(1280px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(2.5rem, 6vw, 6rem);
  align-items: center;
}

.story-copy p {
  margin-top: 1.4rem;
  color: var(--bone-dim);
  max-width: 44ch;
  font-size: 1.04rem;
}

.story-media {
  position: relative;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
}

.story-img {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
}
.story-img img { width: 100%; height: 100%; object-fit: cover; }
.img-a {
  grid-column: 1 / 9;
  aspect-ratio: 4 / 3;
}
.img-b {
  grid-column: 7 / 13;
  aspect-ratio: 3 / 4;
  margin-top: -22%;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.5);
}

.story-stats {
  width: min(1280px, 100%);
  margin: clamp(4rem, 8vw, 7rem) auto 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
}

.stat {
  padding: 2rem 1.5rem;
}
.stat + .stat { border-left: 1px solid var(--line); }
.stat dt {
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--bone-dim);
}
.stat dd {
  margin-top: 0.5rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  color: var(--amber-bright);
  font-variant-numeric: tabular-nums;
}

@media (max-width: 900px) {
  .story-inner { grid-template-columns: 1fr; }
  .story-stats { grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(3) { border-left: none; }
  .stat { border-top: 1px solid var(--line); margin-top: -1px; }
}

/* ---------- route (pinned horizontal) ---------- */

.route {
  background: rgba(10, 43, 33, 0.78);
  border-bottom: 1px solid var(--line);
}

.route-pin {
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: clamp(2rem, 4vh, 3.5rem);
  padding: calc(var(--nav-h) + 1.5rem) 0 3rem;
  overflow: hidden;
}

.route-head {
  padding: 0 clamp(1rem, 4vw, 3rem);
  width: min(1280px, 100%);
  margin: 0 auto;
}

.route-track {
  display: flex;
  gap: clamp(1.2rem, 2.5vw, 2.5rem);
  padding: 0 clamp(1rem, 4vw, 3rem);
  width: max-content;
}

.route-panel {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  width: min(760px, 82vw);
  background: var(--emerald);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  flex: none;
}

.route-panel figure {
  overflow: hidden;
}
.route-panel figure img {
  width: 100%; height: 100%;
  object-fit: cover;
  aspect-ratio: 4 / 3.4;
}

.route-info {
  padding: clamp(1.4rem, 2.5vw, 2.4rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.route-info h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  line-height: 1.1;
}
.route-info p {
  margin-top: 0.9rem;
  color: var(--bone-dim);
  font-size: 0.98rem;
}
.route-price {
  color: var(--amber-bright) !important;
  font-weight: 500;
  font-variant-numeric: tabular-nums;
}

@media (max-width: 899px) {
  .route-pin { min-height: 0; }
  .route-track {
    width: auto;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 1rem;
  }
  .route-panel {
    scroll-snap-align: center;
    grid-template-columns: 1fr;
    width: 78vw;
  }
  .route-panel figure img { aspect-ratio: 16 / 10; }
}

/* ---------- featured ---------- */

.featured {
  padding: clamp(5rem, 10vw, 9rem) clamp(1rem, 4vw, 3rem) 0;
  width: min(1280px, 100%);
  margin: 0 auto;
}

.featured-grid {
  margin-top: clamp(2.5rem, 5vw, 4rem);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(1rem, 2vw, 1.8rem);
}

.card {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--ink-2);
  transition: border-color 0.3s ease, transform 0.3s ease;
}
.card:hover {
  border-color: rgba(217, 164, 65, 0.45);
  transform: translateY(-4px);
}

.card figure {
  overflow: hidden;
  aspect-ratio: 4 / 3;
}
.card figure img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.card:hover figure img { transform: scale(1.06); }

.card-meta {
  padding: 1.1rem 1.2rem 1.3rem;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: baseline;
  column-gap: 0.8rem;
}
.card-meta h3 {
  grid-column: 1 / -1;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.35rem;
  line-height: 1.15;
}
.card-meta p {
  font-size: 0.85rem;
  color: var(--bone-dim);
  margin-top: 0.3rem;
}
.card-meta strong {
  font-weight: 600;
  color: var(--amber-bright);
  font-size: 1.05rem;
  font-variant-numeric: tabular-nums;
}

@media (max-width: 1000px) {
  .featured-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 540px) {
  .featured-grid { grid-template-columns: 1fr; }
}

/* ---------- gifts ---------- */

.gifts {
  padding: clamp(5rem, 10vw, 9rem) clamp(1rem, 4vw, 3rem) 0;
  width: min(1280px, 100%);
  margin: 0 auto;
}

.gifts-head p {
  margin-top: 1.2rem;
  color: var(--bone-dim);
  max-width: 52ch;
}

.gifts-grid {
  margin-top: clamp(2.5rem, 5vw, 4rem);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1rem, 2vw, 1.8rem);
}

.gift {
  position: relative;
  padding: 2rem 1.8rem 1.8rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(160deg, var(--emerald) 0%, var(--ink-2) 80%);
  overflow: hidden;
  transition: border-color 0.3s ease;
}
.gift::before {
  content: "";
  position: absolute;
  top: 0; left: 1.8rem; right: 1.8rem;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--amber), transparent);
  opacity: 0;
  transition: opacity 0.35s ease;
}
.gift:hover { border-color: rgba(217, 164, 65, 0.4); }
.gift:hover::before { opacity: 1; }

.gift h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.6rem;
}
.gift p {
  margin-top: 0.7rem;
  color: var(--bone-dim);
  font-size: 0.95rem;
  min-height: 3em;
}
.gift strong {
  display: block;
  margin-top: 1.2rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 2rem;
  color: var(--amber-bright);
  font-variant-numeric: tabular-nums;
}

@media (max-width: 900px) {
  .gifts-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .gifts-grid { grid-template-columns: 1fr; }
}

/* ---------- price list ---------- */

.prices {
  padding: clamp(5rem, 10vw, 9rem) clamp(1rem, 4vw, 3rem) 0;
  width: min(1080px, 100%);
  margin: 0 auto;
}

.prices-tools {
  margin-top: 2.2rem;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.search-wrap input {
  width: 100%;
  max-width: 420px;
  padding: 0.9rem 1.3rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--ink-2);
  color: var(--bone);
  font-family: var(--font-body);
  font-size: 0.98rem;
  font-weight: 300;
}
.search-wrap input::placeholder { color: var(--bone-dim); opacity: 0.75; }
.search-wrap input:focus {
  outline: 2px solid var(--amber);
  outline-offset: 2px;
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.chip {
  padding: 0.45rem 1.05rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--bone-dim);
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 400;
  cursor: pointer;
  transition: all 0.22s ease;
}
.chip:hover { color: var(--bone); border-color: var(--bone-dim); }
.chip[aria-pressed="true"] {
  background: var(--amber);
  border-color: var(--amber);
  color: #241a06;
  font-weight: 500;
}

.price-list {
  margin-top: 2.5rem;
}

.price-group + .price-group { margin-top: 2.8rem; }

.price-group h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.7rem;
  color: var(--bone);
  padding-bottom: 0.7rem;
  border-bottom: 1px solid var(--line);
}

.price-row {
  display: grid;
  grid-template-columns: auto 1fr auto auto auto;
  gap: 1rem;
  align-items: center;
  padding: 0.55rem 0.8rem;
  border-radius: 10px;
  font-size: 0.98rem;
}
.price-row:nth-child(even) { background: rgba(241, 233, 214, 0.035); }

.p-thumb {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid var(--line);
  background: var(--ink-2);
}
.price-row .p-name { font-weight: 400; }
.price-row .p-pack {
  color: var(--bone-dim);
  font-size: 0.86rem;
  text-align: right;
}
.price-row .p-price {
  font-weight: 600;
  color: var(--amber-bright);
  font-variant-numeric: tabular-nums;
  min-width: 4.5em;
  text-align: right;
}

.price-empty {
  margin-top: 2.5rem;
  padding: 3rem 1.5rem;
  text-align: center;
  border: 1px dashed var(--line);
  border-radius: var(--radius);
  color: var(--bone-dim);
}
.price-empty strong { color: var(--bone); font-weight: 500; }

.prices-note {
  margin-top: 2.2rem;
  font-size: 0.85rem;
  color: var(--bone-dim);
}

@media (max-width: 560px) {
  .price-row { grid-template-columns: auto 1fr auto auto; row-gap: 0.1rem; }
  .p-thumb { grid-row: 1 / 3; }
  .price-row .p-pack { grid-column: 2; text-align: left; }
  .price-row .p-price { grid-row: 1; grid-column: 3; }
  .price-row .add-btn { grid-row: 1 / 3; grid-column: 4; }
}

/* ---------- nav search + results panel ---------- */

.nav-search {
  flex: 1;
  max-width: 340px;
}
.nav-search input {
  width: 100%;
  padding: 0.62rem 1.1rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--ink-2);
  color: var(--bone);
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 300;
}
.nav-search input::placeholder { color: var(--bone-dim); opacity: 0.7; }
.nav-search input:focus { outline: 2px solid var(--amber); outline-offset: 2px; }
@media (max-width: 700px) {
  .nav-wordmark { display: none; }
}

.search-panel {
  position: fixed;
  top: var(--nav-h);
  left: 0; right: 0;
  z-index: 49;
  max-height: min(64vh, 560px);
  overflow-y: auto;
  background: color-mix(in srgb, var(--ink) 94%, transparent);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(217, 164, 65, 0.35);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
}
.search-panel-inner {
  width: min(1080px, 100%);
  margin: 0 auto;
  padding: 1.4rem clamp(1rem, 4vw, 3rem) 1.8rem;
}
.search-panel-head {
  font-size: 0.85rem;
  color: var(--bone-dim);
  margin-bottom: 1rem;
}
.search-results {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 0.8rem;
}
.search-card {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 0.9rem;
  align-items: center;
  padding: 0.7rem 0.9rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--ink-2);
}
.search-card img {
  width: 60px; height: 60px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid var(--line);
}
.search-card h4 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.15rem;
  line-height: 1.15;
}
.search-card p { font-size: 0.8rem; color: var(--bone-dim); margin-top: 0.15rem; }
.search-card strong { color: var(--amber-bright); font-variant-numeric: tabular-nums; }

/* ---------- add-to-cart buttons ---------- */

.add-btn {
  padding: 0.5rem 1.05rem;
  border-radius: 999px;
  border: 1px solid rgba(217, 164, 65, 0.5);
  background: transparent;
  color: var(--amber-bright);
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s ease, color 0.2s ease, transform 0.15s ease;
}
.add-btn:hover { background: var(--amber); color: #241a06; }
.add-btn:active { transform: scale(0.96); }

/* ---------- featured carousel ---------- */

.carousel {
  margin-top: clamp(2rem, 4vw, 3rem);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: clamp(0.6rem, 2vw, 1.6rem);
}

.car-stage {
  position: relative;
  overflow: hidden;
  min-height: 380px;
  border-radius: var(--radius);
}

.car-card {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  background: var(--emerald);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}
.car-card figure { overflow: hidden; }
.car-card figure img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.car-info {
  padding: clamp(1.4rem, 3vw, 2.6rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.7rem;
  align-items: flex-start;
}
.car-cat {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--amber);
}
.car-info h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.7rem, 3vw, 2.5rem);
  line-height: 1.08;
}
.car-desc {
  color: var(--bone-dim);
  font-size: 0.98rem;
  max-width: 42ch;
}
.car-specs {
  display: flex;
  gap: 2.2rem;
  margin: 0.4rem 0 0.5rem;
}
.car-specs dt {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--bone-dim);
}
.car-specs dd {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.5rem;
  color: var(--amber-bright);
  font-variant-numeric: tabular-nums;
}
.car-info .add-btn { padding: 0.7rem 1.5rem; font-size: 0.95rem; }

.car-btn {
  width: 52px; height: 52px;
  border-radius: 50%;
  border: 1px solid rgba(217, 164, 65, 0.5);
  background: var(--ink-2);
  color: var(--amber-bright);
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, transform 0.15s ease;
}
.car-btn:hover { background: var(--amber); color: #241a06; }
.car-btn:active { transform: scale(0.94); }

.car-dots {
  margin-top: 1.1rem;
  display: flex;
  justify-content: center;
  gap: 0.45rem;
}
.car-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--line);
  transition: background 0.25s ease, transform 0.25s ease;
}
.car-dot.on { background: var(--amber); transform: scale(1.25); }

@media (max-width: 820px) {
  .car-stage { min-height: 560px; }
  .car-card { grid-template-columns: 1fr; }
  .car-card figure img { aspect-ratio: 16 / 10; }
}

/* ---------- cart ---------- */

.cart-fab {
  position: fixed;
  right: clamp(1rem, 3vw, 2rem);
  bottom: clamp(1rem, 3vw, 2rem);
  z-index: 70;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.9rem 1.5rem;
  border-radius: 999px;
  border: none;
  background: var(--amber);
  color: #241a06;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.55);
  transition: background 0.2s ease, transform 0.15s ease;
}
.cart-fab:hover { background: var(--amber-bright); }
.cart-fab:active { transform: scale(0.97); }

.cart-scrim {
  position: fixed;
  inset: 0;
  z-index: 80;
  background: rgba(3, 14, 11, 0.6);
  backdrop-filter: blur(3px);
}

.cart-drawer {
  position: fixed;
  top: 0; right: 0; bottom: 0;
  z-index: 81;
  width: min(430px, 94vw);
  display: flex;
  flex-direction: column;
  background: var(--ink-2);
  border-left: 1px solid rgba(217, 164, 65, 0.35);
  box-shadow: -30px 0 70px rgba(0, 0, 0, 0.55);
}

.cart-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.3rem 1.5rem;
  border-bottom: 1px solid var(--line);
}
.cart-head h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.6rem;
}
.cart-close {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--bone);
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: border-color 0.2s ease, color 0.2s ease;
}
.cart-close:hover { border-color: var(--amber); color: var(--amber-bright); }

.cart-items {
  flex: 1;
  overflow-y: auto;
  padding: 1rem 1.5rem;
}
.cart-empty {
  color: var(--bone-dim);
  padding: 2rem 0;
  text-align: center;
}
.cart-row {
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  gap: 0.8rem;
  align-items: center;
  padding: 0.7rem 0;
  border-bottom: 1px solid var(--line);
}
.cart-row img {
  width: 44px; height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid var(--line);
}
.cart-row-info { display: flex; flex-direction: column; gap: 0.1rem; }
.cart-row-name { font-size: 0.92rem; font-weight: 400; line-height: 1.25; }
.cart-row-pack { font-size: 0.78rem; color: var(--bone-dim); }
.cart-qty {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.cart-qty button {
  width: 26px; height: 26px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--bone);
  font-size: 0.95rem;
  line-height: 1;
  cursor: pointer;
  transition: border-color 0.2s ease, color 0.2s ease;
}
.cart-qty button:hover { border-color: var(--amber); color: var(--amber-bright); }
.cart-qty span { min-width: 1.2em; text-align: center; font-variant-numeric: tabular-nums; }
.cart-row-total {
  color: var(--amber-bright);
  font-variant-numeric: tabular-nums;
  font-size: 0.95rem;
}

.cart-foot {
  padding: 1.2rem 1.5rem 1.5rem;
  border-top: 1px solid var(--line);
}
.cart-subtotal {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-size: 1rem;
}
.cart-subtotal strong {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.9rem;
  color: var(--amber-bright);
  font-variant-numeric: tabular-nums;
}
.cart-note {
  margin-top: 0.3rem;
  font-size: 0.8rem;
  color: var(--bone-dim);
}
.cart-order {
  width: 100%;
  justify-content: center;
  margin-top: 1.1rem;
}

/* ---------- shelves ---------- */

.shelves {
  margin-top: clamp(2rem, 4vw, 3.2rem);
  display: flex;
  flex-direction: column;
  gap: clamp(2.2rem, 4vw, 3.4rem);
}

.shelf-head {
  display: flex;
  align-items: baseline;
  gap: 0.9rem;
  margin-bottom: 1rem;
}
.shelf-head h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.6rem, 2.6vw, 2.2rem);
}
.shelf-head span {
  font-size: 0.82rem;
  color: var(--bone-dim);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.shelf-viewport {
  overflow: hidden;
  border-radius: var(--radius);
}

.shelf-track {
  display: flex;
  gap: 0.9rem;
  width: max-content;
  will-change: transform;
}

.shelf-card {
  width: 200px;
  flex: none;
  background: rgba(10, 43, 33, 0.82);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.25s ease;
}
.shelf-card:hover { border-color: rgba(217, 164, 65, 0.5); }
.shelf-card figure {
  aspect-ratio: 4 / 3;
  overflow: hidden;
}
.shelf-card figure img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.shelf-card-body {
  padding: 0.8rem 0.9rem 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  align-items: flex-start;
}
.shelf-card-body h4 {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.92rem;
  line-height: 1.3;
  min-height: 2.4em;
}
.shelf-card-body p {
  font-size: 0.85rem;
  color: var(--bone-dim);
}
.shelf-card-body p strong {
  color: var(--amber-bright);
  font-variant-numeric: tabular-nums;
}
.shelf-card-body .add-btn {
  width: 100%;
  text-align: center;
}

@media (prefers-reduced-motion: reduce) {
  .shelf-viewport { overflow-x: auto; }
}

/* ---------- visit ---------- */

.visit {
  padding: clamp(4rem, 8vw, 7rem) clamp(1rem, 4vw, 3rem) 0;
  width: min(1280px, 100%);
  margin: 0 auto;
}
.visit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}
.visit-card {
  padding: 2rem 1.8rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(10, 43, 33, 0.82);
}
.visit-card h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.5rem;
  margin-bottom: 0.8rem;
  color: var(--amber-bright);
}
.visit-card address {
  font-style: normal;
  color: var(--bone);
  line-height: 1.7;
}
.visit-card p { color: var(--bone); }
.visit-card a { color: var(--amber-bright); font-weight: 500; }
.visit-card a:hover { text-decoration: underline; }
.visit-sub { margin-top: 0.4rem; font-size: 0.88rem; color: var(--bone-dim) !important; }
.visit-fssai strong {
  display: inline-block;
  margin-top: 0.2rem;
  font-size: 1.15rem;
  letter-spacing: 0.06em;
  color: var(--amber-bright);
  font-variant-numeric: tabular-nums;
}
@media (max-width: 860px) {
  .visit-grid { grid-template-columns: 1fr; }
}

.reviews-summary {
  margin-top: 1rem;
  color: var(--bone-dim);
}
.reviews-summary strong {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--bone);
  margin-right: 0.3rem;
}
.reviews-summary .review-stars { color: var(--amber); letter-spacing: 0.15em; }

/* ---------- reviews ---------- */

.reviews {
  padding: clamp(5rem, 10vw, 9rem) clamp(1rem, 4vw, 3rem) 0;
  width: min(1280px, 100%);
  margin: 0 auto;
}
.reviews-grid {
  margin-top: clamp(2rem, 4vw, 3rem);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.2rem;
}
.review {
  padding: 1.8rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--ink-2);
}
.review-stars {
  color: var(--amber);
  letter-spacing: 0.2em;
  margin-bottom: 0.8rem;
}
.review blockquote {
  font-size: 0.98rem;
  color: var(--bone);
  line-height: 1.6;
}
.review figcaption {
  margin-top: 1rem;
  font-size: 0.85rem;
  color: var(--bone-dim);
}

/* ---------- contact ---------- */

.contact {
  padding: clamp(5rem, 10vw, 8rem) clamp(1rem, 4vw, 3rem);
  background:
    radial-gradient(700px 420px at 50% 0%, rgba(20, 71, 54, 0.6), transparent 70%),
    rgba(10, 43, 33, 0.8);
}

.contact-inner {
  width: min(680px, 100%);
  margin: 0 auto;
  text-align: center;
}

.contact-logo {
  width: 76px; height: 76px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 1.6rem;
  border: 1px solid var(--line);
}

.contact-inner p {
  margin-top: 1.2rem;
  color: var(--bone-dim);
  max-width: 42ch;
  margin-left: auto;
  margin-right: auto;
}

.contact .btn-whatsapp { margin-top: 2.2rem; }

/* ---------- footer ---------- */

.footer {
  padding: 2rem clamp(1rem, 4vw, 3rem);
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: 0.85rem;
  color: var(--bone-dim);
  border-top: 1px solid var(--line);
}

/* ---------- animation primitives ---------- */

.reveal { opacity: 0; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; }
  .ribbon-track { transform: none !important; }
  .card, .card figure img, .gift { transition: none; }
  .floater, .bg-aurora .blob { display: none; }
}
