:root {
  --sea-950: #082f2d;
  --sea-900: #0b3a38;
  --sea-800: #124f4c;
  --sea-700: #0d6763;
  --sea-100: #dff1ef;
  --sea-50: #eef8f7;
  --orange: #f08a2d;
  --orange-dark: #c7640f;
  --orange-soft: #fff0df;
  --sand: #f8f3e9;
  --cream: #fffdf8;
  --ink: #173633;
  --muted: #6c7d7a;
  --line: #dce6e3;
  --white: #ffffff;
  --danger: #cb4b45;
  --shadow-sm: 0 7px 20px rgba(8, 47, 45, 0.07);
  --shadow: 0 22px 55px rgba(8, 47, 45, 0.13);
  font-family: Tahoma, "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: var(--cream);
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--cream);
  color: var(--ink);
  line-height: 1.7;
}

body.cart-open {
  overflow: hidden;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

button {
  color: inherit;
}

button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid rgba(240, 138, 45, 0.26);
  outline-offset: 2px;
}

.customer-announcement {
  display: flex;
  min-height: 35px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 6px 18px;
  background: var(--sea-950);
  color: rgba(255, 255, 255, 0.72);
  font-size: 10px;
}

.customer-announcement span {
  color: #ffc27f;
  font-weight: 900;
}

.customer-announcement b {
  font-weight: 500;
}

.customer-header {
  position: sticky;
  z-index: 40;
  top: 0;
  display: grid;
  grid-template-columns: auto 1fr auto;
  min-height: 78px;
  align-items: center;
  gap: 35px;
  padding: 12px clamp(20px, 5vw, 76px);
  border-bottom: 1px solid rgba(220, 230, 227, 0.8);
  background: rgba(255, 253, 248, 0.94);
  backdrop-filter: blur(14px);
}

.customer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.customer-brand > span:last-child {
  display: grid;
}

.customer-brand strong {
  letter-spacing: 2px;
  line-height: 1.1;
}

.customer-brand small {
  color: var(--muted);
  font-size: 8px;
}

.customer-brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 50%;
  background: var(--orange);
  color: var(--sea-950);
  font-size: 22px;
  font-weight: 900;
  box-shadow: inset -5px -4px 0 rgba(8, 47, 45, 0.11);
}

.customer-header nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 2.5vw, 37px);
}

.customer-header nav a {
  position: relative;
  color: #435c59;
  font-size: 11px;
  font-weight: 700;
}

.customer-header nav a::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  width: 0;
  height: 2px;
  border-radius: 99px;
  background: var(--orange);
  content: "";
  transition: width 170ms ease;
}

.customer-header nav a:hover::after {
  width: 100%;
}

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

.outline-link,
.cart-trigger {
  display: inline-flex;
  min-height: 39px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 8px 13px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: transparent;
  cursor: pointer;
  font-size: 10px;
  font-weight: 800;
}

.cart-trigger {
  border-color: var(--orange);
  background: var(--orange);
  color: var(--sea-950);
}

.cart-trigger span {
  display: grid;
  min-width: 21px;
  height: 21px;
  place-items: center;
  border-radius: 50%;
  background: var(--sea-950);
  color: #fff;
  direction: ltr;
  font-size: 8px;
}

main {
  overflow: hidden;
}

.customer-hero {
  display: grid;
  max-width: 1450px;
  min-height: 660px;
  grid-template-columns: minmax(0, 1.05fr) minmax(430px, 0.95fr);
  align-items: center;
  gap: clamp(35px, 7vw, 110px);
  margin: 0 auto;
  padding: 68px clamp(22px, 6vw, 90px);
}

.section-label {
  display: inline-block;
  color: var(--sea-700);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.3px;
}

.section-label.light {
  color: #ffc27f;
}

.hero-message h1 {
  margin: 15px 0 17px;
  color: var(--sea-950);
  font-size: clamp(39px, 5.4vw, 76px);
  line-height: 1.19;
  letter-spacing: -1.7px;
}

