﻿:root {
  --blue: #2b5687;
  --blue-dark: #17385e;
  --blue-soft: #edf4fb;
  --green: #567947;
  --green-dark: #3f6234;
  --matcha: #dfead4;
  --cream: #fbf4ea;
  --cream-2: #fffaf2;
  --white: #ffffff;
  --ink: #17314f;
  --muted: #68778a;
  --line: rgba(43, 86, 135, 0.14);
  --shadow: 0 20px 48px rgba(23, 56, 94, 0.14);
  --shadow-soft: 0 10px 28px rgba(23, 56, 94, 0.09);
  --radius: 8px;
  --nav-h: 82px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scrollbar-gutter: stable; }
body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(180deg, rgba(251, 244, 234, 0.96) 0, rgba(255, 250, 242, 0.98) 540px, #ffffff 100%),
    var(--cream);
  font-family: "Segoe UI", Tahoma, Arial, sans-serif;
  line-height: 1.55;
  letter-spacing: 0;
  overflow-x: hidden;
  padding-bottom: calc(var(--nav-h) + env(safe-area-inset-bottom));
  text-rendering: optimizeLegibility;
}

[dir="rtl"] body { font-family: Tahoma, "Segoe UI", Arial, sans-serif; }
body.cart-open { overflow: hidden; }
img, svg { display: block; }
img { max-width: 100%; }
svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }

.skip-link {
  position: fixed;
  inset-block-start: 12px;
  inset-inline-start: 12px;
  z-index: 80;
  transform: translateY(-150%);
  padding: 10px 14px;
  color: #fff;
  background: var(--blue-dark);
  border-radius: var(--radius);
}
.skip-link:focus { transform: translateY(0); }

.app-header {
  position: relative;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 76px;
  padding: 12px 16px;
  background: rgba(255, 250, 242, 0.88);
  border-bottom: 1px solid rgba(43, 86, 135, 0.11);
  backdrop-filter: blur(18px);
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-width: 0;
  direction: ltr;
  max-width: calc(100% - 116px);
}
.brand img {
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid rgba(43, 86, 135, 0.16);
  box-shadow: var(--shadow-soft);
}
.brand span { min-width: 0; }
.brand strong {
  display: block;
  overflow: hidden;
  color: var(--green-dark);
  font-size: 0.82rem;
  line-height: 1.1;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-overflow: ellipsis;
  text-transform: uppercase;
  white-space: nowrap;
}
.lang-toggle i {
  display: block;
  width: 1px;
  height: 18px;
  flex: 0 0 1px;
  background: #8d1f2d;
  opacity: 0.9;
}
.lang-toggle span {
  display: block;
  line-height: 1;
}
.desktop-nav { display: none; }
.lang-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 42px;
  min-width: 0;
  max-width: 168px;
  padding: 0 14px;
  border: 1px solid rgba(43, 86, 135, 0.16);
  border-radius: 999px;
  color: var(--green-dark);
  background: rgba(255, 250, 242, 0.94);
  box-shadow: 0 10px 24px rgba(23, 56, 94, 0.1);
  direction: ltr;
  font-size: 0.82rem;
  font-weight: 900;
  white-space: nowrap;
}

