.cart-hero {
  background:
    linear-gradient(
      180deg,
      rgba(12, 10, 8, 0.18) 0%,
      rgba(12, 10, 8, 0.36) 54%,
      rgba(12, 10, 8, 0.6) 100%
    ),
    url("/branding/hero.jpg") no-repeat;
  background-size: cover;
  background-position: center;
}

.location-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

.location-grid .card {
  display: grid;
  gap: 0.75rem;
}

.location-grid .card .btn {
  justify-self: start;
}

/* Upcoming stops section */
.locations-upcoming-heading {
  margin-top: 2.5rem;
  margin-bottom: 0;
}

.locations-stop-card {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.locations-stop-card .stop-date {
  font-weight: 600;
  color: var(--gray-700);
  font-size: 0.92rem;
}

.locations-stop-card .btn {
  margin-top: 0.5rem;
  align-self: flex-start;
}

.map-embed iframe {
  width: 100%;
  min-height: 320px;
  border: 0;
  border-radius: 14px;
}

/* ── Menu grid (kept for possible future card use) ─────── */
.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.25rem;
  margin: 1rem 0;
}

/* ── Menu list (row layout) ────────────────────────────── */
.menu-list {
  list-style: none;
  margin: 0;
  padding: 0;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--card-radius);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.menu-row {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem 1.1rem;
  border-bottom: 1px solid var(--gray-100);
  transition: background 0.15s ease;
}

.menu-row:last-child {
  border-bottom: none;
}

.menu-row:hover {
  background: var(--gray-50);
}

.menu-row-featured {
  background: rgba(244, 181, 40, 0.1);
}

.menu-row-featured:hover {
  background: rgba(244, 181, 40, 0.18);
}

.menu-row-unavailable {
  opacity: 0.55;
}

.menu-row-img {
  width: 72px;
  height: 72px;
  object-fit: cover;
  border-radius: 10px;
  flex-shrink: 0;
}

.menu-row-left {
  flex: 1;
  min-width: 0;
}

.menu-row-title {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 0.2rem;
}

.menu-row-name {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1.2;
}

.menu-row-desc {
  margin: 0;
  font-size: 0.82rem;
  color: var(--gray-600);
  line-height: 1.45;
}

.menu-row-price {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--primary-light);
  white-space: nowrap;
  align-self: center;
}

/* ── Category extras / add-ons box ─────────────────────── */
.menu-category-extras {
  background: var(--white);
  border: 1px solid var(--gray-300);
  border-left: 3px solid var(--primary-light);
  border-radius: 10px;
  padding: 0.65rem 1rem;
  margin-bottom: 0.75rem;
}

.menu-extras-label {
  margin: 0 0 0.35rem;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.menu-extras-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 1.25rem;
}

.menu-extras-list li {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.85rem;
  color: var(--gray-700);
}

.menu-extras-price {
  font-weight: 700;
  color: var(--primary-light);
}

/* ── Tahini notice ──────────────────────────────────────── */
.menu-tahini-notice {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  background: rgba(244, 181, 40, 0.12);
  border: 1px solid rgba(244, 181, 40, 0.45);
  border-radius: 10px;
  padding: 0.65rem 1rem;
  margin-bottom: 0.75rem;
  font-size: 0.85rem;
  color: var(--gray-800);
  line-height: 1.5;
}

.menu-tahini-icon {
  flex-shrink: 0;
  font-size: 1rem;
  margin-top: 0.05rem;
}

/* ── Category note (sauces / add-ons shown once) ────────── */
.menu-category-note {
  background: var(--accent-soft);
  border: 1px solid var(--gray-300);
  border-radius: 10px;
  padding: 0.7rem 1rem;
  margin-bottom: 0.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.menu-category-note p {
  margin: 0;
  font-size: 0.82rem;
  color: var(--gray-700);
  line-height: 1.5;
}

.menu-note-label {
  font-weight: 700;
  color: var(--primary);
}

.menu-note-meal {
  font-weight: 700;
  color: var(--primary-light) !important;
}

/* ── Card styles (preserved if needed) ─────────────────── */
.menu-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--card-radius);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.menu-card-img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.menu-card-body {
  padding: 1rem 1rem 0.5rem;
  flex: 1;
}