.hero-message > p {
  max-width: 680px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(13px, 1.35vw, 17px);
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.customer-button {
  display: inline-flex;
  min-height: 47px;
  align-items: center;
  justify-content: center;
  padding: 11px 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  font-size: 11px;
  font-weight: 900;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    background 160ms ease;
}

.customer-button:hover {
  transform: translateY(-2px);
}

.customer-button.primary {
  background: var(--orange);
  color: var(--sea-950);
  box-shadow: 0 10px 25px rgba(240, 138, 45, 0.22);
}

.customer-button.whatsapp {
  border-color: #309566;
  background: #309566;
  color: #fff;
}

.customer-button.talabat {
  border-color: #ff5a00;
  background: #ff5a00;
  color: #fff;
}

.customer-button.light {
  background: #fff;
  color: var(--sea-900);
}

.customer-button.outline {
  border-color: var(--sea-700);
  background: #fff;
  color: var(--sea-700);
}

.customer-button.full {
  width: 100%;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 30px;
}

.hero-trust span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: var(--muted);
  font-size: 8px;
}

.hero-trust b {
  color: var(--sea-700);
}

.hero-visual {
  position: relative;
  min-height: 540px;
  overflow: hidden;
  border: 11px solid #fff;
  border-radius: 46% 46% 18px 18px;
  background: var(--sea-900);
  box-shadow: var(--shadow);
}

.hero-visual::after {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: inherit;
  content: "";
  pointer-events: none;
}

.hero-visual > img {
  width: 100%;
  height: 100%;
  min-height: 540px;
  object-fit: cover;
  object-position: center 82%;
  filter: saturate(0.94) contrast(1.03);
}

.hero-float {
  position: absolute;
  z-index: 2;
  display: grid;
  min-width: 135px;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.93);
  box-shadow: var(--shadow-sm);
}

.hero-float small {
  color: var(--muted);
  font-size: 8px;
}

.hero-float strong {
  color: var(--sea-900);
  direction: ltr;
  text-align: right;
  font-size: 12px;
}

.hero-float-one {
  top: 22%;
  right: 20px;
}

.hero-float-two {
  bottom: 25px;
  left: 20px;
}

.customer-proof {
  display: grid;
  max-width: 1280px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: -18px auto 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.customer-proof > div {
  padding: 21px 24px;
  border-left: 1px solid var(--line);
}

.customer-proof > div:last-child {
  border-left: 0;
}

.customer-proof strong,
.customer-proof span {
  display: block;
}

.customer-proof strong {
  color: var(--sea-900);
  font-size: 12px;
}

.customer-proof span {
  margin-top: 3px;
  color: var(--muted);
  font-size: 9px;
}

.menu-section,
.why-section,
.privacy-section,
.location-section {
  max-width: 1320px;
  margin: 0 auto;
  padding: 90px 24px;
}

.customer-section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 27px;
}

.customer-section-head.centered {
  justify-content: center;
  text-align: center;
}

.customer-section-head h2,
.fresh-copy h2,
.reservation-copy h2,
.location-card h2 {
  margin: 5px 0 7px;
  color: var(--sea-950);
  font-size: clamp(27px, 4vw, 43px);
  line-height: 1.25;
}

.customer-section-head p,
.fresh-copy p,
.reservation-copy p,
.location-card p {
  max-width: 670px;
  margin: 0;
  color: var(--muted);
  font-size: 11px;
}

.menu-search {
  display: flex;
  width: min(340px, 100%);
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
}

.menu-search:focus-within {
  border-color: var(--sea-700);
  box-shadow: 0 0 0 4px rgba(13, 103, 99, 0.08);
}

.menu-search input {
  min-width: 0;
  width: 100%;
  padding: 0;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--ink);
  font-size: 10px;
}

.category-tabs {
  display: flex;
  gap: 8px;
  padding-bottom: 16px;
  overflow-x: auto;
  scrollbar-width: thin;
}

.category-tabs button {
  flex: 0 0 auto;
  padding: 8px 13px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: var(--muted);
  cursor: pointer;
  font-size: 9px;
  font-weight: 800;
}

.category-tabs button.active {
  border-color: var(--sea-900);
  background: var(--sea-900);
  color: #fff;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.menu-card {
  display: flex;
  min-width: 0;
  overflow: hidden;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
  box-shadow: var(--shadow-sm);
  transition:
    transform 170ms ease,
    box-shadow 170ms ease;
}

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

