:root {
  --red: #d72638;
  --yellow: #f4b400;
  --purple: #6a1b9a;
  --ink: #222222;
  --soft: #f5f5f5;
  --white: #ffffff;
  --green: #2f8f3a;
  --orange: #ef7d00;
  --blue: #1766c2;
  --shadow: 0 22px 70px rgba(34, 34, 34, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, Arial, sans-serif;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
  padding: 10px 18px;
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(34, 34, 34, 0.08);
  backdrop-filter: blur(18px);
}

.brand img {
  width: 132px;
}

.desktop-nav {
  display: none;
  align-items: center;
  gap: 22px;
  font-family: Poppins, Inter, sans-serif;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.desktop-nav a {
  padding: 12px 0;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.header-actions select,
.site-footer select {
  min-height: 42px;
  padding: 0 12px;
  border: 1px solid rgba(34, 34, 34, 0.16);
  border-radius: 8px;
  background: var(--white);
  font-weight: 800;
}

.cart-button,
.menu-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  height: 44px;
  border: 0;
  border-radius: 8px;
  cursor: pointer;
}

.cart-button {
  gap: 6px;
  color: var(--white);
  background: var(--red);
}

.cart-button strong {
  display: grid;
  place-items: center;
  min-width: 20px;
  height: 20px;
  border-radius: 999px;
  color: var(--red);
  background: var(--white);
  font-size: 12px;
}

.food-cart-button {
  color: var(--ink);
  background: var(--yellow);
}

.food-cart-button strong {
  color: var(--ink);
  background: var(--white);
}

.menu-button {
  flex-direction: column;
  gap: 5px;
  background: var(--ink);
}

.menu-button span {
  width: 20px;
  height: 2px;
  background: var(--white);
}

.mobile-nav {
  position: absolute;
  right: 18px;
  top: 78px;
  display: none;
  width: min(280px, calc(100vw - 36px));
  padding: 16px;
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.mobile-nav.open {
  display: grid;
}

.mobile-nav a {
  padding: 14px 8px;
  font-weight: 900;
  border-bottom: 1px solid rgba(34, 34, 34, 0.08);
}

.hero {
  position: relative;
  min-height: calc(70svh - 54px);
  display: grid;
  align-items: end;
  overflow: hidden;
  isolation: isolate;
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.28), rgba(0, 0, 0, 0.86)),
    linear-gradient(90deg, rgba(215, 38, 56, 0.45), rgba(244, 180, 0, 0.18));
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(760px, 100%);
  padding: 112px 22px 46px;
  color: var(--white);
}

.hero-logo {
  width: min(230px, 62vw);
  margin-bottom: 18px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--yellow);
  font-family: Poppins, Inter, sans-serif;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: Poppins, Inter, sans-serif;
  font-weight: 900;
  line-height: 0.95;
}

h1 {
  max-width: 720px;
  font-size: clamp(46px, 13vw, 106px);
}

h2 {
  font-size: clamp(34px, 8vw, 68px);
}

p {
  line-height: 1.6;
}

.hero-content p:not(.eyebrow) {
  max-width: 560px;
  font-size: 18px;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border: 0;
  border-radius: 8px;
  font-family: Poppins, Inter, sans-serif;
  font-weight: 900;
  cursor: pointer;
}

.button.primary {
  color: var(--white);
  background: var(--red);
}

.button.secondary {
  color: var(--ink);
  background: var(--yellow);
}

.button.full {
  width: 100%;
}

.experience-band {
  display: grid;
  gap: 1px;
  background: rgba(34, 34, 34, 0.1);
}

.experience-band article {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 22px;
  background: var(--ink);
  color: var(--white);
}

.experience-band strong {
  color: var(--yellow);
  font-family: Poppins, Inter, sans-serif;
  font-size: 30px;
  font-weight: 900;
}

.section {
  padding: 74px 22px;
}

.split {
  display: grid;
  gap: 34px;
  align-items: center;
}

.section-copy,
.section-heading {
  max-width: 820px;
}

.section-copy p:not(.eyebrow),
.section-heading p:not(.eyebrow) {
  max-width: 650px;
  font-size: 17px;
}

