﻿:root {
  --black: #111111;
  --charcoal: #1a1513;
  --gold: #f5a623;
  --orange: #ff7a00;
  --red: #d62828;
  --cream: #fff5e4;
  --muted: #cdbca4;
  --panel: rgba(24, 20, 18, 0.84);
  --line: rgba(245, 166, 35, 0.22);
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.38);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--cream);
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  background:
    radial-gradient(circle at 20% 10%, rgba(255, 122, 0, 0.2), transparent 24rem),
    radial-gradient(circle at 88% 22%, rgba(214, 40, 40, 0.14), transparent 20rem),
    linear-gradient(135deg, rgba(255, 255, 255, 0.035) 0 1px, transparent 1px 12px),
    linear-gradient(180deg, #090909 0%, #16100d 56%, #090909 100%);
  min-height: 100vh;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(rgba(255, 255, 255, 0.018) 2px, transparent 2px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.016) 2px, transparent 2px);
  background-size: 46px 46px;
  mix-blend-mode: screen;
  opacity: 0.35;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea {
  font: inherit;
}

.ember-layer {
  position: fixed;
  inset: auto 0 0;
  height: 34vh;
  pointer-events: none;
  background:
    radial-gradient(circle at 15% 80%, rgba(255, 122, 0, 0.36), transparent 1.5rem),
    radial-gradient(circle at 72% 88%, rgba(214, 40, 40, 0.28), transparent 2rem),
    linear-gradient(0deg, rgba(255, 122, 0, 0.12), transparent);
  filter: blur(10px);
  opacity: 0.46;
}

.site-header {
  max-width: 1180px;
  margin: 0 auto;
  padding: 24px 20px 12px;
  text-align: center;
  position: relative;
  z-index: 2;
}

.quick-bar {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  width: min(520px, 100%);
  margin: 0 auto;
  padding: 8px;
  background: rgba(17, 17, 17, 0.42);
  border: 1px solid rgba(245, 166, 35, 0.14);
  border-radius: 999px;
  backdrop-filter: blur(12px);
  position: relative;
  z-index: 3;
}

.quick-bar a,
.filter-row button {
  border: 1px solid var(--line);
  background: rgba(17, 17, 17, 0.58);
  color: var(--cream);
  border-radius: 999px;
  padding: 10px 16px;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.quick-bar a {
  flex: 1 1 0;
  min-width: 130px;
  text-align: center;
  font-weight: 800;
}

.hero-quick-bar {
  width: min(620px, calc(100% - 32px));
  margin: -26px auto 42px;
}

.quick-bar a:hover,
.filter-row button:hover,
.filter-row button.active {
  transform: translateY(-2px);
  border-color: rgba(245, 166, 35, 0.75);
  background: linear-gradient(135deg, rgba(245, 166, 35, 0.22), rgba(214, 40, 40, 0.13));
}

.brand-logo {
  width: min(210px, 42vw);
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 18px 38px rgba(255, 122, 0, 0.18));
}

.tagline {
  margin: 6px 0 0;
  color: var(--gold);
  font-weight: 800;
  letter-spacing: 0;
}

.store-status {
  width: fit-content;
  max-width: min(360px, calc(100vw - 32px));
  margin: 12px auto 0;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 2px 8px;
  padding: 9px 14px;
  color: var(--cream);
  background: rgba(17, 17, 17, 0.62);
  border: 1px solid rgba(245, 166, 35, 0.24);
  border-radius: 999px;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.26);
  backdrop-filter: blur(12px);
}

.store-status strong {
  font-size: 0.9rem;
  line-height: 1;
}

.store-status small {
  grid-column: 2;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 700;
  line-height: 1.1;
}

.status-dot {
  grid-row: 1 / span 2;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #d62828;
  box-shadow: 0 0 0 5px rgba(214, 40, 40, 0.16);
}

.store-status.open .status-dot {
  background: #31d67b;
  box-shadow: 0 0 0 5px rgba(49, 214, 123, 0.16);
}

.hero {
  width: min(1180px, calc(100% - 32px));
  min-height: clamp(520px, 74vh, 760px);
  margin: 20px auto 48px;
  position: relative;
  display: grid;
  align-items: end;
  overflow: hidden;
  border-radius: 24px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(245, 166, 35, 0.2);
}

.hero-media {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(9, 9, 9, 0.08), rgba(9, 9, 9, 0.9)),
    linear-gradient(90deg, rgba(9, 9, 9, 0.86), transparent 68%),
    url("https://images.unsplash.com/photo-1529193591184-b1d58069ecdd?auto=format&fit=crop&w=1800&q=82") center/cover;
  transform: scale(1.02);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 680px;
  padding: clamp(28px, 7vw, 70px);
}

