@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400&family=DM+Sans:wght@400;500;600&display=swap');

:root {
  --deep-brew-brown: #2C1810;
  --olive-green: #6B7A3A;
  --forest-chai-green: #4A7040;
  --spice-orange: #C8722A;
  --cream-white: #FDFAF5;
  --warm-parchment: #F0EBE0;
  --pure-white: #FFFFFF;
  --muted-sage: #8BA888;
  --soft-charcoal: #3D3530;
  --ghost-green: #E8F0E7;
  --footer-bg: #1E100A;
  --font-display: 'Cormorant Garamond', serif;
  --font-body: 'DM Sans', sans-serif;
  --radius-pill: 999px;
  --radius-card: 12px;
  --shadow-card: 0 2px 12px rgba(44,24,16,0.07);
  --shadow-hover: 0 8px 24px rgba(44,24,16,0.12);
  --max-width: 1200px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--soft-charcoal);
  background: var(--cream-white);
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ══ NAV ROOT WRAPPER ══ */
#nav-root {
  position: sticky;
  top: 0;
  z-index: 200;
  transition: transform 0.3s ease;
}
#nav-root.nav-hidden {
  transform: translateY(-108px);
}

/* ══ ANNOUNCEMENT BAR ══ */
.announcement-bar {
  background: var(--olive-green);
  height: 40px;
  display: flex;
  align-items: center;
  padding: 0 48px;
  position: relative;
  z-index: 200;
}
.announcement-text {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--pure-white);
  white-space: nowrap;
}
.announcement-links {
  margin-left: auto;
  display: flex;
  gap: 16px;
}
.announcement-links a {
  font-family: var(--font-body);
  font-size: 12px;
  color: rgba(255,255,255,0.6);
  transition: color 0.2s;
}
.announcement-links a:hover { color: var(--pure-white); }

/* ══ NAVIGATION ══ */
.main-nav {
  background: var(--pure-white);
  height: 68px;
  position: relative;
  z-index: 150;
  box-shadow: 0 1px 0 rgba(44,24,16,0.08);
}
.nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 48px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo { height: 60px; object-fit: contain; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-link {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.03em;
  color: var(--soft-charcoal);
  display: flex;
  align-items: center;
  gap: 3px;
  transition: color 0.2s;
}
.nav-link:hover { color: var(--spice-orange); }
.nav-link.active { color: var(--forest-chai-green); }
.nav-chevron {
  width: 14px; height: 14px;
  opacity: 0.5;
  transition: transform 0.2s;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}
.nav-cta {
  display: flex;
  align-items: center;
  gap: 16px;
}
.nav-cart-btn {
  color: var(--soft-charcoal);
  display: flex;
  align-items: center;
  transition: color 0.2s;
}
.nav-cart-btn:hover { color: var(--forest-chai-green); }
.nav-cart-btn svg { width: 22px; height: 22px; }

/* ══ MOBILE MENU ══ */
.mobile-menu-btn {
  display: none;
  color: var(--deep-brew-brown);
}
.mobile-menu-btn svg { width: 24px; height: 24px; }
.mobile-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 300;
  background: var(--olive-green);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
}
.mobile-overlay.open { display: flex; }
.mobile-close {
  position: absolute;
  top: 24px;
  right: 24px;
  color: var(--pure-white);
}
.mobile-nav-link {
  font-family: var(--font-display);
  font-size: 32px;
  color: var(--pure-white);
  transition: color 0.2s;
}
.mobile-nav-link:hover { color: var(--spice-orange); }

/* ══ MEGA MENU ══ */
.main-nav { overflow: visible; }

.dropdown-trigger {
  display: flex;
  align-items: center;
}

.mega-panel {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--pure-white);
  border-top: 3px solid var(--forest-chai-green);
  box-shadow: 0 16px 40px rgba(44,24,16,0.12);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-6px);
  transition: opacity 0.18s ease, transform 0.18s ease;
  z-index: 10;
}
.mega-panel.open {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.mega-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 200px 1fr 280px;
  min-height: 260px;
}