.hero {
  display: grid;
  gap: 14px;
  width: min(100%, 1180px);
  margin-inline: auto;
  padding: 10px 16px 24px;
}
.hero-art {
  order: 2;
  overflow: hidden;
  height: clamp(210px, 58vw, 286px);
  min-height: 0;
  border-radius: 18px;
  background: var(--blue);
  box-shadow: var(--shadow-soft);
}
.hero-art img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: contain;
  object-position: center;
}
.hero-copy {
  order: 1;
  display: grid;
  gap: 8px;
  padding: 0 4px;
}
.eyebrow {
  margin: 0;
  color: var(--green-dark);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.hero h1 {
  display: block;
  width: fit-content;
  max-width: 220px;
  margin: 0 0 2px;
  color: var(--blue);
  font-size: clamp(1.95rem, 9vw, 3.6rem);
  line-height: 0.98;
  font-weight: 900;
}
.hero-line {
  margin: 0;
  color: var(--green-dark);
  font-size: clamp(1.12rem, 4.8vw, 1.6rem);
  line-height: 1.18;
  font-weight: 900;
}
.hero-text {
  margin: 0;
  max-width: 34rem;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.5;
}
.hero-actions {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin-top: 8px;
}
.btn, .add-button, .checkout-button, .icon-button, .qty-button, .option-chip, .category-tab {
  border: 0;
  border-radius: var(--radius);
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease, color 180ms ease, border-color 180ms ease;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  font-weight: 900;
  text-align: center;
}
.btn-primary, .checkout-button, .add-button {
  color: #fff;
  background: var(--green-dark);
  box-shadow: 0 16px 30px rgba(63, 98, 52, 0.22);
}
.btn-ghost {
  color: var(--blue-dark);
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid var(--line);
}
.btn-light {
  color: var(--blue-dark);
  background: #fff;
  box-shadow: 0 12px 24px rgba(23, 56, 94, 0.14);
}
.btn:hover, .add-button:hover, .checkout-button:hover, .lang-toggle:hover, .contact-card:hover, .category-tab:hover { transform: translateY(-2px); }

.quick-panel {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  width: calc(100% - 32px);
  max-width: 900px;
  margin: 0 auto 10px;
  padding: 8px;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: var(--shadow-soft);
}
.quick-panel div {
  min-width: 0;
  padding: 10px 8px;
  background: var(--cream-2);
  border-radius: var(--radius);
  text-align: center;
}
.quick-panel span, .quick-panel strong { display: block; }
.quick-panel span {
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 800;
}
.quick-panel strong {
  margin-top: 2px;
  color: var(--blue-dark);
  font-size: clamp(0.7rem, 2.6vw, 0.88rem);
  line-height: 1.25;
}

.section {
  width: min(100%, 1180px);
  margin-inline: auto;
  padding: 48px 16px;
}
.section-head {
  max-width: 720px;
  margin-bottom: 20px;
}
.section-head h2 {
  margin: 8px 0 0;
  color: var(--blue-dark);
  font-size: clamp(1.65rem, 7vw, 2.55rem);
  line-height: 1.08;
  font-weight: 900;
}
.section-head p:not(.eyebrow) {
  margin: 10px 0 0;
  color: var(--muted);
}
.category-tabs {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding-bottom: 10px;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}
.category-tabs::-webkit-scrollbar, .reviews-track::-webkit-scrollbar { display: none; }
.category-tab {
  flex: 0 0 auto;
  min-width: 116px;
  padding: 10px 12px;
  color: var(--blue-dark);
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
  text-align: start;
  scroll-snap-align: start;
}
.category-tab strong, .category-tab small { display: block; }
.category-tab strong { font-size: 0.94rem; }
.category-tab small { color: var(--muted); font-size: 0.72rem; font-weight: 800; }
.category-tab.is-active { color: #fff; background: var(--blue); border-color: var(--blue); }
.category-tab.is-active small { color: rgba(255,255,255,0.78); }

.menu-sections {
  display: grid;
  gap: 24px;
}
.menu-category {
  scroll-margin-top: 20px;
}
.menu-category-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin: 2px 0 10px;
}
.menu-category-head h3 {
  margin: 0;
  color: var(--blue-dark);
  font-size: clamp(1.15rem, 5vw, 1.55rem);
}
.menu-category-head span {
  flex: 0 0 auto;
  color: var(--green);
  font-size: 0.74rem;
  font-weight: 900;
  text-transform: uppercase;
}
.menu-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}
.product-card {
  display: grid;
  grid-template-rows: auto 1fr;
  min-height: 100%;
  padding: 9px;
  background: #fff;
  border: 1px solid rgba(43, 86, 135, 0.12);
  border-radius: 16px;
  box-shadow: var(--shadow-soft);
}
.product-media {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 230px;
  overflow: hidden;
  background: var(--cream);
  border-radius: 12px;
  padding: 12px;
}
.product-media img {
  display: block;
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  object-position: center center;
  padding: 0;
}
.product-badge {
  position: absolute;
  inset-block-start: 10px;
  inset-inline-start: 10px;
  padding: 6px 9px;
  color: #fff;
  background: rgba(43, 86, 135, 0.94);
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 900;
}
.product-body {
  display: grid;
  grid-template-rows: auto auto auto 1fr auto;
  gap: 9px;
  padding: 12px 2px 2px;
}
.product-title {
  min-height: 48px;
  margin: 0;
  color: var(--blue-dark);
  font-size: 1rem;
  line-height: 1.16;
  font-weight: 900;
}
.product-title span {
  display: block;
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
}
.product-price {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  min-height: 28px;
  color: var(--green-dark);
  font-size: 0.95rem;
  font-weight: 900;
}
.product-price small {
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
}
.option-placeholder { min-height: 50px; }
.option-group, .note-field, .customer-fields label {
  display: grid;
  gap: 6px;
}
.option-group span, .note-field span, .customer-fields span {
  color: var(--blue-dark);
  font-size: 0.74rem;
  font-weight: 900;
}
.option-group select, .note-field textarea, .customer-fields input, .customer-fields textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--ink);
  background: var(--cream-2);
  outline: 0;
}
.option-group select {
  min-height: 38px;
  padding: 0 9px;
}
.note-field textarea, .customer-fields textarea {
  resize: vertical;
  min-height: 58px;
  max-height: 120px;
  padding: 9px;
}
.customer-fields input { min-height: 42px; padding: 0 11px; }
.option-group select:focus, .note-field textarea:focus, .customer-fields input:focus, .customer-fields textarea:focus {
  border-color: rgba(86, 121, 71, 0.55);
  box-shadow: 0 0 0 3px rgba(86, 121, 71, 0.13);
}
.add-button {
  width: 100%;
  min-height: 42px;
  padding: 0 10px;
  font-size: 0.88rem;
  font-weight: 900;
}