.section-copy .food-meeting-subtitle {
  max-width: 720px;
  color: var(--yellow);
  font-family: Poppins, Inter, sans-serif;
  font-size: 21px;
  font-weight: 800;
  line-height: 1.45;
}

.food-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.food-grid article {
  min-height: 142px;
  display: flex;
  align-items: end;
  padding: 16px;
  border-radius: 8px;
  color: var(--white);
  background:
    linear-gradient(180deg, rgba(34, 34, 34, 0.06), rgba(34, 34, 34, 0.74)),
    url("./assets/food-arepas.png") center / cover;
  box-shadow: var(--shadow);
}

.food-grid article:nth-child(2) {
  background:
    linear-gradient(180deg, rgba(34, 34, 34, 0.06), rgba(34, 34, 34, 0.74)),
    url("./assets/food-empanadas.png") center / cover;
}

.food-grid article:nth-child(3) {
  background:
    linear-gradient(180deg, rgba(34, 34, 34, 0.06), rgba(34, 34, 34, 0.74)),
    url("./assets/food-tequenos.png") center / cover;
}

.food-grid article:nth-child(4) {
  background:
    linear-gradient(180deg, rgba(34, 34, 34, 0.06), rgba(34, 34, 34, 0.74)),
    url("./assets/food-churros.png") center / cover;
}

.food-grid span {
  font-family: Poppins, Inter, sans-serif;
  font-size: 22px;
  font-weight: 900;
}

.market {
  background: var(--soft);
}

.shop-tools {
  display: grid;
  gap: 14px;
  margin: 28px 0;
}

.search-box {
  display: flex;
  align-items: center;
  min-height: 52px;
  padding: 0 14px;
  border: 1px solid rgba(34, 34, 34, 0.12);
  border-radius: 8px;
  background: var(--white);
}

.search-box span {
  color: var(--red);
  font-size: 22px;
  font-weight: 900;
}

.search-box input {
  width: 100%;
  border: 0;
  outline: 0;
  padding: 0 10px;
  background: transparent;
}

.filters {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding-bottom: 4px;
}

.filter-chip {
  flex: 0 0 auto;
  min-height: 42px;
  padding: 0 14px;
  border: 1px solid rgba(34, 34, 34, 0.12);
  border-radius: 999px;
  background: var(--white);
  font-weight: 800;
  cursor: pointer;
}

.filter-chip.active {
  color: var(--white);
  border-color: var(--red);
  background: var(--red);
}

.product-grid {
  display: grid;
  gap: 16px;
}

.food-menu-grid {
  display: grid;
  gap: 14px;
}

.food-menu-card {
  display: grid;
  gap: 10px;
  padding: 12px;
  border: 1px solid rgba(34, 34, 34, 0.1);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 12px 30px rgba(34, 34, 34, 0.1);
}

.food-menu-card img { width: 100%; aspect-ratio: 1.7; object-fit: cover; border-radius: 6px; }
.food-menu-card span { color: var(--red); font-size: 12px; font-weight: 900; text-transform: uppercase; }
.food-menu-card h3 { margin: 5px 0; font-size: 19px; }
.food-menu-card p { min-height: 40px; margin: 0; font-size: 13px; line-height: 1.4; }
.food-menu-card strong { color: var(--green); font-size: 18px; }
.food-menu-card.is-unavailable { opacity: 0.55; }

.food-order-drawer { border-left: 5px solid var(--yellow); }

.product-card {
  display: grid;
  gap: 12px;
  padding: 16px;
  border: 1px solid rgba(34, 34, 34, 0.08);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 12px 34px rgba(34, 34, 34, 0.08);
}