/* Column base */
.mm-col {
  padding: 32px 28px;
  border-right: 1px solid rgba(44,24,16,0.07);
}
.mm-col:first-child { padding-left: 48px; }
.mm-col:last-child { border-right: none; padding-right: 48px; }

/* Parchment sidebar */
.mm-sidebar-parchment {
  background: var(--warm-parchment);
}

/* Dark sidebar */
.mm-sidebar-dark {
  background: var(--olive-green);
  color: var(--pure-white);
}

/* Eyebrow labels */
.mm-eyebrow {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--spice-orange);
  margin-bottom: 16px;
}

/* Nav links */
.mm-link {
  display: block;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  color: var(--soft-charcoal);
  padding: 6px 0;
  transition: color 0.15s;
}
.mm-link:hover { color: var(--forest-chai-green); }
.mm-link.coming-soon { color: var(--spice-orange); }
.mm-soon-badge {
  display: inline-block;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  background: var(--spice-orange);
  color: white;
  padding: 1px 6px;
  border-radius: var(--radius-pill);
  margin-left: 6px;
  vertical-align: middle;
}

/* Market location badges */
.mm-market-badge {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  margin-right: 6px;
  margin-bottom: 6px;
  transition: background 0.15s, color 0.15s;
}
.mm-market-badge.sammamish { background: var(--ghost-green); color: var(--forest-chai-green); }
.mm-market-badge.sammamish:hover { background: var(--forest-chai-green); color: var(--pure-white); }
.mm-market-badge.woodinville { background: #FBF0E6; color: var(--spice-orange); }
.mm-market-badge.woodinville:hover { background: var(--spice-orange); color: var(--pure-white); }

/* Featured items 2-column grid */
.mm-featured-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 4px;
}
.mm-featured-item {
  display: block;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(44,24,16,0.08);
  transition: box-shadow 0.2s, transform 0.2s;
  color: inherit;
}
.mm-featured-item:hover { box-shadow: var(--shadow-hover); transform: translateY(-2px); }
.mm-featured-item img { width: 100%; height: 72px; object-fit: cover; }
.mm-feat-name {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  color: var(--deep-brew-brown);
  padding: 5px 8px 2px;
}
.mm-feat-desc {
  font-family: var(--font-body);
  font-size: 10px;
  color: var(--soft-charcoal);
  opacity: 0.6;
  padding: 0 8px;
}
.mm-feat-price {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  color: var(--forest-chai-green);
  padding: 3px 8px 7px;
}

/* Schedule (parchment sidebar) */
.mm-schedule-item { margin-bottom: 16px; }
.mm-schedule-day {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 500;
  color: var(--deep-brew-brown);
}
.mm-schedule-loc { font-family: var(--font-body); font-size: 12px; color: var(--soft-charcoal); margin-top: 2px; }
.mm-schedule-time { font-family: var(--font-body); font-size: 11px; color: var(--soft-charcoal); opacity: 0.6; }
.mm-schedule-divider { height: 1px; background: rgba(44,24,16,0.10); margin: 14px 0; }

.mm-sidebar-link {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  color: var(--forest-chai-green);
  transition: color 0.15s;
  display: block;
  margin-top: 6px;
}
.mm-sidebar-link:hover { color: var(--deep-brew-brown); }

/* Pull quote */
.mm-pull-quote {
  font-family: var(--font-display);
  font-size: 18px;
  font-style: italic;
  line-height: 1.5;
  color: var(--deep-brew-brown);
  margin-bottom: 8px;
}
.mm-quote-attr { font-family: var(--font-body); font-size: 12px; color: var(--soft-charcoal); opacity: 0.6; }

/* Value pillars */
.mm-value-pill { display: flex; gap: 12px; align-items: flex-start; margin-bottom: 20px; }
.mm-value-icon { font-size: 20px; flex-shrink: 0; line-height: 1; }
.mm-value-name { font-family: var(--font-body); font-size: 13px; font-weight: 600; color: var(--deep-brew-brown); margin-bottom: 2px; }
.mm-value-desc { font-family: var(--font-body); font-size: 12px; color: var(--soft-charcoal); opacity: 0.7; }