.reviews-section {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(43, 86, 135, 0.05), transparent 34%, rgba(86, 121, 71, 0.08)),
    linear-gradient(180deg, rgba(251, 244, 234, 0.82), rgba(223, 234, 212, 0.32) 54%, #fff 100%);
  max-width: none;
}
.reviews-section > * { width: min(100%, 1180px); margin-inline: auto; }
.reviews-section .section-head {
  position: relative;
  padding-inline-start: 14px;
}
.reviews-section .section-head::before {
  content: "";
  position: absolute;
  inset-block: 4px 2px;
  inset-inline-start: 0;
  width: 4px;
  background: linear-gradient(180deg, var(--blue), var(--green));
  border-radius: 999px;
}
.reviews-section .section-head h2 {
  color: var(--blue-dark);
}
.reviews-track {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  padding: 2px 16px 16px;
  margin-inline: -16px;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}
.review-card {
  position: relative;
  flex: 0 0 82%;
  min-height: 166px;
  display: grid;
  align-content: start;
  gap: 12px;
  padding: 18px;
  color: var(--blue-dark);
  background: linear-gradient(180deg, #fffdf8, var(--cream-2));
  border: 1px solid rgba(86, 121, 71, 0.24);
  border-radius: 16px;
  box-shadow: 0 12px 30px rgba(23, 56, 94, 0.08);
  scroll-snap-align: start;
}
.review-card::before {
  content: "";
  position: absolute;
  inset-inline: 16px;
  inset-block-start: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--green));
  border-radius: 0 0 999px 999px;
}
.stars {
  color: var(--green-dark);
  letter-spacing: 0.08em;
  font-size: 1rem;
  line-height: 1;
}
.review-action {
  display: flex;
  justify-content: center;
  margin-top: 8px;
}
.review-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  width: min(100%, 260px);
  padding: 0 22px;
  color: #fff;
  background: var(--blue-dark);
  border: 1px solid rgba(86, 121, 71, 0.34);
  border-radius: 999px;
  box-shadow: 0 14px 28px rgba(23, 56, 94, 0.18);
  font-weight: 900;
  text-align: center;
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease, border-color 180ms ease;
}
.review-link:hover {
  transform: translateY(-2px);
  background: var(--green-dark);
  border-color: rgba(43, 86, 135, 0.28);
  box-shadow: 0 18px 34px rgba(63, 98, 52, 0.22);
}
.review-card blockquote {
  margin: 0;
  color: var(--blue-dark);
  font-size: 1rem;
  font-weight: 800;
  text-align: start;
  unicode-bidi: plaintext;
}