.menu-card-art {
  position: relative;
  height: 145px;
  overflow: hidden;
  background: var(--sea-900);
}

.menu-card-art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 75%;
  opacity: 0.82;
  transform: scale(1.03);
}

.menu-card-art::after {
  position: absolute;
  inset: 0;
  background: rgba(8, 47, 45, 0.18);
  content: "";
}

.menu-card-tag {
  position: absolute;
  z-index: 1;
  top: 11px;
  right: 11px;
  padding: 4px 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--sea-800);
  font-size: 8px;
  font-weight: 900;
}

.menu-card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 15px;
}

.menu-card-body h3 {
  margin: 0;
  color: var(--sea-950);
  font-size: 13px;
}

.menu-card-body p {
  min-height: 35px;
  margin: 5px 0 13px;
  color: var(--muted);
  font-size: 8px;
}

.menu-card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-top: auto;
}

.menu-card-price {
  display: grid;
}

.menu-card-price strong {
  color: var(--sea-900);
  direction: ltr;
  text-align: right;
  font-size: 15px;
}

.menu-card-price small {
  color: var(--muted);
  font-size: 7px;
}

.menu-card button {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: var(--orange);
  color: var(--sea-950);
  cursor: pointer;
  font-size: 19px;
  font-weight: 800;
}

.menu-card button:hover {
  background: #ff9f48;
}

.menu-empty {
  margin-top: 20px;
  padding: 30px;
  border: 1px dashed var(--line);
  border-radius: 14px;
  color: var(--muted);
  text-align: center;
  font-size: 10px;
}

.fresh-section {
  display: grid;
  max-width: 1320px;
  min-height: 560px;
  grid-template-columns: minmax(330px, 0.85fr) minmax(0, 1.15fr);
  margin: 30px auto 0;
  overflow: hidden;
  border-radius: 28px;
  background: var(--sea-950);
  box-shadow: var(--shadow);
}

.fresh-image {
  min-height: 560px;
  overflow: hidden;
}

.fresh-image img {
  width: 100%;
  height: 100%;
  min-height: 560px;
  object-fit: cover;
  object-position: center 68%;
}

.fresh-copy {
  display: grid;
  align-content: center;
  padding: clamp(35px, 6vw, 80px);
  color: #fff;
}

.fresh-copy h2,
.reservation-copy h2 {
  color: #fff;
}

.fresh-copy p,
.reservation-copy p {
  color: rgba(255, 255, 255, 0.68);
}

.fresh-copy ul {
  display: grid;
  gap: 10px;
  margin: 24px 0;
  padding: 0;
  list-style: none;
}

.fresh-copy li {
  position: relative;
  padding-right: 25px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 10px;
}

.fresh-copy li::before {
  position: absolute;
  top: 4px;
  right: 0;
  display: grid;
  width: 16px;
  height: 16px;
  place-items: center;
  border-radius: 50%;
  background: var(--orange);
  color: var(--sea-950);
  content: "✓";
  font-size: 8px;
  font-weight: 900;
}

.fresh-copy .customer-button {
  justify-self: start;
}

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

.why-grid article {
  min-height: 190px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
}

.why-grid article > span {
  display: grid;
  width: 35px;
  height: 35px;
  place-items: center;
  border-radius: 10px;
  background: var(--orange-soft);
  color: var(--orange-dark);
  direction: ltr;
  font-size: 9px;
  font-weight: 900;
}

.why-grid h3 {
  margin: 25px 0 7px;
  color: var(--sea-950);
  font-size: 14px;
}

.why-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 9px;
}

.reservation-section {
  display: grid;
  max-width: 1320px;
  grid-template-columns: minmax(0, 0.9fr) minmax(400px, 1.1fr);
  gap: clamp(30px, 6vw, 80px);
  margin: 25px auto;
  padding: clamp(35px, 6vw, 75px);
  border-radius: 28px;
  background: var(--sea-900);
  box-shadow: var(--shadow);
}

.reservation-copy {
  align-self: center;
}

.reservation-note {
  display: grid;
  margin-top: 24px;
  padding: 13px 15px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 11px;
  background: rgba(255, 255, 255, 0.05);
}

.reservation-note b {
  color: #ffc27f;
  font-size: 9px;
}