.menu-card-name {
  margin: 0 0 0.25rem;
  font-size: 1.05rem;
  color: var(--primary);
}

.menu-card-desc {
  margin: 0;
  font-size: 0.85rem;
  color: var(--gray-600);
}

.menu-card-footer {
  padding: 0.6rem 1rem 0.9rem;
  border-top: 1px solid var(--gray-100);
}

.menu-card-price {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--primary-light);
  font-family: var(--font-heading);
}

.menu-card-unavailable {
  opacity: 0.65;
}

.booking-preview {
  text-align: center;
}

.contact-form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
}

.contact-form-grid textarea {
  min-height: 120px;
}

.menu-page {
  display: grid;
  gap: 1rem;
}

.menu-callout {
  display: grid;
  gap: 0.75rem;
  padding: 1.25rem;
  border-radius: 14px;
  background: var(--accent-soft);
  border: 1px solid var(--gray-300);
}

.menu-callout-focus {
  border-color: var(--primary-light);
  box-shadow: 0 0 0 4px rgba(197, 19, 23, 0.2);
}

.menu-callout-instruction {
  margin: 0;
  font-weight: 600;
}

.menu-callout-phone {
  margin: 0;
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--primary);
}

.menu-category-block {
  margin-top: 0.75rem;
}

.menu-category-block h2 {
  margin-bottom: 0.5rem;
  font-size: clamp(1.3rem, 3vw, 1.7rem);
  border-bottom: 2px solid var(--gray-200);
  padding-bottom: 0.4rem;
}

/* Category description text */
.menu-category-desc {
  font-size: 0.9rem;
  color: var(--gray-600);
  margin: 0 0 0.75rem;
  line-height: 1.55;
}

/* Item sizes (shown as inline chips) */
.menu-row-sizes {
  list-style: none;
  padding: 0;
  margin: 0.3rem 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
}

.menu-row-sizes li {
  font-size: 0.79rem;
  font-weight: 600;
  color: var(--gray-700);
  background: var(--gray-100);
  border: 1px solid var(--gray-200);
  border-radius: 6px;
  padding: 0.15rem 0.5rem;
}

/* Included items note */
.menu-row-included {
  margin: 0.3rem 0 0;
  font-size: 0.8rem;
  color: var(--gray-600);
  font-style: italic;
  line-height: 1.45;
}

/* Tag chips */
.menu-row-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.3rem;
  margin-top: 0.35rem;
}

.menu-tag {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 0.1rem 0.45rem;
  font-size: 0.72rem;
  font-weight: 600;
  background: var(--gray-100);
  color: var(--gray-700);
  border: 1px solid var(--gray-200);
}

/* old title-row kept for any legacy usage */
.menu-card-title-row h3 {
  margin: 0;
}

.menu-pill {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 0.15rem 0.5rem;
  font-size: 0.75rem;
  font-weight: 700;
  background: rgba(188, 47, 36, 0.12);
  color: var(--primary-light);
}

.menu-pill-muted {
  background: var(--gray-200);
  color: var(--gray-700);
}

.menu-card-unavailable {
  opacity: 0.72;
}

.inline-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.link-as-btn {
  text-decoration: none;
}

@media (min-width: 900px) {
  .location-grid {
    grid-template-columns: 1fr 1fr;
  }

  .menu-callout {
    grid-template-columns: 1fr auto auto;
    align-items: center;
    gap: 1rem;
    padding: 1.1rem 1.2rem;
  }

  .menu-callout-instruction {
    font-size: 1.02rem;
  }
}