.instagram-card {
  display: grid;
  gap: 18px;
  padding: 26px 18px;
  color: #fff;
  background: var(--blue);
  border-radius: 20px;
  box-shadow: var(--shadow);
}
.instagram-card .eyebrow { color: var(--matcha); }
.instagram-card h2 { margin: 8px 0 0; color: #fff; font-size: clamp(1.6rem, 7vw, 2.4rem); line-height: 1.06; }
.instagram-card span { display: block; margin-top: 8px; font-weight: 900; }
.instagram-section { padding-bottom: 22px; }
.location-section { padding-top: 22px; padding-bottom: 110px; }
.contact-grid {
  display: grid;
  gap: 12px;
}
.contact-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: center;
  min-height: 88px;
  padding: 14px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: var(--shadow-soft);
}
.icon-wrap {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  color: #fff;
  background: var(--blue);
  border-radius: 50%;
}
.contact-card strong, .contact-card small { display: block; min-width: 0; }
.contact-card strong { color: var(--blue-dark); font-size: 1rem; }
.contact-card small { color: var(--muted); overflow-wrap: anywhere; }

.bottom-nav {
  position: fixed;
  inset-inline: 10px;
  inset-block-end: calc(10px + env(safe-area-inset-bottom));
  z-index: 50;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 2px;
  padding: 7px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(43, 86, 135, 0.14);
  border-radius: 999px;
  box-shadow: 0 18px 44px rgba(23, 56, 94, 0.18);
  backdrop-filter: blur(18px);
}
.bottom-nav a, .bottom-nav button {
  position: relative;
  display: grid;
  place-items: center;
  gap: 2px;
  min-width: 0;
  min-height: 52px;
  padding: 5px 2px;
  color: #6f7780;
  background: transparent;
  border: 0;
  border-radius: 999px;
  font-weight: 900;
}
.bottom-nav svg { width: 18px; height: 18px; }
.bottom-nav small {
  max-width: 100%;
  overflow: hidden;
  color: inherit;
  font-size: clamp(0.48rem, 2.15vw, 0.65rem);
  line-height: 1.05;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.bottom-nav .is-active { color: #fff; background: var(--green-dark); box-shadow: 0 10px 22px rgba(63, 98, 52, 0.22); }
.bottom-nav b {
  position: absolute;
  inset-block-start: -5px;
  inset-inline-end: 6px;
  display: grid;
  place-items: center;
  min-width: 19px;
  height: 19px;
  padding: 0 5px;
  color: #fff;
  background: var(--blue);
  border-radius: 999px;
  font-size: 0.66rem;
}

.cart-drawer {
  position: fixed;
  inset: 0;
  z-index: 70;
  visibility: hidden;
  pointer-events: none;
}
.cart-drawer.is-open { visibility: visible; pointer-events: auto; }
.cart-scrim {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(16, 35, 57, 0.52);
  opacity: 0;
  transition: opacity 220ms ease;
}
.cart-drawer.is-open .cart-scrim { opacity: 1; }
.cart-panel {
  position: absolute;
  inset-block: 0;
  inset-inline-end: 0;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto auto auto;
  gap: 14px;
  width: min(100%, 440px);
  padding: 18px;
  padding-bottom: calc(18px + env(safe-area-inset-bottom));
  overflow: hidden;
  background: #fff;
  box-shadow: -16px 0 44px rgba(23, 56, 94, 0.2);
  transform: translateX(105%);
  transition: transform 260ms ease;
}
[dir="rtl"] .cart-panel { inset-inline: 0 auto; transform: translateX(-105%); box-shadow: 16px 0 44px rgba(23, 56, 94, 0.2); }
.cart-drawer.is-open .cart-panel, [dir="rtl"] .cart-drawer.is-open .cart-panel { transform: translateX(0); }
.cart-head {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 12px;
}
.cart-head h2 { margin: 6px 0 0; color: var(--blue-dark); font-size: 1.35rem; }
.icon-button {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: var(--blue-dark);
  background: var(--blue-soft);
}
.cart-items {
  display: grid;
  align-content: start;
  gap: 10px;
  overflow: auto;
  padding-inline-end: 2px;
}
.empty-cart { margin: 0; color: var(--muted); }
.cart-item {
  display: grid;
  gap: 8px;
  padding: 12px;
  background: var(--cream-2);
  border: 1px solid var(--line);
  border-radius: 14px;
}
.cart-item-head {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 10px;
}
.cart-item h3 { margin: 0; color: var(--blue-dark); font-size: 0.94rem; line-height: 1.2; }
.cart-item strong { color: var(--green-dark); white-space: nowrap; }
.cart-options { display: flex; flex-wrap: wrap; gap: 6px; }
.cart-options span {
  padding: 5px 8px;
  color: var(--blue-dark);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 800;
}
.cart-item p { margin: 0; color: var(--muted); font-size: 0.85rem; }
.cart-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.remove-item {
  border: 0;
  padding: 0;
  color: var(--blue);
  background: transparent;
  font-size: 0.78rem;
  font-weight: 900;
}
.qty-control {
  display: inline-grid;
  grid-template-columns: 34px 30px 34px;
  align-items: center;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
}
.qty-button { min-height: 32px; color: var(--blue-dark); background: #fff; }
.qty-control span { text-align: center; color: var(--blue-dark); font-weight: 900; }
.customer-fields {
  display: grid;
  gap: 10px;
  padding-top: 2px;
}
.cart-total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 12px;
  border-top: 1px solid var(--line);
  color: var(--blue-dark);
  font-weight: 900;
}
.checkout-button {
  width: 100%;
  min-height: 50px;
  padding: 0 18px;
  font-weight: 900;
}
.checkout-button:disabled { cursor: not-allowed; opacity: 0.55; transform: none; }
.toast {
  position: fixed;
  inset-inline: 18px;
  inset-block-end: calc(var(--nav-h) + 18px + env(safe-area-inset-bottom));
  z-index: 90;
  padding: 12px 16px;
  color: #fff;
  background: var(--green-dark);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  text-align: center;
  font-weight: 900;
}

.reveal { animation: floatIn 520ms ease both; }
@keyframes floatIn { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: translateY(0); } }

@media (max-width: 359px) {
  .menu-grid { grid-template-columns: 1fr; }
  .hero-actions { grid-template-columns: 1fr; }
  .brand small { display: none; }
}
@media (min-width: 360px) {
  .menu-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .product-media { height: clamp(210px, 56vw, 238px); padding: 14px; }
}
@media (min-width: 620px) {
  body { padding-bottom: 0; }
  .app-header { padding-inline: 26px; }
  .hero { grid-template-columns: 0.96fr 1.04fr; align-items: center; padding: 34px 26px 44px; }
  .hero-art { height: 460px; min-height: 0; order: 2; }
  .hero-art img { min-height: 0; }
  .hero-copy { order: 1; }
  .hero-actions { grid-template-columns: repeat(2, minmax(0, 210px)); }
  .quick-panel { width: calc(100% - 52px); }
  .section { padding-inline: 26px; }
  .review-card { flex-basis: 46%; }
  .contact-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .bottom-nav { display: none; }
  .toast { inset-inline: auto 26px; inset-block-end: 26px; min-width: 260px; }
}
@media (min-width: 900px) {
  .app-header { padding-inline: 44px; }
  .desktop-nav { display: inline-flex; align-items: center; gap: 24px; color: var(--blue-dark); font-weight: 900; }
  .desktop-nav a { position: relative; }
  .desktop-nav a::after { content: ""; position: absolute; inset-inline: 0; inset-block-end: -8px; height: 2px; background: var(--green); transform: scaleX(0); transition: transform 180ms ease; }
  .desktop-nav a:hover::after { transform: scaleX(1); }
  .hero { padding-inline: 44px; }
  .section { padding: 70px 44px; }
  .instagram-section { padding-bottom: 36px; }
  .location-section { padding-top: 36px; }
  .menu-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 18px; }
  .product-media { height: 268px; padding: 16px; }
  .reviews-track { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 14px; overflow: visible; margin: 0; padding: 0; }
  .review-card { min-height: 190px; }
  .instagram-card { grid-template-columns: 1fr auto; align-items: center; padding: 38px 44px; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 1ms !important; transition-duration: 1ms !important; scroll-behavior: auto !important; }
}






