.reservation-note span {
  color: rgba(255, 255, 255, 0.68);
  font-size: 9px;
}

.reservation-form {
  display: grid;
  gap: 12px;
  padding: 22px;
  border-radius: 18px;
  background: #fff;
}

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

.delivery-fields {
  display: grid;
  gap: 10px;
  padding: 12px;
  border: 1px solid #f0d9b4;
  border-radius: 11px;
  background: var(--orange-soft);
}

.delivery-fields[hidden] {
  display: none;
}

.reservation-form label,
.cart-checkout label {
  display: grid;
  gap: 5px;
  color: #395653;
  font-size: 9px;
  font-weight: 800;
}

.reservation-form input,
.reservation-form select,
.reservation-form textarea,
.cart-checkout input,
.cart-checkout select,
.cart-checkout textarea {
  min-width: 0;
  width: 100%;
  padding: 10px 11px;
  border: 1px solid var(--line);
  border-radius: 9px;
  outline: 0;
  background: #fbfcfb;
  color: var(--ink);
  font-size: 10px;
  font-weight: 400;
}

.reservation-form input:focus,
.reservation-form select:focus,
.reservation-form textarea:focus,
.cart-checkout input:focus,
.cart-checkout select:focus,
.cart-checkout textarea:focus {
  border-color: var(--sea-700);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(13, 103, 99, 0.08);
}

.reservation-form textarea,
.cart-checkout textarea {
  resize: vertical;
}

.consent-box {
  display: grid;
  gap: 10px;
  padding: 12px;
  border: 1px solid #d9e6e3;
  border-radius: 11px;
  background: var(--sea-50);
}

.service-consent,
.marketing-consent {
  display: flex !important;
  align-items: flex-start;
  gap: 8px !important;
  color: var(--muted) !important;
  font-size: 8px !important;
  font-weight: 500 !important;
}

.service-consent input,
.marketing-consent input {
  width: 15px;
  height: 15px;
  flex: 0 0 15px;
  margin: 2px 0 0;
  accent-color: var(--sea-700);
}

.service-consent b {
  color: var(--sea-800);
}

.marketing-frequency {
  padding-top: 9px;
  border-top: 1px solid #d9e6e3;
}

.marketing-frequency select {
  background: #fff;
}

.privacy-section {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: start;
}

.privacy-section h2 {
  margin: 5px 0 10px;
  color: var(--sea-950);
  font-size: clamp(27px, 4vw, 43px);
  line-height: 1.25;
}

.privacy-section > div:first-child p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

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

.privacy-points article {
  display: grid;
  gap: 5px;
  padding: 15px;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.privacy-points b {
  color: var(--sea-800);
  font-size: 13px;
}

.privacy-points span {
  color: var(--muted);
  font-size: 12px;
}

.privacy-actions {
  display: flex;
  grid-column: 1 / -1;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 16px;
  border: 1px solid #d9e6e3;
  border-radius: 14px;
  background: var(--sea-50);
}

.privacy-actions small {
  max-width: 620px;
  color: var(--muted);
  font-size: 11px;
}

.location-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(290px, 0.65fr);
  align-items: center;
  gap: clamp(30px, 7vw, 90px);
}

.location-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin: 22px 0;
}

.location-actions a {
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: var(--sea-700);
  direction: ltr;
  font-size: 9px;
  font-weight: 800;
}

.location-card > small {
  color: var(--muted);
  font-size: 8px;
}

.location-art {
  max-height: 420px;
  overflow: hidden;
  border: 8px solid #fff;
  border-radius: 20px;
  background: var(--sea-900);
  box-shadow: var(--shadow);
}

.location-art img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  object-position: center 75%;
}

.customer-footer {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 30px;
  padding: 30px clamp(20px, 6vw, 90px);
  border-top: 1px solid var(--line);
  background: var(--sand);
}

.customer-footer p {
  margin: 0;
  color: var(--muted);
  font-size: 8px;
  text-align: center;
}

.customer-footer > div {
  display: flex;
  gap: 15px;
}

.customer-footer > div a {
  color: var(--sea-700);
  font-size: 8px;
  font-weight: 800;
}