@media (max-width: 500px) {
  .menu-grid {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 900px) {
  .menu-grid {
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  }
}

/* ============================================================
   LOCATIONS PAGE REDESIGN
   ============================================================ */

/* ── Page Hero ── */
.locations-hero {
  position: relative;
  background:
    linear-gradient(
      90deg,
      rgba(12, 10, 8, 0.52) 0%,
      rgba(12, 10, 8, 0.28) 55%,
      rgba(12, 10, 8, 0.18) 100%
    ),
    linear-gradient(
      180deg,
      rgba(12, 10, 8, 0.18) 0%,
      rgba(12, 10, 8, 0.36) 58%,
      rgba(12, 10, 8, 0.62) 100%
    ),
    url("/branding/hero.jpg") no-repeat center / cover;
  color: var(--white);
  padding: 7rem 1rem 4rem;
  min-height: 42vh;
  display: flex;
  align-items: center;
}

.locations-hero .container {
  position: relative;
  z-index: 1;
}

.locations-hero-kicker {
  display: inline-block;
  margin-bottom: 0.75rem;
  padding: 0.3rem 0.65rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  background: rgba(255, 255, 255, 0.1);
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  font-size: 0.72rem;
  color: var(--white);
}

.locations-hero h1 {
  font-size: clamp(2rem, 6vw, 3rem);
  color: var(--white);
  margin: 0 0 0.75rem;
  line-height: 1.15;
  text-shadow: 0 6px 18px rgba(0, 0, 0, 0.55);
}

.locations-hero p {
  font-size: clamp(0.97rem, 2.5vw, 1.15rem);
  color: rgba(255, 255, 255, 0.85);
  max-width: 520px;
  margin: 0 0 1.5rem;
  line-height: 1.6;
  text-shadow: 0 3px 12px rgba(0, 0, 0, 0.45);
}

.locations-hero-actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

/* ── Now Serving ── */
.loc-now-serving {
  background: var(--primary-dark);
  color: var(--white);
  padding: 3rem 0 3.5rem;
  border-top: 3px solid var(--primary-light);
}

.loc-loading {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.95rem;
  padding: 1rem 0;
}

.loc-now-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.loc-now-info {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.loc-now-title {
  color: var(--white);
  font-size: clamp(1.5rem, 4vw, 2.1rem);
  margin: 0.3rem 0 0.1rem;
  line-height: 1.2;
}

.loc-now-address {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.05rem;
  margin: 0.1rem 0;
  font-weight: 500;
}

.loc-now-date {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.92rem;
  margin: 0;
}

.loc-now-time {
  color: var(--accent-gold);
  font-weight: 700;
}

.loc-now-notes {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.88rem;
  font-style: italic;
  margin: 0.2rem 0 0;
}

.loc-now-offline {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.93rem;
  max-width: 380px;
  line-height: 1.5;
  margin: 0.25rem 0 0;
}

.loc-now-actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.loc-map-embed {
  border-radius: var(--card-radius);
  overflow: hidden;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.3);
  padding: 0;
  min-height: 320px;
  background: var(--gray-800);
}

.loc-map-embed iframe {
  border-radius: var(--card-radius);
}

.map-directions-fallback {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.75rem;
}

.map-directions-address {
  margin: 0;
  font-size: 0.95rem;
  color: var(--gray-300);
}

.map-directions-hint {
  margin: 0;
  font-size: 0.8rem;
  color: var(--gray-400);
  opacity: 0.75;
}

@media (max-width: 900px) {
  .loc-now-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

/* ── Upcoming Stops ── */
.loc-upcoming-section {
  background: var(--gray-100);
  padding: 4.5rem 0;
}

.loc-stops-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}

.loc-stop-card {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  position: relative;
  transition:
    transform var(--anim-duration) ease,
    box-shadow var(--anim-duration) ease;
}

.loc-stop-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.loc-stop-next {
  border: 2px solid var(--primary-light);
  box-shadow: 0 8px 24px rgba(188, 47, 36, 0.14);
}

.loc-next-badge {
  display: inline-block;
  padding: 0.25rem 0.6rem;
  border-radius: 6px;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: var(--primary-light);
  color: var(--white);
  margin-bottom: 0.35rem;
  width: fit-content;
}

.loc-stop-card h3 {
  font-size: 1.15rem;
  margin: 0;
  color: var(--primary);
}

.loc-stop-address {
  color: var(--gray-700);
  font-size: 0.93rem;
  margin: 0;
  font-weight: 500;
}

.loc-stop-date {
  color: var(--gray-600);
  font-size: 0.88rem;
  margin: 0;
}

.loc-stop-time {
  color: var(--primary-light);
  font-size: 0.9rem;
  font-weight: 700;
  margin: 0;
}

.loc-stop-notes {
  color: var(--gray-600);
  font-size: 0.85rem;
  font-style: italic;
  margin: 0;
  line-height: 1.45;
}

.loc-stop-card .btn {
  margin-top: 0.75rem;
  align-self: flex-start;
}

.loc-empty-state {
  max-width: 520px;
}

.loc-empty-state p {
  color: var(--gray-600);
  margin: 0;
}

/* ── How to Order ── */
.loc-how-section {
  background: var(--primary);
  color: var(--white);
  padding: 4.5rem 0;
}

.loc-how-section .section-header h2 {
  color: var(--white);
}

.loc-how-section .section-header p {
  color: rgba(255, 255, 255, 0.65);
}

.loc-how-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.loc-how-step {
  text-align: center;
  padding: 0 0.5rem;
}

.loc-how-num {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--primary-light);
  color: var(--white);
  font-size: 1.35rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-family: var(--font-heading);
  box-shadow: 0 4px 14px rgba(188, 47, 36, 0.4);
}