.eyebrow {
  margin: 0 0 8px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.eyebrow.dark {
  color: #381a00;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  font-size: clamp(2.4rem, 7vw, 5.9rem);
  line-height: 0.95;
  margin-bottom: 18px;
  text-wrap: balance;
}

h2 {
  font-size: clamp(1.8rem, 4vw, 3.2rem);
  line-height: 1;
  margin-bottom: 10px;
}

.hero p:not(.eyebrow),
.section-heading p {
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.7;
}

.primary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border: 0;
  border-radius: 999px;
  padding: 13px 22px;
  color: #180d08;
  font-weight: 900;
  background: linear-gradient(135deg, var(--gold), var(--orange));
  box-shadow: 0 18px 36px rgba(255, 122, 0, 0.28);
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.primary-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 48px rgba(255, 122, 0, 0.36);
}

.primary-button.full {
  width: 100%;
}

.controls,
.menu-section,
.reviews,
.contact-actions {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto 54px;
}

.controls {
  display: grid;
  gap: 18px;
  padding: 20px;
  background: rgba(17, 17, 17, 0.66);
  border: 1px solid var(--line);
  border-radius: 18px;
  backdrop-filter: blur(16px);
}

.search-box span,
.notes-box span {
  display: block;
  margin-bottom: 8px;
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 800;
}

.search-box input,
.notes-box input,
.notes-box textarea {
  width: 100%;
  color: var(--cream);
  background: rgba(0, 0, 0, 0.38);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  padding: 11px 13px;
  outline: none;
}

.search-box input:focus,
.notes-box input:focus,
.notes-box textarea:focus {
  border-color: rgba(245, 166, 35, 0.72);
}

.field-error {
  display: block;
  min-height: 15px;
  margin-top: 3px;
  color: #ffb199;
  font-size: 0.82rem;
  font-weight: 800;
}

.order-type,
.payment-pills {
  display: grid;
  gap: 7px;
  margin: 0;
  padding: 0;
  border: 0;
}

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

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

.order-type legend,
.payment-pills legend {
  grid-column: 1 / -1;
  margin-bottom: 2px;
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 800;
}

.order-type label,
.payment-pills label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 36px;
  padding: 8px;
  border: 1px solid rgba(245, 166, 35, 0.22);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.26);
  font-weight: 800;
  cursor: pointer;
}

.order-type input,
.payment-pills input {
  accent-color: var(--gold);
}

.order-fields {
  display: grid;
  gap: 7px;
}

.order-fields.hidden {
  display: none;
}

.location-button {
  width: 100%;
  min-height: 36px;
  border: 1px solid rgba(245, 166, 35, 0.38);
  border-radius: 999px;
  color: var(--cream);
  background: rgba(245, 166, 35, 0.12);
  font-weight: 900;
  cursor: pointer;
}

.location-status {
  display: block;
  min-height: 15px;
  margin-top: -3px;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 700;
}

.delivery-fee {
  margin: -2px 0 0;
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 900;
}

.pix-box {
  display: grid;
  gap: 8px;
  justify-items: center;
  padding: 12px;
  border: 1px solid rgba(245, 166, 35, 0.22);
  border-radius: 14px;
  background: rgba(0, 0, 0, 0.26);
}

.pix-box.hidden {
  display: none;
}

.pix-box div {
  width: 100%;
  display: grid;
  gap: 3px;
  text-align: center;
}

.pix-box strong {
  color: var(--gold);
  font-size: 0.82rem;
}

.pix-box span {
  color: var(--cream);
  font-weight: 900;
}

.pix-box img {
  width: 128px;
  height: 128px;
  padding: 7px;
  border-radius: 12px;
  background: #fff;
}

.filter-row {
  display: flex;
  gap: 10px;
  overflow-x: scroll;
  padding: 4px 0 12px;
  scrollbar-width: thin;
  scrollbar-color: rgba(245, 166, 35, 0.78) rgba(255, 255, 255, 0.08);
}

.filter-row::-webkit-scrollbar {
  height: 7px;
}

.filter-row::-webkit-scrollbar-track {
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
}

.filter-row::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: rgba(245, 166, 35, 0.78);
}

.filter-row::-webkit-scrollbar-thumb:hover {
  background: var(--gold);
}

.filter-row button {
  flex: 0 0 auto;
  cursor: pointer;
}

.filter-row button.active {
  transform: none;
  box-shadow: 0 0 0 1px rgba(245, 166, 35, 0.16);
}