.drawer-scrim {
  position: fixed;
  z-index: 70;
  inset: 0;
  background: rgba(4, 29, 28, 0.52);
  opacity: 0;
  pointer-events: none;
  transition: opacity 190ms ease;
}

.cart-drawer {
  position: fixed;
  z-index: 80;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(440px, 100%);
  padding: 22px;
  overflow-y: auto;
  background: #fff;
  box-shadow: -20px 0 55px rgba(4, 29, 28, 0.23);
  transform: translateX(105%);
  transition: transform 220ms ease;
}

body.cart-open .drawer-scrim {
  opacity: 1;
  pointer-events: auto;
}

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

.cart-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}

.cart-head h2 {
  margin: 1px 0 0;
  font-size: 24px;
}

.cart-head button {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: #fff;
  cursor: pointer;
  font-size: 19px;
}

.cart-items {
  display: grid;
  gap: 8px;
  padding: 15px 0;
}

.cart-line {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 11px;
  background: #fbfcfb;
}

.cart-line h3,
.cart-line p {
  margin: 0;
}

.cart-line h3 {
  font-size: 10px;
}

.cart-line p {
  color: var(--muted);
  direction: ltr;
  text-align: right;
  font-size: 8px;
}

.quantity-control {
  display: flex;
  align-items: center;
  gap: 5px;
}

.quantity-control button {
  display: grid;
  width: 27px;
  height: 27px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  cursor: pointer;
  font-size: 12px;
}

.quantity-control span {
  min-width: 22px;
  text-align: center;
  font-size: 9px;
  font-weight: 800;
}

.cart-empty {
  display: grid;
  min-height: 160px;
  align-content: center;
  justify-items: center;
  padding: 25px;
  color: var(--muted);
  text-align: center;
}

.cart-empty strong {
  color: var(--ink);
  font-size: 11px;
}

.cart-empty span {
  max-width: 280px;
  font-size: 8px;
}

.cart-checkout {
  display: grid;
  gap: 10px;
  padding-top: 13px;
  border-top: 1px solid var(--line);
}

.cart-totals {
  display: grid;
  gap: 7px;
  margin-bottom: 6px;
  padding: 12px;
  border-radius: 11px;
  background: var(--sea-50);
}

.cart-totals > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  color: var(--muted);
  font-size: 9px;
}

.cart-totals strong {
  color: var(--ink);
  direction: ltr;
  font-size: 10px;
}

.cart-totals .cart-grand-total {
  margin-top: 3px;
  padding-top: 8px;
  border-top: 1px solid #c9deda;
  color: var(--sea-900);
  font-weight: 900;
}

.cart-totals .cart-grand-total strong {
  color: var(--sea-900);
  font-size: 14px;
}

.checkout-disclaimer {
  color: var(--muted);
  font-size: 7px;
  line-height: 1.6;
  text-align: center;
}

.customer-toast {
  position: fixed;
  z-index: 100;
  bottom: 22px;
  left: 22px;
  display: grid;
  min-width: 250px;
  padding: 12px 15px;
  border-radius: 12px;
  background: var(--sea-950);
  color: #fff;
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition:
    opacity 180ms ease,
    transform 180ms ease;
}

.customer-toast.show {
  opacity: 1;
  transform: translateY(0);
}

.customer-toast.error {
  background: #8f302e;
}

.customer-button:disabled {
  cursor: wait;
  opacity: 0.62;
}

.customer-toast strong {
  font-size: 10px;
}

.customer-toast span {
  color: rgba(255, 255, 255, 0.64);
  font-size: 8px;
}

/* Readable customer-facing type scale */
.customer-announcement,
.section-label {
  font-size: 13px;
}

.customer-brand small,
.hero-float small,
.location-card > small {
  font-size: 12px;
}

.customer-header nav a,
.outline-link,
.cart-trigger,
.customer-button,
.menu-search input,
.category-tabs button,
.menu-empty,
.fresh-copy li,
.why-grid p,
.reservation-note b,
.reservation-note span,
.location-actions a,
.customer-footer p,
.customer-footer > div a,
.cart-line h3,
.cart-totals strong,
.customer-toast strong {
  font-size: 14px;
}

