/* PLNTD store page — layout + components */

@import url('styles/tokens.css');

html, body { background: var(--bg-default); color: var(--fg-default); transition: background-color 300ms var(--ease-brand), color 300ms var(--ease-brand); }
img { display: block; max-width: 100%; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
a { color: inherit; text-decoration: none; }

/* ─── dark mode ────────────────────────────── */
body.dark {
  --bg-default: #0F1A0C;
  --bg-elevated: #14230E;
  --bg-subtle: #1A2D14;
  --fg-default: #F1EBE2;
  --fg-muted: rgba(241,235,226,0.55);
  --fg-subtle: rgba(241,235,226,0.4);
  --fg-link: #6FB36F;
  --border-default: rgba(241,235,226,0.10);
  --border-strong: rgba(241,235,226,0.20);
  --plntd-cream: #14230E;
  --plntd-cream-dark: #1A2D14;
  --plntd-forest-green: #4E9B4E;
  --plntd-pine: #0A1607;
  --plntd-leaf-soft: rgba(63,140,63,0.18);
  --shadow-card: 0 2px 12px rgba(0,0,0,0.4);
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.3);
}
body.dark .nav { background: rgba(15,26,12,0.92); border-bottom-color: rgba(241,235,226,0.08); }
body.dark .nav-icon-btn:hover { background: rgba(241,235,226,0.08); }
body.dark .product-card,
body.dark .status-card,
body.dark .cat-chip,
body.dark .store-card,
body.dark .feature-pill { background: #182814; border-color: rgba(241,235,226,0.08); }
body.dark .cat-chip.active { background: #4E9B4E; border-color: #4E9B4E; }
body.dark .cat-chip.active .ico { background: rgba(255,255,255,0.18); color: white; }
body.dark .cat-chip .ico { background: rgba(241,235,226,0.06); color: #6FB36F; }
body.dark .product-image { background: #0F1A0C; }
body.dark .order-item-img,
body.dark .cart-item-img { background: #0F1A0C; }
body.dark .btn-primary { background: #4E9B4E; color: #0F1A0C; }
body.dark .btn-primary:hover { background: #6FB36F; }
body.dark .btn-secondary { color: #6FB36F; border-color: #4E9B4E; }
body.dark .btn-secondary:hover { background: #4E9B4E; color: #0F1A0C; }
body.dark .add-btn { background: #4E9B4E; color: #0F1A0C; }
body.dark .add-btn:hover { background: #6FB36F; }
body.dark .qty button,
body.dark .order-qty button { background: rgba(241,235,226,0.06); }
body.dark .qty button:hover,
body.dark .order-qty button:hover { background: rgba(241,235,226,0.12); }
body.dark .nav-logo { color: #F1EBE2; }
body.dark .footer { background: #050C03; }
body.dark .about-section { background: #14230E; }
body.dark .about-image { background: #0F1A0C; color: #6FB36F; }
body.dark .map-canvas { background: #0F1A0C; }
body.dark .cart-method { background: rgba(241,235,226,0.06); }
body.dark .cart-method button.active { background: #182814; color: #6FB36F; }
body.dark .cart-foot,
body.dark .order-foot { background: #0F1A0C; }
body.dark .cart-drawer,
body.dark .order-side { background: #182814; }
body.dark .menu-tab { background: #182814; }
body.dark .info-card { background: #182814; }

/* ─── layout ───────────────────────────────── */
.shell { min-height: 100vh; }
.container { max-width: 1240px; margin: 0 auto; padding: 0 24px; }

/* ─── top nav ──────────────────────────────── */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(248,243,238,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-default);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 64px;
}
.nav-logo {
  font-family: var(--font-heading); font-weight: 900;
  font-size: 22px; letter-spacing: 0.02em;
  color: var(--plntd-forest-green);
}
.nav-logo .co { font-size: 11px; vertical-align: super; margin-left: 2px; letter-spacing: 0; opacity: 0.7; }
.nav-links { display: flex; gap: 32px; }
.nav-links a {
  font-family: var(--font-heading); font-weight: 700;
  font-size: 13px; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--fg-default); opacity: 0.75;
  transition: opacity var(--duration-fast) var(--ease-brand);
}
.nav-links a:hover { opacity: 1; }
.nav-actions { display: flex; align-items: center; gap: 14px; }
.nav-icon-btn {
  width: 40px; height: 40px; border-radius: 999px;
  display: flex; align-items: center; justify-content: center;
  position: relative;
  transition: background var(--duration-fast) var(--ease-brand);
}
.nav-icon-btn:hover { background: var(--plntd-cream-dark); }
.nav-icon-btn svg { width: 20px; height: 20px; }
.cart-count {
  position: absolute; top: 4px; right: 4px;
  min-width: 18px; height: 18px; padding: 0 5px;
  background: var(--plntd-leaf); color: white;
  border-radius: 999px;
  font-family: var(--font-heading); font-weight: 700; font-size: 10px;
  display: flex; align-items: center; justify-content: center;
  border: 2px solid var(--bg-default);
}

/* ─── hero ─────────────────────────────────── */
.hero {
  background: var(--plntd-forest-green);
  color: white;
  position: relative;
  overflow: hidden;
}
.hero-inner {
  display: grid; grid-template-columns: 1.1fr 1fr; gap: 48px;
  align-items: center;
  padding: 64px 0 96px;
}
.hero-eyebrow {
  font-family: var(--font-heading); font-weight: 700;
  font-size: 13px; letter-spacing: 0.25em; text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  display: flex; align-items: center; gap: 12px;
}
.hero-eyebrow::before { content: ''; width: 24px; height: 1px; background: rgba(255,255,255,0.7); }
.hero h1 {
  font-family: var(--font-display); font-weight: 900;
  font-size: clamp(56px, 8vw, 112px); line-height: 0.95;
  letter-spacing: -0.025em;
  margin: 16px 0 12px;
}
.hero h1 .city { display: block; font-style: italic; font-weight: 800; color: var(--plntd-cream); }
.hero p { font-size: 18px; line-height: 1.5; max-width: 460px; color: rgba(255,255,255,0.85); }
.hero-photo {
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-xl);
  background: var(--plntd-pine);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
}
.hero-photo-placeholder {
  position: absolute; inset: 0;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 14px;
  color: rgba(255,255,255,0.4);
  font-family: var(--font-heading); font-weight: 700;
  font-size: 11px; letter-spacing: 0.25em; text-transform: uppercase;
  text-align: center;
  background:
    radial-gradient(circle at 30% 20%, rgba(63,140,63,0.25), transparent 50%),
    radial-gradient(circle at 70% 80%, rgba(203,162,88,0.12), transparent 50%);
}
.hero-photo-placeholder svg { width: 56px; height: 56px; opacity: 0.5; }

/* hero decorative leaf */
.hero-leaf {
  position: absolute; top: -40px; right: -60px;
  width: 360px; height: 360px;
  opacity: 0.06;
  pointer-events: none;
}

/* ─── store info card (overlapping hero) ───── */
.info-wrap { margin-top: -64px; position: relative; z-index: 10; }
.info-card {
  background: white;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-card);
  padding: 32px;
  display: grid; grid-template-columns: 1.4fr 1fr 1fr auto; gap: 32px;
  align-items: center;
}
.info-block .label {
  font-family: var(--font-heading); font-weight: 700;
  font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--fg-muted); margin-bottom: 8px;
}
.info-block .value { font-family: var(--font-body); font-weight: 600; font-size: 16px; line-height: 1.45; }
.info-block .sub { color: var(--fg-muted); font-weight: 400; font-size: 14px; margin-top: 2px; }
.status-dot { display: inline-block; width: 8px; height: 8px; border-radius: 50%; background: var(--plntd-leaf); margin-right: 8px; vertical-align: middle; box-shadow: 0 0 0 4px rgba(63,140,63,0.18); }
.cta-stack { display: flex; flex-direction: column; gap: 10px; }

/* ─── buttons ──────────────────────────────── */
.btn {
  font-family: var(--font-heading); font-weight: 700;
  font-size: 14px; letter-spacing: 0.06em; text-transform: uppercase;
  padding: 14px 24px;
  border-radius: var(--radius-pill);
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  transition: background var(--duration-base) var(--ease-brand), opacity var(--duration-fast) var(--ease-brand), color var(--duration-base) var(--ease-brand);
  white-space: nowrap;
}
.btn-primary { background: var(--plntd-forest-green); color: white; }
.btn-primary:hover { background: var(--plntd-pine); }
.btn-primary:active { opacity: 0.85; }
.btn-secondary {
  background: transparent; color: var(--plntd-forest-green);
  border: 1.5px solid var(--plntd-forest-green);
}
.btn-secondary:hover { background: var(--plntd-forest-green); color: white; }
.btn-sm { padding: 9px 16px; font-size: 12px; }
.btn-icon { padding: 14px; width: 50px; height: 50px; }

/* hours expandable */
.hours-week { display: none; }
.hours-week.open { display: block; }
.hours-row { display: flex; justify-content: space-between; padding: 6px 0; font-size: 13px; border-bottom: 1px solid var(--border-default); }
.hours-row:last-child { border-bottom: 0; }
.hours-row.today { font-weight: 700; color: var(--plntd-forest-green); }

/* ─── feature pills ────────────────────────── */
.features-bar {
  display: flex; gap: 8px; flex-wrap: wrap;
  padding: 24px 0;
  border-bottom: 1px solid var(--border-default);
}
.feature-pill {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 14px;
  background: white;
  border: 1px solid var(--border-default);
  border-radius: var(--radius-pill);
  font-family: var(--font-body); font-weight: 500; font-size: 13px;
}
.feature-pill svg { width: 14px; height: 14px; color: var(--plntd-leaf); }

/* ─── menu section ─────────────────────────── */
.menu-section { padding: 80px 0 64px; }
.menu-head { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 32px; gap: 32px; }
.menu-head h2 {
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(40px, 5vw, 64px); line-height: 1;
  letter-spacing: -0.025em;
}
.menu-head .menu-eyebrow {
  font-family: var(--font-heading); font-weight: 700;
  font-size: 12px; letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--fg-muted); margin-bottom: 12px;
}
.menu-head .menu-blurb { font-size: 16px; color: var(--fg-muted); max-width: 360px; }

.menu-tabs { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 32px; }
.menu-tab {
  padding: 10px 20px;
  border-radius: var(--radius-pill);
  font-family: var(--font-heading); font-weight: 700;
  font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase;
  border: 1.5px solid var(--border-default);
  background: white;
  color: var(--fg-muted);
  transition: all var(--duration-base) var(--ease-brand);
}
.menu-tab:hover { border-color: var(--plntd-forest-green); color: var(--plntd-forest-green); }
.menu-tab.active { background: var(--plntd-forest-green); border-color: var(--plntd-forest-green); color: white; }

/* product grid */
.product-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.product-card {
  background: white;
  border-radius: var(--radius-card);
  padding: 20px;
  display: flex; flex-direction: column;
  transition: transform 600ms var(--ease-brand), box-shadow var(--duration-base) var(--ease-brand), opacity 600ms var(--ease-brand);
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: translateY(24px);
}
.product-card.in-view { opacity: 1; transform: translateY(0); }
.product-grid .product-card:nth-child(4n+1).in-view { transition-delay: 0ms; }
.product-grid .product-card:nth-child(4n+2).in-view { transition-delay: 80ms; }
.product-grid .product-card:nth-child(4n+3).in-view { transition-delay: 160ms; }
.product-grid .product-card:nth-child(4n+4).in-view { transition-delay: 240ms; }
.product-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-card); }
.product-card.in-view:hover { transform: translateY(-2px); }
.product-image {
  aspect-ratio: 1 / 1;
  background: var(--plntd-cream);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
  position: relative;
  overflow: hidden;
}
.product-image img { width: 72%; height: 72%; object-fit: contain; transition: transform var(--duration-base) var(--ease-brand); }
.product-card:hover .product-image img { transform: scale(1.04); }
.product-image-fallback {
  font-family: var(--font-display); font-weight: 900;
  font-size: 48px; color: var(--plntd-forest-green);
  opacity: 0.18;
}
.product-name-row { display: flex; align-items: center; gap: 8px; margin-bottom: 6px; }
.product-dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
.product-name { font-family: var(--font-body); font-weight: 600; font-size: 16px; }
.product-ingr {
  font-family: var(--font-body); font-size: 13px;
  color: var(--fg-muted); line-height: 1.4;
  margin-bottom: 12px;
  flex: 1;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height var(--duration-base) var(--ease-brand), opacity var(--duration-base) var(--ease-brand), margin var(--duration-base) var(--ease-brand);
}
.product-card:hover .product-ingr,
.product-card:focus-within .product-ingr {
  max-height: 200px;
  opacity: 1;
  margin-bottom: 12px;
}
.view-nutrition-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  color: var(--plntd-forest-green);
  background: transparent;
  border: 1px solid rgba(20,35,14,0.15);
  border-radius: 999px;
  padding: 6px 12px;
  margin-bottom: 12px;
  cursor: pointer;
  max-height: 0;
  padding-top: 0;
  padding-bottom: 0;
  border-color: transparent;
  opacity: 0;
  overflow: hidden;
  transition: max-height var(--duration-base) var(--ease-brand), opacity var(--duration-base) var(--ease-brand), padding var(--duration-base) var(--ease-brand), border-color var(--duration-base) var(--ease-brand), background var(--duration-fast) var(--ease-brand);
  align-self: flex-start;
}
.product-card:hover .view-nutrition-btn,
.product-card:focus-within .view-nutrition-btn {
  max-height: 40px;
  opacity: 1;
  padding-top: 6px;
  padding-bottom: 6px;
  border-color: rgba(20,35,14,0.15);
}
.view-nutrition-btn:hover { background: var(--plntd-leaf-soft); border-color: var(--plntd-forest-green); }
.view-nutrition-btn svg { width: 14px; height: 14px; }
body.dark .view-nutrition-btn { color: #BEE3BE; border-color: rgba(241,235,226,0.18); }
body.dark .view-nutrition-btn:hover { background: rgba(63,140,63,0.15); border-color: #6FB36F; }

/* ─── Nutrition Modal ───────────────────────────── */
.nut-overlay {
  position: fixed; inset: 0; z-index: 100;
  background: rgba(20,35,14,0.55);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  animation: nut-overlay-in 220ms cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
.nut-overlay.hiding { animation: nut-overlay-out 200ms ease forwards; }
@keyframes nut-overlay-in  { from { opacity: 0; } to { opacity: 1; } }
@keyframes nut-overlay-out { from { opacity: 1; } to { opacity: 0; } }

.nut-modal {
  position: fixed; z-index: 101;
  top: 50%; left: 50%;
  width: min(560px, calc(100vw - 32px));
  max-height: calc(100vh - 64px);
  background: white;
  color: var(--plntd-ink, #14230E);
  border-radius: 20px;
  box-shadow: 0 24px 64px rgba(0,0,0,0.32), 0 0 0 1px rgba(0,0,0,0.04);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  animation: nut-modal-in 240ms cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
.nut-modal.hiding { animation: nut-modal-out 200ms ease forwards; }
@keyframes nut-modal-in {
  from { opacity: 0; transform: translate(-50%, calc(-50% + 12px)) scale(0.98); }
  to   { opacity: 1; transform: translate(-50%, -50%) scale(1); }
}
@keyframes nut-modal-out {
  from { opacity: 1; transform: translate(-50%, -50%) scale(1); }
  to   { opacity: 0; transform: translate(-50%, calc(-50% + 12px)) scale(0.98); }
}
body.dark .nut-modal { background: #1A2A14; color: #F1EBE2; }

.nut-head {
  position: sticky; top: 0;
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 24px 0;
  background: inherit;
  z-index: 2;
}
.nut-close {
  width: 36px; height: 36px;
  border-radius: 999px;
  background: #14230E;
  color: white;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
  border: 0;
}
.nut-close:hover { background: var(--plntd-forest-green); }
.nut-close svg { width: 16px; height: 16px; }
.nut-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 22px;
  flex: 1;
  text-align: center;
  padding: 0 12px;
}
.nut-spacer { width: 36px; flex-shrink: 0; }

.nut-body {
  padding: 16px 32px 32px;
  overflow-y: auto;
}
.nut-section-label {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-align: center;
  margin: 8px 0 4px;
  color: var(--plntd-forest-green);
}
body.dark .nut-section-label { color: #6FB36F; }
.nut-sub {
  text-align: center;
  font-size: 13px;
  color: var(--fg-muted, rgba(20,35,14,0.55));
  margin-bottom: 16px;
}
.nut-ring-wrap {
  display: flex; justify-content: center;
  margin: 8px 0 20px;
}
.nut-ring {
  position: relative;
  width: 200px; height: 200px;
}
.nut-ring svg { width: 100%; height: 100%; transform: rotate(-90deg); }
.nut-ring-bg { stroke: rgba(20,35,14,0.08); fill: none; stroke-width: 4; }
body.dark .nut-ring-bg { stroke: rgba(255,255,255,0.1); }
.nut-ring-fg { stroke: var(--plntd-forest-green); fill: none; stroke-width: 4; stroke-linecap: round; transition: stroke-dashoffset 600ms var(--ease-brand); }
.nut-ring-inner {
  position: absolute; inset: 0;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
}
.nut-ring-kcal { font-size: 22px; }
.nut-ring-kj { font-size: 16px; opacity: 0.55; margin-top: 4px; }

.nut-disclaimer {
  font-size: 13px;
  line-height: 1.5;
  color: var(--fg-muted, rgba(20,35,14,0.6));
  text-align: center;
  margin: 0 0 28px;
  max-width: 420px;
  margin-left: auto; margin-right: auto;
}

.nut-divider {
  text-align: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 22px;
  margin: 12px 0 8px;
}

.nut-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid rgba(20,35,14,0.08);
  font-size: 13px;
  letter-spacing: 0.04em;
}
body.dark .nut-row { border-bottom-color: rgba(255,255,255,0.08); }
.nut-row:last-child { border-bottom: 0; }
.nut-row-label { text-transform: uppercase; font-weight: 500; color: var(--plntd-forest-green); letter-spacing: 0.06em; }
body.dark .nut-row-label { color: #6FB36F; }
.nut-row-val { font-weight: 600; }

.nut-empty {
  text-align: center;
  color: var(--fg-muted, rgba(20,35,14,0.5));
  font-size: 14px;
  padding: 18px 0;
}
.product-foot { display: flex; align-items: center; justify-content: space-between; gap: 8px; }
.product-price { font-family: var(--font-body); font-weight: 700; font-size: 17px; }
.add-btn {
  background: var(--plntd-forest-green); color: white;
  width: 36px; height: 36px; border-radius: 999px;
  display: flex; align-items: center; justify-content: center;
  transition: all var(--duration-fast) var(--ease-brand);
}
.add-btn:hover { background: var(--plntd-pine); transform: scale(1.08); }
.add-btn svg { width: 18px; height: 18px; }

/* ─── about section ────────────────────────── */
.about-section { padding: 64px 0; background: white; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.about h2 {
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(36px, 4vw, 56px); line-height: 1;
  letter-spacing: -0.025em; margin-bottom: 20px;
}
.about p { font-size: 17px; line-height: 1.6; color: var(--fg-muted); margin-bottom: 16px; }
.about-image {
  aspect-ratio: 5 / 4;
  border-radius: var(--radius-xl);
  background: var(--plntd-cream);
  display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: 12px;
  color: var(--plntd-forest-green);
  position: relative; overflow: hidden;
}
.about-image .ph-label {
  font-family: var(--font-heading); font-weight: 700;
  font-size: 11px; letter-spacing: 0.25em; text-transform: uppercase;
  opacity: 0.5;
}

/* ─── map placeholder ──────────────────────── */
.map-section { padding: 64px 0; }
.map-wrap {
  display: grid; grid-template-columns: 1fr 1.4fr; gap: 32px;
  background: white; border-radius: var(--radius-xl); overflow: hidden;
  box-shadow: var(--shadow-card);
}
.map-info { padding: 40px; }
.map-info h3 {
  font-family: var(--font-display); font-weight: 800;
  font-size: 36px; line-height: 1; letter-spacing: -0.02em;
  margin-bottom: 20px;
}
.map-info .row { display: flex; gap: 14px; padding: 14px 0; border-bottom: 1px solid var(--border-default); }
.map-info .row:last-of-type { border-bottom: 0; }
.map-info .row svg { width: 18px; height: 18px; color: var(--plntd-leaf); flex-shrink: 0; margin-top: 2px; }
.map-info .row .text { font-size: 14px; line-height: 1.5; }
.map-info .row .text strong { display: block; font-family: var(--font-heading); font-weight: 700; font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--fg-muted); margin-bottom: 4px; }

.map-canvas {
  background:
    repeating-linear-gradient(0deg, rgba(29,57,26,0.04) 0 1px, transparent 1px 48px),
    repeating-linear-gradient(90deg, rgba(29,57,26,0.04) 0 1px, transparent 1px 48px),
    var(--plntd-leaf-soft);
  position: relative;
  min-height: 360px;
}
.map-pin {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -100%);
  display: flex; flex-direction: column; align-items: center; gap: 6px;
}
.map-pin-marker {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--plntd-forest-green);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 16px rgba(20,35,14,0.3), 0 0 0 4px rgba(63,140,63,0.18);
  position: relative;
}
.map-pin-marker::after {
  content: ''; position: absolute; bottom: -10px; left: 50%; transform: translateX(-50%);
  border: 8px solid transparent; border-top-color: var(--plntd-forest-green);
}
.map-pin-marker svg { width: 22px; height: 22px; color: white; }
.map-placeholder-label {
  position: absolute; bottom: 16px; right: 16px;
  font-family: var(--font-heading); font-weight: 700;
  font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(29,57,26,0.4);
  background: rgba(255,255,255,0.7);
  padding: 6px 10px; border-radius: 999px;
}

/* ─── other stores ─────────────────────────── */
.other-stores { padding: 64px 0; }
.other-stores h3 {
  font-family: var(--font-display); font-weight: 800;
  font-size: 36px; line-height: 1; letter-spacing: -0.02em;
  margin-bottom: 24px;
}
.stores-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.store-card {
  background: white; border-radius: var(--radius-card);
  padding: 24px;
  border: 1px solid var(--border-default);
  display: flex; align-items: center; justify-content: space-between;
  transition: border-color var(--duration-base) var(--ease-brand), transform var(--duration-base) var(--ease-brand);
}
.store-card:hover { border-color: var(--plntd-forest-green); transform: translateY(-2px); }
.store-card .name { font-family: var(--font-display); font-weight: 700; font-size: 22px; }
.store-card .area { font-size: 13px; color: var(--fg-muted); margin-top: 2px; }
.store-card svg { width: 18px; color: var(--plntd-forest-green); }

/* ─── footer brand bar ─────────────────────── */
.brand-bar {
  background: var(--plntd-pine); color: white;
  padding: 24px 0;
}
.brand-bar-inner {
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.brand-bar-tag {
  font-family: var(--font-heading); font-weight: 700;
  font-size: 13px; letter-spacing: 0.25em; text-transform: uppercase;
  display: flex; align-items: center; gap: 14px;
}
.brand-bar-tag .divider { width: 1px; height: 16px; background: rgba(255,255,255,0.3); }
.brand-bar-social { display: flex; align-items: center; gap: 10px; font-family: var(--font-body); font-size: 14px; color: inherit; text-decoration: none; transition: opacity var(--duration-fast) var(--ease-brand); }
a.brand-bar-social:hover { opacity: 0.75; }
.brand-bar-social svg { width: 18px; height: 18px; }
.brand-bar-leaf { width: 18px; height: 18px; opacity: 0.8; }

.footer { background: var(--plntd-charcoal); color: white; padding: 64px 0 32px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,0.1); }
.footer h4 { font-family: var(--font-heading); font-weight: 700; font-size: 11px; letter-spacing: 0.25em; text-transform: uppercase; opacity: 0.6; margin-bottom: 16px; }
.footer ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer ul a { font-size: 14px; opacity: 0.85; }
.footer ul a:hover { opacity: 1; }
.footer-brand .logo { font-family: var(--font-heading); font-weight: 900; font-size: 32px; margin-bottom: 12px; }
.footer-brand p { font-size: 14px; opacity: 0.7; max-width: 280px; line-height: 1.5; }
.footer-bottom { padding-top: 24px; display: flex; justify-content: space-between; font-size: 12px; opacity: 0.5; }

/* ─── cart drawer ──────────────────────────── */
.cart-overlay {
  position: fixed; inset: 0; background: rgba(20,35,14,0.4);
  z-index: 100; opacity: 0; pointer-events: none;
  transition: opacity var(--duration-base) var(--ease-brand);
}
.cart-overlay.open { opacity: 1; pointer-events: auto; }
.cart-drawer {
  position: fixed; top: 0; right: 0; bottom: 0; width: 420px; max-width: 100vw;
  background: white; z-index: 101;
  transform: translateX(100%);
  transition: transform var(--duration-base) var(--ease-brand);
  display: flex; flex-direction: column;
  box-shadow: -8px 0 32px rgba(0,0,0,0.12);
}
.cart-drawer.open { transform: translateX(0); }
.cart-head { padding: 24px; display: flex; align-items: center; justify-content: space-between; border-bottom: 1px solid var(--border-default); }
.cart-head h3 { font-family: var(--font-display); font-weight: 800; font-size: 24px; }
.cart-head .count { font-family: var(--font-heading); font-weight: 700; font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--fg-muted); }
.cart-body { flex: 1; overflow-y: auto; padding: 8px 24px; }
.cart-item { display: grid; grid-template-columns: 60px 1fr auto; gap: 14px; align-items: center; padding: 16px 0; border-bottom: 1px solid var(--border-default); }
.cart-item:last-child { border-bottom: 0; }
.cart-item-img { width: 60px; height: 60px; border-radius: var(--radius-sm); background: var(--plntd-cream); display: flex; align-items: center; justify-content: center; overflow: hidden; }
.cart-item-img img { width: 80%; height: 80%; object-fit: contain; }
.cart-item-name { font-family: var(--font-body); font-weight: 600; font-size: 15px; display: flex; align-items: center; gap: 6px; }
.cart-item-price { font-size: 13px; color: var(--fg-muted); margin-top: 2px; }
.qty { display: flex; align-items: center; gap: 4px; }
.qty button { width: 26px; height: 26px; border-radius: 999px; background: var(--plntd-cream); display: flex; align-items: center; justify-content: center; font-weight: 700; transition: background var(--duration-fast) var(--ease-brand); }
.qty button:hover { background: var(--plntd-cream-dark); }
.qty .n { font-family: var(--font-body); font-weight: 600; font-size: 14px; min-width: 20px; text-align: center; }

.cart-empty { padding: 64px 24px; text-align: center; color: var(--fg-muted); }
.cart-empty svg { width: 48px; height: 48px; opacity: 0.3; margin-bottom: 16px; }
.cart-empty p { font-size: 14px; }

.cart-foot { padding: 24px; border-top: 1px solid var(--border-default); background: var(--bg-default); }
.cart-totals { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.cart-totals .row { display: flex; justify-content: space-between; font-size: 14px; color: var(--fg-muted); }
.cart-totals .total { font-family: var(--font-body); font-weight: 700; font-size: 18px; color: var(--fg-default); padding-top: 8px; border-top: 1px solid var(--border-default); margin-top: 6px; }
.cart-method { display: flex; gap: 6px; padding: 4px; background: var(--plntd-cream-dark); border-radius: 999px; margin-bottom: 16px; }
.cart-method button {
  flex: 1; padding: 10px;
  font-family: var(--font-heading); font-weight: 700; font-size: 11px;
  letter-spacing: 0.1em; text-transform: uppercase;
  border-radius: 999px; color: var(--fg-muted);
  transition: all var(--duration-base) var(--ease-brand);
}
.cart-method button.active { background: white; color: var(--plntd-forest-green); box-shadow: var(--shadow-sm); }

/* ─── slim store banner ──────────────────────────────── */
.banner {
  background: var(--plntd-forest-green);
  position: relative;
  height: 300px;
  overflow: hidden;
}
.banner-bg {
  position: absolute; inset: 0;
  background: url('uploads/pasted-1779969947690-0.png') center 30% / cover no-repeat;
}
.banner-overlay {
  position: absolute; inset: 0;
  background: rgba(20,35,14,0.52);
}
.banner-label {
  position: absolute; left: 0; right: 0; top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(40px, 5vw, 64px); line-height: 1; letter-spacing: -0.02em;
  color: white; text-align: left;
}
.banner-label-inner {
  max-width: 1240px; margin: 0 auto; padding: 0 24px;
}
.banner-label .sub {
  display: block;
  font-family: var(--font-heading); font-weight: 700;
  font-size: 12px; letter-spacing: 0.3em; text-transform: uppercase;
  color: rgba(255,255,255,0.7); margin-top: 12px;
}
.banner-ph-tag {
  position: absolute; bottom: 16px; right: 24px;
  font-family: var(--font-heading); font-weight: 700;
  font-size: 10px; letter-spacing: 0.25em; text-transform: uppercase;
  color: rgba(255,255,255,0.45);
}

/* ─── status cards over banner ───────────────────────── */
.status-wrap {
  position: relative;
  margin-top: -40px;
  z-index: 5;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 16px;
}
.status-card {
  background: white;
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
  padding: 18px 22px;
  display: flex; align-items: center; gap: 16px;
}
.status-card.action { cursor: pointer; transition: transform var(--duration-fast) var(--ease-brand); }
.status-card.action:hover { transform: translateY(-1px); }
.status-icon {
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--plntd-leaf-soft);
  color: var(--plntd-forest-green);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.status-icon svg { width: 22px; height: 22px; }
.status-text { flex: 1; min-width: 0; }
.status-text .top {
  font-family: var(--font-heading); font-weight: 700;
  font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--fg-muted); margin-bottom: 4px;
}
.status-text .main {
  font-family: var(--font-body); font-weight: 600; font-size: 15px;
  color: var(--fg-default);
  display: flex; align-items: center; gap: 6px;
}
.status-text .main svg { width: 14px; height: 14px; flex-shrink: 0; color: var(--plntd-leaf-dark); }
.status-text .main .open { color: var(--plntd-leaf-dark); }
.status-text .main .closed { color: var(--accent-strawberry); }
.status-card .chev { color: var(--plntd-forest-green); opacity: 0.6; }
.status-card .chev svg { width: 18px; height: 18px; }

/* ─── menu + sidebar layout ──────────────────────────── */
.menu-layout {
  display: grid; grid-template-columns: 1fr; gap: 40px;
  padding: 56px 0 80px;
  align-items: start;
}

.cat-row {
  display: flex; gap: 10px;
  overflow-x: auto;
  scrollbar-width: none;
  margin-bottom: 32px;
  padding-bottom: 4px;
}
.cat-row::-webkit-scrollbar { display: none; }
.cat-chip {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 8px 18px 8px 8px;
  border-radius: var(--radius-pill);
  background: white;
  border: 1.5px solid var(--border-default);
  flex-shrink: 0;
  transition: all var(--duration-base) var(--ease-brand);
}
.cat-chip:hover { border-color: var(--plntd-forest-green); }
.cat-chip .ico {
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--plntd-cream);
  display: flex; align-items: center; justify-content: center;
  color: var(--plntd-forest-green);
  transition: background var(--duration-base) var(--ease-brand);
}
.cat-chip .ico svg { width: 16px; height: 16px; }
.cat-chip .label {
  font-family: var(--font-heading); font-weight: 700;
  font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--fg-muted);
}
.cat-chip.active { background: var(--plntd-forest-green); border-color: var(--plntd-forest-green); }
.cat-chip.active .ico { background: rgba(255,255,255,0.18); color: white; }
.cat-chip.active .label { color: white; }

.section-block { margin-bottom: 48px; }
.section-head {
  display: flex; align-items: baseline; justify-content: space-between;
  margin-bottom: 18px; gap: 16px;
}
.section-head h3 {
  font-family: var(--font-display); font-weight: 800;
  font-size: 28px; letter-spacing: -0.02em;
}
.section-head .eyebrow {
  font-family: var(--font-heading); font-weight: 700;
  font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--fg-muted);
}

/* ─── order overview sidebar ─────────────────────────── */
.order-side {
  position: sticky; top: 88px;
  background: white;
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
  overflow: hidden;
  max-height: calc(100vh - 110px);
  display: flex; flex-direction: column;
}
.order-head {
  padding: 22px 22px 16px;
  border-bottom: 1px solid var(--border-default);
}
.order-head h3 {
  font-family: var(--font-display); font-weight: 800;
  font-size: 22px; letter-spacing: -0.01em;
  margin-bottom: 4px;
}
.order-head .count {
  font-family: var(--font-heading); font-weight: 700;
  font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--fg-muted);
}
.order-body { flex: 1; overflow-y: auto; padding: 8px 22px; }
.order-empty { padding: 36px 12px; text-align: center; color: var(--fg-muted); }
.order-empty svg { width: 36px; height: 36px; opacity: 0.3; margin: 0 auto 12px; display: block; }
.order-empty p { font-size: 13px; line-height: 1.5; }

.order-item { display: grid; grid-template-columns: 44px 1fr auto; gap: 12px; align-items: center; padding: 12px 0; border-bottom: 1px solid var(--border-default); }
.order-item:last-child { border-bottom: 0; }
.order-item-img { width: 44px; height: 44px; border-radius: var(--radius-sm); background: var(--plntd-cream); display: flex; align-items: center; justify-content: center; overflow: hidden; }
.order-item-img img { width: 80%; height: 80%; object-fit: contain; }
.order-item-name { font-family: var(--font-body); font-weight: 600; font-size: 13px; line-height: 1.3; display: flex; align-items: center; gap: 5px; }
.order-item-price { font-size: 12px; color: var(--fg-muted); margin-top: 2px; }
.order-qty { display: flex; align-items: center; gap: 2px; }
.order-qty button { width: 22px; height: 22px; border-radius: 999px; background: var(--plntd-cream); display: flex; align-items: center; justify-content: center; transition: background var(--duration-fast) var(--ease-brand); }
.order-qty button svg { width: 12px; height: 12px; }
.order-qty button:hover { background: var(--plntd-cream-dark); }
.order-qty .n { font-family: var(--font-body); font-weight: 600; font-size: 12px; min-width: 16px; text-align: center; }

.order-foot { padding: 18px 22px; border-top: 1px solid var(--border-default); background: var(--bg-default); }
.order-totals { display: flex; flex-direction: column; gap: 4px; margin-bottom: 12px; }
.order-totals .row { display: flex; justify-content: space-between; font-size: 13px; color: var(--fg-muted); }
.order-totals .total { font-family: var(--font-body); font-weight: 700; font-size: 16px; color: var(--fg-default); padding-top: 6px; border-top: 1px solid var(--border-default); margin-top: 4px; }

/* mobile floating cart */
.mobile-cart-bar {
  display: none;
  position: fixed; left: 16px; right: 16px; bottom: 16px;
  background: var(--plntd-forest-green); color: white;
  border-radius: var(--radius-pill);
  padding: 14px 22px;
  z-index: 60;
  box-shadow: 0 8px 24px rgba(20,35,14,0.3);
  align-items: center; justify-content: space-between;
  font-family: var(--font-heading); font-weight: 700;
  font-size: 13px; letter-spacing: 0.08em; text-transform: uppercase;
}
.mobile-cart-bar .badge {
  background: var(--plntd-leaf); color: white;
  min-width: 22px; height: 22px; border-radius: 999px;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 11px; margin-right: 8px;
}

/* tighter product grid in menu layout */
.menu-layout .product-grid { grid-template-columns: repeat(4, 1fr); }

/* ─── responsive ───────────────────────────── */
@media (max-width: 1100px) {
  .menu-layout .product-grid { grid-template-columns: repeat(3, 1fr); }
  .mobile-cart-bar { display: flex; }
}
@media (max-width: 720px) {
  .status-wrap { grid-template-columns: 1fr; }
  .banner { height: 200px; }
}

/* ─── (legacy responsive below) ────────────── */
@media (max-width: 1100px) {
  .product-grid { grid-template-columns: repeat(3, 1fr); }
  .info-card { grid-template-columns: 1fr 1fr; }
  .info-card .cta-stack { grid-column: span 2; flex-direction: row; }
  .info-card .cta-stack .btn { flex: 1; }
}
@media (max-width: 860px) {
  .hero-inner { grid-template-columns: 1fr; gap: 32px; padding: 40px 0 80px; }
  .hero-photo { aspect-ratio: 3 / 2; }
  .nav-links { display: none; }
  .about-grid, .map-wrap { grid-template-columns: 1fr; }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .stores-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .brand-bar-inner { flex-direction: column; gap: 16px; text-align: center; }
  .brand-bar-tag { flex-wrap: wrap; justify-content: center; }
  .menu-head { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 520px) {
  .product-grid { grid-template-columns: 1fr; }
  .info-card { grid-template-columns: 1fr; padding: 24px; }
  .info-card .cta-stack { flex-direction: column; }
  .hero h1 { font-size: 56px; }
}