/* WSDA Badge */
.mm-wsda-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 20px;
  padding: 5px 12px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--forest-chai-green);
  color: var(--forest-chai-green);
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
}

/* Product cards */
.mm-product-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 4px; }
.mm-product-card {
  display: block;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(44,24,16,0.08);
  transition: box-shadow 0.2s, transform 0.2s;
  color: inherit;
}
.mm-product-card:hover { box-shadow: var(--shadow-hover); transform: translateY(-2px); }
.mm-product-card img { width: 100%; height: 96px; object-fit: cover; }
.mm-prod-name { font-family: var(--font-body); font-size: 12px; font-weight: 600; color: var(--deep-brew-brown); padding: 6px 8px 3px; }
.mm-prod-tags { padding: 0 8px 4px; display: flex; gap: 4px; flex-wrap: wrap; }
.mm-tag {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 600;
  padding: 1px 6px;
  border-radius: var(--radius-pill);
  background: var(--ghost-green);
  color: var(--forest-chai-green);
}
.mm-prod-footer { display: flex; justify-content: space-between; align-items: center; padding: 4px 8px 8px; }
.mm-prod-price { font-family: var(--font-body); font-size: 13px; font-weight: 700; color: var(--deep-brew-brown); }
.mm-add-btn {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  color: var(--pure-white);
  background: var(--forest-chai-green);
  padding: 3px 10px;
  border-radius: var(--radius-pill);
}

/* Dark sidebar items */
.mm-dark-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.75);
  font-family: var(--font-body);
  font-size: 13px;
  margin-bottom: 16px;
}
.mm-dark-item svg { flex-shrink: 0; }
.mm-dark-heading { font-family: var(--font-display); font-size: 24px; color: var(--pure-white); margin-bottom: 8px; }
.mm-dark-body { font-family: var(--font-body); font-size: 13px; color: rgba(255,255,255,0.65); line-height: 1.5; margin-bottom: 8px; }
.mm-dark-cta {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  color: var(--deep-brew-brown);
  background: var(--pure-white);
  padding: 8px 20px;
  border-radius: var(--radius-pill);
  margin-top: 12px;
  transition: background 0.15s;
}
.mm-dark-cta:hover { background: var(--cream-white); }

/* Catering event links */
.mm-link-icon {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  color: var(--soft-charcoal);
  padding: 6px 0;
  transition: color 0.15s;
}
.mm-link-icon:hover { color: var(--forest-chai-green); }
.mm-link-emoji { font-size: 18px; line-height: 1; }

/* Catering checklist */
.mm-checklist { margin-top: 4px; }
.mm-check-item { display: flex; align-items: flex-start; gap: 10px; font-family: var(--font-body); font-size: 13px; color: var(--soft-charcoal); margin-bottom: 12px; }
.mm-check { color: var(--forest-chai-green); font-weight: 700; flex-shrink: 0; }
.mm-catering-note { margin-top: 12px; font-family: var(--font-body); font-size: 11px; color: var(--soft-charcoal); opacity: 0.5; }
.mm-catering-desc { font-family: var(--font-body); font-size: 14px; color: var(--soft-charcoal); line-height: 1.5; margin-top: 8px; }

/* Find Us market cards */
.mm-market-card { display: flex; gap: 12px; align-items: flex-start; margin-bottom: 20px; }
.mm-market-pin { width: 10px; height: 10px; border-radius: 50%; flex-shrink: 0; margin-top: 4px; }
.mm-market-name { font-family: var(--font-body); font-size: 13px; font-weight: 600; color: var(--deep-brew-brown); }
.mm-market-day { font-family: var(--font-body); font-size: 12px; color: var(--soft-charcoal); }
.mm-market-time { font-family: var(--font-body); font-size: 11px; color: var(--soft-charcoal); opacity: 0.6; }
.mm-directions-link { font-family: var(--font-body); font-size: 12px; font-weight: 500; color: var(--forest-chai-green); margin-top: 4px; display: inline-block; transition: color 0.15s; }
.mm-directions-link:hover { color: var(--spice-orange); }