.customer-section-head p,
.fresh-copy p,
.reservation-copy p,
.location-card p,
.menu-card-body p,
.reservation-form label,
.cart-checkout label,
.reservation-form input,
.reservation-form select,
.reservation-form textarea,
.cart-checkout input,
.cart-checkout select,
.cart-checkout textarea,
.service-consent,
.marketing-consent,
.marketing-frequency,
.cart-line p,
.cart-empty span,
.cart-totals > div,
.checkout-disclaimer,
.customer-toast span {
  font-size: 13px !important;
}

.menu-card-tag,
.menu-card-price small,
.hero-trust span {
  font-size: 12px;
}

.customer-proof strong,
.hero-float strong,
.cart-empty strong {
  font-size: 15px;
}

.customer-proof span {
  font-size: 13px;
}

.menu-card-body h3 {
  font-size: 17px;
}

.menu-card-price strong {
  font-size: 18px;
}

.why-grid h3 {
  font-size: 18px;
}

.outline-link,
.cart-trigger,
.category-tabs button,
.menu-card button,
.quantity-control button {
  min-height: 44px;
}

.menu-card button {
  width: 44px;
  height: 44px;
}

.quantity-control button {
  width: 36px;
}

@media (max-width: 1060px) {
  .customer-header nav {
    display: none;
  }

  .customer-header {
    grid-template-columns: 1fr auto;
  }

  .customer-hero {
    grid-template-columns: minmax(0, 1fr) minmax(350px, 0.8fr);
  }

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

@media (max-width: 820px) {
  .customer-hero {
    grid-template-columns: 1fr;
    padding-top: 48px;
  }

  .hero-message {
    text-align: center;
  }

  .hero-message > p {
    margin-inline: auto;
  }

  .hero-buttons,
  .hero-trust {
    justify-content: center;
  }

  .hero-visual {
    width: min(520px, 100%);
    margin: 0 auto;
  }

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

  .fresh-section,
  .reservation-section,
  .privacy-section,
  .location-section {
    grid-template-columns: 1fr;
  }

  .fresh-image {
    min-height: 360px;
  }

  .fresh-image img {
    min-height: 360px;
  }

  .customer-footer {
    grid-template-columns: 1fr;
    justify-items: center;
  }
}

@media (max-width: 600px) {
  .customer-announcement {
    display: grid;
    gap: 0;
    text-align: center;
  }

  .customer-header {
    min-height: 66px;
    padding: 10px 13px;
  }

  .customer-header .outline-link {
    display: none;
  }

  .customer-brand-mark {
    width: 36px;
    height: 36px;
    font-size: 18px;
  }

  .customer-brand small {
    display: none;
  }

  .cart-trigger {
    min-height: 36px;
    padding: 7px 10px;
  }

  .customer-hero {
    min-height: 0;
    padding: 36px 15px 45px;
  }

  .hero-message h1 {
    font-size: 41px;
    letter-spacing: -1px;
  }

  .hero-visual {
    min-height: 440px;
    border-width: 7px;
  }

  .hero-visual > img {
    min-height: 440px;
  }

  .customer-proof {
    grid-template-columns: 1fr;
    margin: 0 15px;
  }

  .customer-proof > div {
    border-bottom: 1px solid var(--line);
    border-left: 0;
  }

  .customer-proof > div:last-child {
    border-bottom: 0;
  }

  .menu-section,
  .why-section,
  .privacy-section,
  .location-section {
    padding: 65px 15px;
  }

  .customer-section-head {
    align-items: stretch;
    flex-direction: column;
  }

  .menu-search {
    width: 100%;
  }

  .menu-grid,
  .why-grid {
    grid-template-columns: 1fr;
  }

  .fresh-section,
  .reservation-section {
    margin-right: 15px;
    margin-left: 15px;
    border-radius: 20px;
  }

  .fresh-copy,
  .reservation-section {
    padding: 28px 20px;
  }

  .field-pair {
    grid-template-columns: 1fr;
  }

  .privacy-points {
    grid-template-columns: 1fr;
  }

  .privacy-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .privacy-actions .customer-button {
    width: 100%;
  }

  .location-art,
  .location-art img {
    height: 340px;
  }

  .cart-drawer {
    padding: 17px;
  }

  .customer-toast {
    right: 14px;
    bottom: 14px;
    left: 14px;
    min-width: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