.section-heading {
  margin-bottom: 22px;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.product-card,
.review-grid article,
.cart-panel {
  background: var(--panel);
  border: 1px solid rgba(245, 166, 35, 0.17);
  border-radius: 18px;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(14px);
}

.product-card {
  overflow: hidden;
  display: grid;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.product-card:hover {
  transform: translateY(-5px);
  border-color: rgba(245, 166, 35, 0.55);
}

.product-media {
  position: relative;
  height: 260px;
  overflow: hidden;
  isolation: isolate;
  background: #100b08;
}

.product-media::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: -20px;
  background-image: var(--product-image);
  background-position: center;
  background-size: cover;
  filter: blur(18px) brightness(0.48) saturate(0.9);
  opacity: 0.82;
  transform: scale(1.08);
}

.product-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.product-body {
  padding: 18px;
  display: grid;
  gap: 12px;
}

.product-category {
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 900;
  text-transform: uppercase;
}

.product-body h3 {
  margin: 0;
  font-size: 1.24rem;
}

.product-body p {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.price {
  color: #fff;
  font-size: 1.2rem;
  font-weight: 900;
}

.add-button,
.qty-button,
.icon-button {
  border: 0;
  cursor: pointer;
}

.add-button {
  border-radius: 999px;
  padding: 10px 14px;
  color: var(--cream);
  background: linear-gradient(135deg, var(--red), var(--orange));
  font-weight: 900;
}

.combo-section {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto 54px;
  padding: clamp(24px, 5vw, 44px);
  color: #241002;
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.5), transparent 18rem),
    linear-gradient(135deg, #ffd56a, var(--gold) 50%, #ff8a00);
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.combo-grid,
.promo-grid,
.review-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.combo-card {
  padding: 20px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.34);
  border: 1px solid rgba(56, 26, 0, 0.16);
}

.combo-card ul {
  margin: 14px 0;
  padding-left: 20px;
}

.combo-card .add-button {
  width: 100%;
}

.promo-section {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto 54px;
  padding: clamp(24px, 5vw, 42px);
  background: linear-gradient(135deg, rgba(214, 40, 40, 0.95), rgba(112, 12, 12, 0.94));
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.promo-card {
  position: relative;
  padding: 20px;
  border-radius: 16px;
  background: rgba(17, 17, 17, 0.32);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.discount {
  display: inline-flex;
  margin-bottom: 12px;
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--gold);
  color: #260a06;
  font-weight: 900;
}

.reviews {
  text-align: center;
}

.contact-actions {
  text-align: center;
  padding: clamp(22px, 4vw, 34px);
  background: rgba(17, 17, 17, 0.56);
  border: 1px solid rgba(245, 166, 35, 0.17);
  border-radius: 22px;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(14px);
}

.review-grid article {
  padding: 22px;
}

.review-grid strong {
  color: var(--gold);
}

.review-grid p {
  color: var(--muted);
  margin-bottom: 0;
}

.cart-panel {
  position: fixed;
  top: 18px;
  right: 18px;
  bottom: auto;
  z-index: 10;
  width: min(380px, calc(100vw - 28px));
  max-height: calc(100dvh - 36px);
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  overflow: auto;
  transform: translateX(calc(100% + 34px));
  transition: transform 0.28s ease;
}

.cart-panel.open {
  transform: translateX(0);
}

.cart-header,
.cart-row-main,
.cart-total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.cart-header h2 {
  margin: 0;
  font-size: 1.45rem;
}

.icon-button {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  color: var(--cream);
  background: rgba(255, 255, 255, 0.1);
  font-size: 0.95rem;
  font-weight: 900;
  line-height: 1;
}

.cart-items {
  flex: 0 1 auto;
  max-height: 210px;
  overflow: auto;
  display: grid;
  align-content: start;
  gap: 8px;
  padding-right: 4px;
}

.cart-row {
  display: grid;
  gap: 8px;
  padding: 10px;
  border-radius: 12px;
  background: rgba(0, 0, 0, 0.28);
}

.cart-row h3 {
  margin: 0 0 4px;
  font-size: 0.9rem;
}

.qty-control {
  display: flex;
  align-items: center;
  gap: 8px;
}

.qty-button {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  color: #211006;
  background: var(--gold);
  font-weight: 900;
}

.item-note {
  display: grid;
  gap: 5px;
}

.item-note span {
  color: var(--gold);
  font-size: 0.68rem;
  font-weight: 800;
}

.item-note input {
  width: 100%;
  min-height: 32px;
  color: var(--cream);
  background: rgba(0, 0, 0, 0.32);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 9px;
  padding: 8px 10px;
  outline: none;
  font-size: 0.78rem;
}

.item-note input:focus {
  border-color: rgba(245, 166, 35, 0.68);
}

.cart-total {
  padding-top: 10px;
  border-top: 1px solid var(--line);
  font-size: 1rem;
}

.cart-total,
.cart-panel .primary-button.full {
  position: sticky;
  z-index: 2;
}

.cart-total {
  bottom: 48px;
  background: linear-gradient(180deg, rgba(24, 20, 18, 0.92), rgba(24, 20, 18, 0.98));
}

.cart-panel .primary-button.full {
  bottom: 0;
}

.cart-fab,
.whatsapp-fab {
  position: fixed;
  z-index: 8;
  border: 0;
  border-radius: 999px;
  font-weight: 900;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.36);
}

.cart-fab {
  right: 18px;
  bottom: 88px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 16px;
  color: #211006;
  background: var(--gold);
  cursor: pointer;
}

.cart-fab strong {
  display: grid;
  place-items: center;
  min-width: 28px;
  height: 28px;
  border-radius: 50%;
  color: #fff;
  background: var(--red);
}

.whatsapp-fab {
  right: 18px;
  bottom: 24px;
  padding: 14px 18px;
  color: #fff;
  background: #19a85b;
}

.site-footer {
  width: min(1180px, calc(100% - 32px));
  margin: 24px auto 0;
  padding: 28px 0 46px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 22px;
  color: var(--muted);
  border-top: 1px solid var(--line);
}

.site-footer img {
  width: 84px;
  height: auto;
  object-fit: contain;
}

.site-footer strong {
  color: #fff;
}

.site-footer p {
  margin: 4px 0;
}

.copyright {
  flex: 0 0 100%;
  margin-top: 16px;
  text-align: center;
  font-size: 0.9rem;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 900px) {
  .quick-bar {
    width: min(460px, 100%);
    border-radius: 18px;
  }

  .quick-bar a {
    min-width: 122px;
  }

  .hero-quick-bar {
    width: min(610px, calc(100% - 32px));
    margin-top: -24px;
    margin-bottom: 38px;
  }

  .menu-grid,
  .combo-grid,
  .promo-grid,
  .review-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero {
    min-height: 620px;
  }

  .hero-media {
    background:
      linear-gradient(180deg, rgba(9, 9, 9, 0.12), rgba(9, 9, 9, 0.94)),
      url("https://images.unsplash.com/photo-1529193591184-b1d58069ecdd?auto=format&fit=crop&w=1200&q=82") center/cover;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 620px) {
  body {
    background:
      radial-gradient(circle at 50% 0%, rgba(255, 122, 0, 0.18), transparent 18rem),
      linear-gradient(180deg, #090909 0%, #17100c 58%, #090909 100%);
  }

  .site-header {
    padding: 14px 12px 8px;
  }

  .brand-logo {
    width: min(168px, 58vw);
  }

  .tagline {
    font-size: 0.95rem;
    line-height: 1.35;
  }

  .quick-bar {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    width: 100%;
    margin: 0 auto;
    padding: 8px;
    border-radius: 16px;
  }

  .quick-bar a {
    min-width: 0;
    padding: 10px 8px;
    font-size: 0.84rem;
    text-align: center;
    white-space: nowrap;
  }

  .quick-bar a:first-child {
    grid-column: 1 / -1;
  }

  .hero-quick-bar {
    width: calc(100% - 22px);
    margin: -18px auto 34px;
  }

  .hero,
  .controls,
  .menu-section,
  .combo-section,
  .promo-section,
  .reviews,
  .contact-actions,
  .site-footer {
    width: calc(100% - 22px);
  }

  .hero,
  .combo-section,
  .promo-section,
  .contact-actions {
    border-radius: 18px;
  }

  .hero {
    min-height: 500px;
    margin: 14px auto 34px;
  }

  .hero-media {
    background:
      linear-gradient(180deg, rgba(9, 9, 9, 0.06), rgba(9, 9, 9, 0.94)),
      url("https://images.unsplash.com/photo-1529193591184-b1d58069ecdd?auto=format&fit=crop&w=900&q=78") center/cover;
  }

  .hero-content {
    padding: 24px 20px;
  }

  h1 {
    font-size: clamp(2.1rem, 13vw, 3.4rem);
    line-height: 1;
    margin-bottom: 14px;
  }

  h2 {
    font-size: clamp(1.55rem, 8vw, 2.15rem);
    line-height: 1.08;
  }

  .hero p:not(.eyebrow),
  .section-heading p {
    font-size: 1rem;
    line-height: 1.55;
  }

  .primary-button {
    width: 100%;
    min-height: 50px;
  }

  .controls {
    position: sticky;
    top: 0;
    z-index: 6;
    margin-bottom: 36px;
    padding: 14px;
    border-radius: 16px;
    box-shadow: 0 14px 26px rgba(0, 0, 0, 0.34);
  }

  .filter-row {
    margin-inline: -14px;
    padding: 4px 14px 8px;
    scroll-snap-type: x proximity;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }

  .filter-row::-webkit-scrollbar {
    display: none;
  }

  .filter-row button {
    scroll-snap-align: start;
    padding: 10px 13px;
    font-size: 0.9rem;
  }

  .section-heading {
    margin-bottom: 16px;
  }

  .menu-grid,
  .combo-grid,
  .promo-grid,
  .review-grid {
    grid-template-columns: 1fr;
  }

  .product-media {
    height: clamp(230px, 72vw, 320px);
  }

  .product-body {
    padding: 13px;
    gap: 8px;
  }

  .product-category {
    font-size: 0.68rem;
  }

  .product-body h3 {
    font-size: 1.08rem;
  }

  .product-body p {
    font-size: 0.92rem;
    line-height: 1.42;
  }

  .price {
    font-size: 1.08rem;
  }

  .product-footer {
    align-items: stretch;
    flex-direction: column;
  }

  .add-button {
    width: 100%;
    min-height: 40px;
    padding: 9px 12px;
  }

  .combo-section,
  .promo-section,
  .contact-actions {
    margin-bottom: 36px;
    padding: 22px 16px;
  }

  .combo-card,
  .promo-card,
  .review-grid article {
    border-radius: 14px;
    padding: 16px;
  }

  .cart-panel {
    top: 6px;
    right: 6px;
    bottom: auto;
    left: 6px;
    width: auto;
    max-height: calc(100dvh - 12px);
    padding: 10px;
    padding-bottom: 12px;
    gap: 7px;
    border-radius: 16px;
  }

  .cart-header h2 {
    font-size: 1.28rem;
  }

  .cart-header .eyebrow {
    margin-bottom: 2px;
    font-size: 0.64rem;
  }

  .icon-button {
    width: 34px;
    height: 34px;
    font-size: 1.15rem;
  }

  .cart-items {
    flex: 0 1 auto;
    max-height: 168px;
    gap: 7px;
  }

  .cart-row {
    padding: 9px;
    gap: 8px;
  }

  .cart-row-main {
    align-items: center;
    gap: 8px;
  }

  .cart-row h3 {
    font-size: 0.82rem;
  }

  .cart-row span {
    font-size: 0.78rem;
  }

  .qty-control {
    width: auto;
    justify-content: flex-end;
    gap: 6px;
  }

  .qty-button {
    width: 26px;
    height: 26px;
  }

  .item-note input {
    min-height: 30px;
    padding: 7px 9px;
    font-size: 0.76rem;
  }

  .order-type,
  .payment-pills {
    gap: 6px;
  }

  .order-type legend,
  .payment-pills legend,
  .notes-box span {
    margin-bottom: 4px;
    font-size: 0.68rem;
  }

  .order-type label,
  .payment-pills label {
    min-height: 34px;
    padding: 7px;
    font-size: 0.78rem;
  }

  .order-fields {
    gap: 6px;
  }

  .search-box input,
  .notes-box input,
  .notes-box textarea {
    border-radius: 10px;
    padding: 9px 11px;
    font-size: 0.82rem;
  }

  .notes-box textarea {
    min-height: 58px;
    max-height: 76px;
  }

  .field-error {
    min-height: 14px;
    margin-top: 2px;
    font-size: 0.72rem;
  }

  .cart-total {
    padding-top: 8px;
    font-size: 0.92rem;
    bottom: 44px;
  }

  .cart-panel .primary-button.full {
    min-height: 40px;
    padding: 9px 12px;
    font-size: 0.82rem;
  }

  .cart-fab,
  .whatsapp-fab {
    right: 12px;
  }

  .cart-fab {
    bottom: 78px;
    padding: 12px 14px;
  }

  .whatsapp-fab {
    bottom: 18px;
    padding: 13px 15px;
    font-size: 0.92rem;
  }

  .site-footer {
    gap: 16px;
    padding-bottom: 116px;
  }

}

@media (max-width: 380px) {
  .quick-bar a {
    white-space: normal;
  }

  .brand-logo {
    width: min(150px, 62vw);
  }

  .hero {
    min-height: 460px;
  }

  .hero-content {
    padding: 22px 16px;
  }

  h1 {
    font-size: 2rem;
  }

  .cart-fab span {
    display: none;
  }
}