.product-card img {
  width: 100%;
  aspect-ratio: 1.25;
  object-fit: contain;
  border-radius: 8px;
  background: linear-gradient(180deg, #ffffff, #fff8df);
}

.product-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.category {
  color: var(--green);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.wishlist {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 999px;
  color: var(--red);
  background: #fff0f2;
  cursor: pointer;
}

.wishlist.active {
  color: var(--white);
  background: var(--purple);
}

.product-card h3 {
  font-size: 20px;
  line-height: 1.05;
}

.product-card p {
  margin: 0;
  min-height: 48px;
  font-size: 14px;
}

.product-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.tag {
  color: #4f5b37;
  font-size: 12px;
  font-weight: 800;
}

.price {
  padding: 9px 12px;
  border-radius: 8px;
  color: var(--white);
  background: var(--green);
  font-weight: 900;
}

.add-to-cart {
  min-height: 46px;
  border: 0;
  border-radius: 8px;
  color: var(--white);
  background: var(--ink);
  font-weight: 900;
  cursor: pointer;
}

.quantity-control {
  display: grid;
  grid-template-columns: 36px minmax(46px, 1fr) 36px;
  align-items: center;
  overflow: hidden;
  border: 1px solid rgba(34, 34, 34, 0.18);
  border-radius: 8px;
  background: var(--white);
}

.quantity-control button {
  width: 36px;
  height: 36px;
  border: 0;
  background: var(--soft);
  color: var(--ink);
  font-size: 21px;
  font-weight: 800;
  line-height: 1;
  cursor: pointer;
}

.quantity-control button:disabled {
  cursor: not-allowed;
  opacity: 0.45;
}

.quantity-control input {
  width: 100%;
  min-width: 0;
  height: 36px;
  border: 0;
  background: transparent;
  color: var(--ink);
  font-weight: 800;
  text-align: center;
}

.quantity-control input:focus { outline: 2px solid var(--yellow); outline-offset: -2px; }

.product-quantity { margin-bottom: 10px; }

.truck-hero {
  position: relative;
  min-height: 78svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  isolation: isolate;
}

.truck-hero img {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.truck-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.82));
}

.truck-panel {
  max-width: 760px;
  padding: 90px 22px 42px;
  color: var(--white);
}

.truck-panel p:not(.eyebrow) {
  max-width: 560px;
}

.truck-cards {
  display: grid;
  gap: 14px;
}

.truck-cards article {
  display: grid;
  gap: 8px;
  padding: 20px;
  border-radius: 8px;
  color: var(--white);
  background: var(--ink);
}

.truck-cards strong {
  color: var(--yellow);
  font-family: Poppins, Inter, sans-serif;
  font-size: 28px;
  font-weight: 900;
}

.truck-cards small {
  color: #ffd6da;
  font-weight: 800;
}

.events {
  background: var(--soft);
}

.event-layout {
  display: grid;
  gap: 18px;
  margin-top: 26px;
}

.map-card {
  position: relative;
  height: 360px;
  min-height: 330px;
  overflow: hidden;
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(23, 102, 194, 0.18), rgba(244, 180, 0, 0.22)),
    radial-gradient(circle at 40% 40%, #ffffff 0 8%, #dbe8f7 9% 100%);
  box-shadow: var(--shadow);
}

.map-pin {
  position: absolute;
  width: 22px;
  height: 22px;
  border: 5px solid var(--white);
  border-radius: 999px;
  background: var(--red);
  box-shadow: 0 8px 20px rgba(215, 38, 56, 0.4);
}

.map-pin.one {
  left: 54%;
  top: 33%;
}

.map-pin.two {
  left: 38%;
  top: 56%;
  background: var(--purple);
}

.map-pin.three {
  left: 62%;
  top: 68%;
  background: var(--yellow);
}

.event-list {
  display: grid;
  gap: 12px;
}

.event-list article {
  display: grid;
  gap: 6px;
  padding: 18px;
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 10px 24px rgba(34, 34, 34, 0.08);
}

.event-list strong {
  font-family: Poppins, Inter, sans-serif;
  font-size: 20px;
}

.catering {
  display: grid;
  gap: 28px;
  background:
    linear-gradient(135deg, rgba(215, 38, 56, 0.94), rgba(106, 27, 154, 0.9)),
    url("./assets/foodtruck-hero.png") center / cover;
  color: var(--white);
}

.lead-form {
  display: grid;
  gap: 12px;
  padding: 16px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: var(--shadow);
}