.loc-how-step h3 {
  color: var(--white);
  font-size: 1.05rem;
  margin-bottom: 0.4rem;
}

.loc-how-step p {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.88rem;
  line-height: 1.55;
  margin: 0;
}

.loc-how-actions {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

@media (max-width: 1024px) {
  .loc-how-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}

@media (max-width: 640px) {
  .locations-hero {
    padding: 6rem 1rem 3rem;
    text-align: center;
    min-height: 38vh;
    background-position: 58% center;
  }
  .locations-hero p {
    margin: 0 auto 1.5rem;
  }
  .locations-hero-actions {
    justify-content: center;
  }
  .locations-hero-actions .btn,
  .loc-now-actions .btn {
    width: 100%;
    max-width: 320px;
    min-width: 0;
    text-align: center;
  }
  .loc-now-actions {
    justify-content: center;
  }
  .map-embed iframe,
  .loc-map-embed {
    min-height: 260px;
  }
  .loc-how-grid {
    grid-template-columns: 1fr;
  }
  .loc-how-actions {
    flex-direction: column;
    align-items: center;
  }
  .loc-how-actions .btn {
    width: 100%;
    max-width: 320px;
  }
}

/* ============================================================
   LOCATIONS PAGE — HOURS SECTION
   ============================================================ */

.loc-hours-section {
  background: var(--gray-100);
  padding: 3.5rem 0;
  border-top: 1px solid var(--gray-200);
}

.loc-hours-inner {
  max-width: 560px;
  margin: 0 auto;
}

.loc-hours-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.loc-hours-header h2 {
  margin: 0;
  color: var(--primary);
  font-size: clamp(1.6rem, 4vw, 2rem);
}

.loc-hours-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 1.25rem;
}

.loc-hours-table td {
  padding: 0.55rem 0.5rem;
  border-bottom: 1px solid var(--gray-200);
  font-size: 0.95rem;
  color: var(--gray-700);
}

.loc-hours-table tr:last-child td {
  border-bottom: none;
}

.loc-hours-day {
  font-weight: 600;
  width: 45%;
  color: var(--gray-800);
}

.loc-hours-time {
  color: var(--gray-700);
}

.loc-hours-today td {
  background: rgba(197, 19, 23, 0.06);
  font-weight: 700;
  color: var(--primary);
}

.loc-hours-today .loc-hours-time {
  color: var(--primary-light);
}

.loc-hours-closed {
  color: var(--gray-600);
  font-style: italic;
}

.loc-hours-note {
  font-size: 0.85rem;
  color: var(--gray-600);
  font-style: italic;
  line-height: 1.55;
  margin: 0;
  padding-top: 0.5rem;
  border-top: 1px solid var(--gray-200);
}

/* Locations hero enhancements */
.locations-hero-status {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin: 0.75rem 0 0.5rem;
  flex-wrap: wrap;
}

.locations-hero-hours {
  font-size: 0.95rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
}

.locations-hero-note {
  font-size: 0.83rem;
  color: rgba(255, 255, 255, 0.55);
  font-style: italic;
  margin: 0 0 1.25rem;
  max-width: 420px;
}

@media (max-width: 640px) {
  .locations-hero-note {
    margin: 0 auto 1.25rem;
  }

  .locations-hero-status {
    justify-content: center;
  }
}