/* Map column */
.mm-map-col { display: flex; align-items: center; justify-content: center; }
.mm-map-wrap { width: 100%; max-width: 280px; }

/* Email form */
.mm-email-form { display: flex; gap: 6px; margin-top: 8px; }
.mm-email-input {
  flex: 1;
  padding: 8px 12px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.10);
  color: var(--pure-white);
  font-family: var(--font-body);
  font-size: 12px;
  outline: none;
  min-width: 0;
}
.mm-email-input::placeholder { color: rgba(255,255,255,0.4); }
.mm-notify-btn {
  padding: 8px 14px;
  border-radius: var(--radius-pill);
  background: var(--forest-chai-green);
  color: var(--pure-white);
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  white-space: nowrap;
  transition: background 0.15s;
}
.mm-notify-btn:hover { background: var(--muted-sage); }

/* Hide mega menu on mobile */
@media (max-width: 768px) {
  .dropdown-trigger { position: static; }
  .mega-panel { display: none !important; }
}

/* ══ BUTTONS ══ */
.btn-green {
  background: var(--forest-chai-green);
  color: var(--pure-white);
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 600;
  padding: 12px 24px;
  border-radius: var(--radius-pill);
  display: inline-block;
  transition: opacity 0.2s, transform 0.2s;
}
.btn-green:hover { opacity: 0.9; transform: scale(1.05); }
.btn-green.sm { font-size: 14px; padding: 10px 24px; }

.btn-outline-green {
  background: transparent;
  color: var(--forest-chai-green);
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 600;
  padding: 12px 24px;
  border-radius: var(--radius-pill);
  border: 1.5px solid var(--forest-chai-green);
  display: inline-block;
  transition: all 0.2s;
}
.btn-outline-green:hover {
  background: var(--forest-chai-green);
  color: var(--pure-white);
  transform: scale(1.05);
}
.btn-outline-green.sm { font-size: 14px; padding: 10px 24px; }

.btn-orange {
  background: var(--spice-orange);
  color: var(--pure-white);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  padding: 12px 24px;
  border-radius: var(--radius-pill);
  display: inline-block;
  transition: opacity 0.2s;
  border: none;
}
.btn-orange:hover { opacity: 0.9; }

/* ══ JAALI DIVIDER ══ */
.jaali-divider {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 32px 0;
}
.jaali-divider svg { width: 100%; height: 24px; }

/* ══ SECTION HELPERS ══ */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 48px;
}
.eyebrow {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.eyebrow-sage { color: var(--muted-sage); }
.eyebrow-orange { color: var(--spice-orange); }

.section-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 400;
  color: var(--deep-brew-brown);
}

/* ══ PILL BADGE ══ */
.pill-badge {
  display: inline-block;
  padding: 3px 12px;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  border-radius: var(--radius-pill);
  background: var(--ghost-green);
  color: var(--forest-chai-green);
}

/* ══ MENU CARD ══ */
.menu-card {
  background: var(--pure-white);
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: transform 0.2s, box-shadow 0.2s;
}
.menu-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}
.menu-card-img-wrap { overflow: hidden; }
.menu-card img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  transition: transform 0.3s;
}
.menu-card:hover img { transform: scale(1.05); }
.menu-card-body { padding: 24px; }
.menu-card-category {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--forest-chai-green);
  margin-bottom: 8px;
}
.menu-card-name {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 500;
  color: var(--deep-brew-brown);
  margin-bottom: 8px;
}
.menu-card-desc {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.6;
  color: var(--soft-charcoal);
  margin-bottom: 16px;
}
.menu-card-tags { display: flex; flex-wrap: wrap; gap: 8px; }