.lead-form input,
.lead-form select,
.lead-form textarea {
  width: 100%;
  min-height: 50px;
  border: 1px solid rgba(34, 34, 34, 0.14);
  border-radius: 8px;
  padding: 0 14px;
  color: var(--ink);
  background: var(--white);
}

.lead-form textarea {
  min-height: 122px;
  padding-top: 14px;
  resize: vertical;
}

.form-status {
  min-height: 22px;
  margin: 0;
  color: var(--green);
  font-size: 14px;
  font-weight: 900;
}

.checkout-status {
  min-height: 1.35em;
  margin: 2px 0 0;
  color: #b00048;
  font-weight: 700;
}

.checkout-status.is-pending {
  color: #222;
}

.discover {
  background: var(--white);
}

.story-grid,
.dashboard {
  display: grid;
  gap: 14px;
  margin-top: 24px;
}

.story-card {
  min-height: 210px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 20px;
  border: 0;
  border-radius: 8px;
  color: var(--white);
  text-align: left;
  background:
    linear-gradient(135deg, rgba(34, 34, 34, 0.1), rgba(34, 34, 34, 0.82)),
    url("./assets/foodtruck-hero.png") center / cover;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.story-card:hover,
.story-card:focus-visible {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  outline: 3px solid var(--yellow);
  outline-offset: 3px;
}

.story-card span {
  width: fit-content;
  padding: 8px 10px;
  border-radius: 999px;
  background: var(--yellow);
  color: var(--ink);
  font-size: 12px;
  font-weight: 900;
}

.story-card strong {
  font-family: Poppins, Inter, sans-serif;
  font-size: 24px;
  line-height: 1.08;
}

.story-modal {
  position: fixed;
  inset: 16px;
  z-index: 45;
  display: none;
  align-items: center;
  justify-content: center;
}

.story-modal.open {
  display: flex;
}

.story-reader {
  position: relative;
  width: min(820px, 100%);
  max-height: calc(100svh - 32px);
  overflow: auto;
  padding: 26px;
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.story-reader > button {
  position: sticky;
  top: 0;
  float: right;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 8px;
  background: var(--ink);
  color: var(--white);
  font-size: 30px;
  cursor: pointer;
}

.story-reader h2 {
  margin: 12px 0 22px;
  color: var(--red);
  font-size: clamp(32px, 7vw, 58px);
}

.story-reader p {
  font-size: 18px;
}

.admin {
  background: var(--ink);
  color: var(--white);
}

.dashboard article {
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
}

.dashboard span {
  color: #ffd6da;
  font-weight: 800;
}

.dashboard strong {
  display: block;
  margin-top: 10px;
  color: var(--yellow);
  font-family: Poppins, Inter, sans-serif;
  font-size: 34px;
  font-weight: 900;
}

.admin .section-heading p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.78);
}

.admin-panel {
  margin-top: 24px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
}

.admin-tabs {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.admin-tabs button {
  flex: 0 0 auto;
  min-height: 42px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  font-weight: 900;
  cursor: pointer;
}

.admin-tabs button.active {
  color: var(--ink);
  background: var(--yellow);
}

.admin-workspace {
  display: grid;
  gap: 14px;
  padding: 14px;
}

.admin-card {
  display: grid;
  gap: 14px;
  padding: 16px;
  border-radius: 8px;
  color: var(--ink);
  background: var(--white);
}

.admin-card > div:first-child span,
.admin-list > span {
  color: var(--red);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.admin-card strong {
  display: block;
  margin-top: 4px;
  font-family: Poppins, Inter, sans-serif;
  font-size: 22px;
  line-height: 1.05;
}

.admin-fields {
  display: grid;
  gap: 12px;
}

.admin-fields label {
  display: grid;
  gap: 6px;
  font-size: 13px;
  font-weight: 900;
}

.admin-fields input {
  width: 100%;
  min-height: 46px;
  border: 1px solid rgba(34, 34, 34, 0.14);
  border-radius: 8px;
  padding: 0 12px;
}

.admin-toggle {
  display: flex !important;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 10px !important;
}

.admin-toggle input {
  width: 22px;
  min-height: 22px;
}

.admin-card > button {
  min-height: 48px;
  border: 0;
  border-radius: 8px;
  color: var(--white);
  background: var(--red);
  font-weight: 900;
  cursor: pointer;
}

.admin-list div {
  padding: 12px;
  border-radius: 8px;
  background: var(--soft);
}

.admin-list p {
  margin: 4px 0 0;
  font-size: 14px;
}

.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 40;
  display: grid;
  grid-template-rows: auto 1fr auto auto auto;
  gap: 16px;
  width: min(420px, 100vw);
  height: 100svh;
  padding: 18px;
  background: var(--white);
  transform: translateX(100%);
  transition: transform 0.24s ease;
}

.cart-drawer.open {
  transform: translateX(0);
}

.cart-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: Poppins, Inter, sans-serif;
  font-size: 24px;
  font-weight: 900;
}

.cart-head button {
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 8px;
  background: var(--soft);
  font-size: 30px;
  cursor: pointer;
}

.cart-items {
  display: grid;
  align-content: start;
  gap: 10px;
  overflow: auto;
}

.cart-line {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 122px auto;
  align-items: center;
  gap: 8px;
  padding: 12px;
  border-radius: 8px;
  background: var(--soft);
}

.cart-total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid rgba(34, 34, 34, 0.12);
  font-size: 20px;
  font-weight: 900;
}

.customer-order-status {
  display: grid;
  gap: 6px;
  padding: 12px;
  border: 2px solid var(--yellow);
  border-radius: 8px;
  background: #fff8df;
  font-size: 14px;
}

.customer-order-status strong {
  font-family: Poppins, Inter, sans-serif;
  font-size: 18px;
}

.customer-order-status span {
  color: var(--red);
  font-weight: 900;
}

.checkout-fields {
  display: grid;
  gap: 9px;
}

.checkout-fields input,
.checkout-fields textarea {
  width: 100%;
  border: 1px solid rgba(34, 34, 34, 0.14);
  border-radius: 8px;
  padding: 11px 12px;
  font: inherit;
}

.checkout-fields textarea {
  min-height: 72px;
  resize: vertical;
}

.chat-widget {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 34;
}

.chat-launcher {
  display: grid;
  place-items: center;
  width: 62px;
  height: 62px;
  border: 0;
  border-radius: 999px;
  color: var(--white);
  background: var(--red);
  box-shadow: var(--shadow);
  cursor: pointer;
}

.chat-launcher span {
  font-size: 28px;
}

.chat-panel {
  position: absolute;
  right: 0;
  bottom: 76px;
  display: none;
  width: min(380px, calc(100vw - 32px));
  height: min(620px, calc(100svh - 110px));
  overflow: hidden;
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.chat-panel.open {
  display: grid;
  grid-template-rows: auto 1fr auto;
}

.chat-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px;
  color: var(--white);
  background: var(--ink);
}

.chat-header strong {
  display: block;
  font-family: Poppins, Inter, sans-serif;
  font-size: 20px;
  font-weight: 900;
}

.chat-header span {
  color: var(--yellow);
  font-size: 13px;
  font-weight: 800;
}

.chat-header button {
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 8px;
  color: var(--ink);
  background: var(--yellow);
  font-size: 26px;
  cursor: pointer;
}

.chat-messages {
  display: grid;
  align-content: start;
  gap: 10px;
  overflow: auto;
  padding: 14px;
  background: var(--soft);
}

.chat-message {
  max-width: 86%;
  padding: 11px 12px;
  border-radius: 8px;
  line-height: 1.45;
  font-size: 14px;
}

.chat-message.bot {
  justify-self: start;
  background: var(--white);
}

.chat-message.user {
  justify-self: end;
  color: var(--white);
  background: var(--purple);
}

.chat-options {
  display: grid;
  gap: 8px;
}

.chat-options button {
  min-height: 42px;
  border: 1px solid rgba(215, 38, 56, 0.22);
  border-radius: 8px;
  color: var(--red);
  background: var(--white);
  font-weight: 900;
  text-align: left;
  padding: 0 12px;
  cursor: pointer;
}