/* ══ VALUE PILLAR ══ */
.value-pillar {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.value-icon { color: var(--forest-chai-green); margin-bottom: 16px; }
.value-icon svg { width: 32px; height: 32px; stroke-width: 1.5; }
.value-title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 500;
  color: var(--deep-brew-brown);
  margin-bottom: 12px;
}
.value-desc {
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.6;
  color: var(--soft-charcoal);
}

/* ══ TESTIMONIAL CARD ══ */
.testimonial-card {
  background: var(--pure-white);
  border-radius: var(--radius-card);
  padding: 32px;
  box-shadow: var(--shadow-card);
}
.testimonial-stars { color: var(--spice-orange); font-size: 16px; letter-spacing: 2px; margin-bottom: 16px; }
.testimonial-quote {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 300;
  font-style: italic;
  line-height: 1.5;
  color: var(--deep-brew-brown);
  margin-bottom: 16px;
}
.testimonial-author {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  color: var(--soft-charcoal);
}

/* ══ MANDALA ══ */
.mandala-wrap {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  opacity: 0.06;
  color: var(--muted-sage);
}
.mandala-wrap.right { right: -25%; }
.mandala-wrap.left { left: -25%; }

/* ══ STARS ══ */
.stars { display: inline-flex; gap: 3px; }
.stars span { color: var(--spice-orange); font-size: 14px; }

/* ══ FOOTER ══ */
footer {
  background: var(--olive-green);
  color: var(--pure-white);
  padding: 64px 0 0;
  position: relative;
}
.footer-top-line {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--spice-orange), transparent);
  opacity: 0.2;
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 48px;
  margin-bottom: 48px;
}
.footer-logo { height: 72px; object-fit: contain; mix-blend-mode: lighten; margin-bottom: 16px; }
.footer-social { display: flex; gap: 16px; }
.footer-social a {
  color: rgba(255,255,255,0.6);
  transition: all 0.2s;
  display: flex;
  align-items: center;
}
.footer-social a:hover { color: var(--spice-orange); opacity: 1; }
.footer-col-title {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted-sage);
  margin-bottom: 16px;
}
.footer-link-list { display: flex; flex-direction: column; gap: 8px; }
.footer-link-list a {
  font-family: var(--font-body);
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  transition: all 0.2s;
}
.footer-link-list a:hover { color: var(--pure-white); }
.footer-text {
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255,255,255,0.7);
  margin-bottom: 8px;
}
.footer-text-sm { font-family: var(--font-body); font-size: 12px; color: rgba(255,255,255,0.5); }
.footer-orange { color: var(--pure-white); font-style: italic; font-size: 14px; font-family: var(--font-body); }
.footer-input {
  width: 100%;
  padding: 10px 16px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: var(--pure-white);
  font-family: var(--font-body);
  font-size: 14px;
  border-radius: 8px;
  outline: none;
  margin-bottom: 8px;
}
.footer-input::placeholder { color: rgba(255,255,255,0.4); }
.footer-subscribe {
  width: 100%;
  background: var(--spice-orange);
  color: var(--pure-white);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  padding: 10px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: opacity 0.2s;
  margin-bottom: 16px;
}
.footer-subscribe:hover { opacity: 0.9; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 32px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-bottom p {
  font-family: var(--font-body);
  font-size: 12px;
  opacity: 0.4;
}

/* ══ MARKET INFO CARD ══ */
.market-card {
  background: rgba(255,255,255,0.1);
  padding: 12px 16px;
  border-radius: 8px;
}
.market-card-name {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  color: var(--pure-white);
}
.market-card-time {
  font-family: var(--font-body);
  font-size: 12px;
  color: rgba(255,255,255,0.7);
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 4px;
}
.market-card-time svg { width: 12px; height: 12px; }

/* ══ SHOP PRODUCT CARD ══ */
.shop-card {
  background: var(--warm-parchment);
  border-radius: 16px;
  padding: 40px;
}
.shop-card-img {
  aspect-ratio: 1;
  background: var(--pure-white);
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 24px;
}
.shop-card-img img { width: 100%; height: 100%; object-fit: cover; }
.shop-card-name {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 500;
  color: var(--deep-brew-brown);
  margin-bottom: 8px;
}
.shop-card-desc {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.6;
  color: var(--soft-charcoal);
  margin-bottom: 16px;
}

/* ══ IG GRID ══ */
.ig-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
  margin-bottom: 24px;
}
.ig-item {
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 8px;
  position: relative;
  cursor: pointer;
}
.ig-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}
.ig-item:hover img { transform: scale(1.1); }
.ig-overlay {
  position: absolute;
  inset: 0;
  background: var(--olive-green);
  opacity: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s;
}
.ig-overlay svg { color: var(--pure-white); width: 32px; height: 32px; }
.ig-item:hover .ig-overlay { opacity: 0.4; }