.chat-intro {
  margin: 0;
  padding: 14px 14px 0;
  color: #555;
  line-height: 1.45;
}

.chat-lead-form {
  display: grid;
  gap: 10px;
  padding: 14px;
  border-top: 1px solid rgba(34, 34, 34, 0.1);
}

.chat-lead-form label {
  display: grid;
  gap: 5px;
  color: var(--ink);
  font-size: 12px;
  font-weight: 900;
}

.chat-lead-form input,
.chat-lead-form select,
.chat-lead-form textarea {
  min-width: 0;
  border: 1px solid rgba(34, 34, 34, 0.16);
  border-radius: 8px;
  padding: 10px 11px;
  font: inherit;
}

.chat-lead-form textarea {
  min-height: 74px;
  resize: vertical;
}

.chat-lead-form button {
  min-height: 44px;
  border: 0;
  border-radius: 8px;
  color: var(--white);
  background: var(--red);
  font-weight: 900;
  padding: 0 14px;
  cursor: pointer;
}

.chat-lead-form button:disabled {
  opacity: 0.55;
  cursor: not-allowed;
}

.chat-status {
  margin: 0;
  color: var(--green);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.4;
}

.scrim {
  position: fixed;
  inset: 0;
  z-index: 35;
  display: none;
  background: rgba(0, 0, 0, 0.42);
}

.scrim.open {
  display: block;
}

.site-footer {
  display: grid;
  gap: 16px;
  justify-items: start;
  padding: 36px 22px;
  color: var(--white);
  background: linear-gradient(110deg, #171111, #5a1019 52%, #9d1738);
}

.site-footer img {
  width: 150px;
}

.site-footer p {
  max-width: 620px;
  margin: 0;
  font-weight: 800;
  color: var(--white);
}

@media (min-width: 680px) {
  .experience-band,
  .product-grid,
  .truck-cards,
  .story-grid,
  .dashboard {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .food-menu-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .dashboard {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .event-layout,
  .catering {
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
  }

  .admin-workspace {
    grid-template-columns: 1.2fr 0.8fr;
  }

  .admin-fields {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 980px) {
  .site-header {
    padding: 10px 34px;
  }

  .desktop-nav {
    display: flex;
  }

  .menu-button {
    display: none;
  }

  .hero-content,
  .truck-panel,
  .section {
    padding-left: 44px;
    padding-right: 44px;
  }

  .hero-content {
    padding-bottom: 62px;
  }

  .split {
    grid-template-columns: 0.9fr 1.1fr;
  }

  .food-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .product-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .shop-tools {
    grid-template-columns: 360px 1fr;
    align-items: center;
  }

  .site-footer {
    grid-template-columns: auto 1fr auto;
    align-items: center;
    padding: 34px 44px;
  }
}

@media (min-width: 1220px) {
  .product-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  .food-menu-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 10px;
  }

  .food-menu-card { gap: 8px; padding: 10px; }
  .food-menu-card h3 { font-size: 16px; }
  .food-menu-card p { min-height: 52px; font-size: 12px; }
  .food-menu-card strong { font-size: 16px; }
  .food-menu-card .quantity-control { grid-template-columns: 30px minmax(34px, 1fr) 30px; }
  .food-menu-card .quantity-control button, .food-menu-card .quantity-control input { height: 30px; }
  .food-menu-card .quantity-control button { width: 30px; font-size: 17px; }
  .food-menu-card .button { min-height: 36px; font-size: 13px; }
}

.stock-line {
  min-height: 22px;
  margin: 8px 0 12px;
  color: #2f8f3a;
  font-size: 13px;
  font-weight: 800;
}

.stock-line.warning {
  color: #ef7d00;
}

.stock-line.danger {
  color: #d72638;
}

.product-card.is-sold-out img {
  filter: grayscale(1);
  opacity: 0.55;
}

.product-card .add-to-cart:disabled {
  cursor: not-allowed;
  background: #d8d8d8;
  color: #777;
}

.map-card {
  position: relative;
  overflow: hidden;
}

.map-pin.dynamic {
  position: absolute;
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 50%;
  background: #d72638;
  color: #fff;
  font-weight: 900;
  box-shadow: 0 12px 28px rgba(215, 38, 56, 0.35);
  transform: translate(-50%, -50%);
}

.map-pin.dynamic span {
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
}

.map-pin.dynamic em {
  position: absolute;
  left: 50%;
  bottom: calc(100% + 8px);
  display: none;
  width: 180px;
  padding: 10px;
  border-radius: 8px;
  background: #222;
  color: #fff;
  font-size: 12px;
  font-style: normal;
  line-height: 1.35;
  transform: translateX(-50%);
  z-index: 5;
}

.map-pin.dynamic:hover em,
.map-pin.dynamic:focus-visible em {
  display: block;
}

.event-list article small,
.event-list article p {
  display: block;
  margin-top: 6px;
  color: #555;
  line-height: 1.45;
}

/* Live OpenStreetMap surface for current food truck locations. */
.map-card {
  height: 300px;
  min-height: 300px;
  max-height: 300px;
  background: #dcecf3;
}

.map-fallback {
  display: grid;
  min-height: 90px;
  place-content: center;
  gap: 8px;
  padding: 24px;
  background: linear-gradient(135deg, #dcecf3, #f9d88d);
  color: var(--ink);
  text-align: center;
}

.map-fallback strong {
  font-family: Poppins, Inter, sans-serif;
  font-size: 38px;
}

.didau-map-marker-wrap {
  background: transparent;
  border: 0;
}

.didau-map-marker {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 3px solid #fff;
  border-radius: 50% 50% 50% 0;
  background: var(--red);
  box-shadow: 0 7px 18px rgba(215, 38, 56, 0.42);
  transform: rotate(-45deg);
}

.didau-map-marker i {
  color: #fff;
  font-family: Poppins, Inter, sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 900;
  transform: rotate(45deg);
}

.didau-map-popup {
  display: grid;
  gap: 4px;
  min-width: 180px;
  color: var(--ink);
  font-family: Inter, Arial, sans-serif;
}

.didau-map-popup strong {
  font-family: Poppins, Inter, sans-serif;
  font-size: 14px;
}

.didau-map-popup span,
.didau-map-popup small {
  color: #555;
  font-size: 12px;
}

/* Critical Leaflet layout rules kept locally so map tiles cannot overflow. */
.map-card.leaflet-container {
  position: relative;
  overflow: hidden !important;
  touch-action: pan-x pan-y;
}

.map-card .leaflet-pane,
.map-card .leaflet-tile,
.map-card .leaflet-marker-icon,
.map-card .leaflet-marker-shadow,
.map-card .leaflet-tile-container,
.map-card .leaflet-pane > svg,
.map-card .leaflet-pane > canvas {
  position: absolute;
  left: 0;
  top: 0;
}

.map-card .leaflet-pane { z-index: 400; }
.map-card .leaflet-tile-pane { z-index: 200; }
.map-card .leaflet-overlay-pane { z-index: 400; }
.map-card .leaflet-shadow-pane { z-index: 500; }
.map-card .leaflet-marker-pane { z-index: 600; }
.map-card .leaflet-popup-pane { z-index: 700; }
.map-card .leaflet-tile { visibility: hidden; }
.map-card .leaflet-tile-loaded { visibility: inherit; }
.map-card .leaflet-popup { position: absolute; text-align: center; }
.map-card .leaflet-popup-content-wrapper { border-radius: 8px; background: #fff; box-shadow: 0 8px 24px rgba(34, 34, 34, 0.22); }
.map-card .leaflet-popup-content { margin: 12px; }

@media (max-width: 679px) {
  .map-card,
  .map-fallback {
    height: 280px;
    min-height: 280px;
    max-height: 280px;
  }

  .cart-line { grid-template-columns: 1fr auto; }
  .cart-line .cart-quantity { grid-column: 1 / -1; }
}

@media (min-width: 680px) {
  .event-layout {
    align-items: stretch;
  }

  .event-layout .map-card {
    height: 360px;
    min-height: 360px;
    max-height: 360px;
  }
}