/* ══ EMAIL SIGNUP ══ */
.email-row {
  display: flex;
  gap: 12px;
  max-width: 420px;
  margin: 0 auto 12px;
}
.email-input {
  flex: 1;
  padding: 12px 24px;
  background: var(--pure-white);
  border: none;
  border-radius: var(--radius-pill);
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--deep-brew-brown);
  outline: none;
}

/* ══ MENU PAGE STYLES ══ */
.menu-list-item {
  background: var(--pure-white);
  border-radius: 12px;
  padding: 24px;
  display: flex;
  gap: 24px;
  box-shadow: var(--shadow-card);
  transition: box-shadow 0.2s;
}
.menu-list-item:hover { box-shadow: var(--shadow-hover); }
.menu-list-img {
  width: 96px;
  height: 96px;
  border-radius: 8px;
  object-fit: cover;
  flex-shrink: 0;
}
.menu-list-name {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  color: var(--deep-brew-brown);
}
.menu-list-price {
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 600;
  color: var(--forest-chai-green);
}
.menu-list-desc {
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.6;
  color: var(--soft-charcoal);
  margin: 8px 0;
}

/* ══ CATERING FORM ══ */
.form-group { margin-bottom: 24px; }
.form-label {
  display: block;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--soft-charcoal);
  margin-bottom: 8px;
}
.form-input, .form-textarea, .form-select {
  width: 100%;
  padding: 12px 16px;
  background: var(--pure-white);
  border: 1.5px solid rgba(44,24,16,0.15);
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--soft-charcoal);
  outline: none;
  transition: border-color 0.2s;
}
.form-input:focus, .form-textarea:focus, .form-select:focus {
  border-color: var(--forest-chai-green);
}
.form-textarea { resize: vertical; min-height: 120px; }

/* ══ FIND US LOCATION CARD ══ */
.location-card {
  background: var(--pure-white);
  border-radius: 16px;
  padding: 32px;
  box-shadow: var(--shadow-card);
}
.location-name {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 500;
  color: var(--deep-brew-brown);
  margin-bottom: 8px;
}
.location-detail {
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.7;
  color: var(--soft-charcoal);
}

/* ══ TAB BUTTONS ══ */
.tab-btn {
  padding: 12px 24px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  border-radius: var(--radius-pill);
  background: rgba(255,255,255,0.1);
  color: var(--pure-white);
  border: none;
  cursor: pointer;
  transition: background 0.2s;
}
.tab-btn.active {
  background: var(--spice-orange);
}
.tab-btn:not(.active):hover { background: rgba(255,255,255,0.2); }

/* ══ SECTION DIVIDER LINE ══ */
.section-divider-line {
  flex: 1;
  height: 1px;
  background: rgba(200,114,42,0.2);
}

/* ══ RESPONSIVE ══ */
@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 768px) {
  .announcement-bar { padding: 0 16px; }
  .announcement-text { font-size: 11px; white-space: normal; text-align: center; }
  .nav-inner { padding: 0 20px; }
  .nav-links, .nav-cta .btn-green { display: none !important; }
  .mobile-menu-btn { display: flex; }
  .container { padding: 0 20px; }
  .email-row { flex-direction: column; }
  .ig-grid { gap: 2px; }
  .main-nav { top: 40px; }
}

@media (max-width: 600px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
}
