:root {
  --bg: #090909;
  --surface: #141414;
  --surface-2: #1d1b16;
  --text: #fff9ea;
  --muted: #b9b09d;
  --line: rgba(245, 196, 0, 0.22);
  --gold: #f5c400;
  --gold-2: #ffde59;
  --green: #25d366;
  --danger: #ff6b6b;
  --shadow: 0 18px 55px rgba(0, 0, 0, 0.45);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  margin: 0;
  padding: 0;
  background:
    radial-gradient(circle at top left, rgba(245, 196, 0, 0.13), transparent 32rem),
    linear-gradient(180deg, #0d0c09 0%, var(--bg) 42%);
  color: var(--text);
  font-family: Inter, -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

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

input,
textarea,
select {
  max-width: 100%;
}

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

::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-thumb {
  background: var(--gold);
  border-radius: 999px;
}

.app-shell {
  min-height: 100vh;
}

.sidebar {
  position: fixed;
  inset: 0 auto 0 0;
  z-index: 50;
  width: min(86vw, 320px);
  background: rgba(9, 9, 9, 0.98);
  border-right: 1px solid var(--line);
  box-shadow: var(--shadow);
  transform: translateX(-105%);
  transition: transform 180ms ease;
  overflow-y: auto;
}

.sidebar.is-open {
  transform: translateX(0);
}

.sidebar__brand {
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 20px;
  border-bottom: 1px solid var(--line);
}

.sidebar__brand strong,
.topbar__brand {
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.sidebar__brand small {
  display: block;
  margin-top: 3px;
  color: var(--muted);
}

.brand-logo {
  display: block;
  width: auto;
  object-fit: contain;
  flex: 0 0 auto;
}

.brand-logo--sidebar {
  height: 58px;
}

.brand-logo--topbar {
  height: 42px;
}

.brand-mark {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  color: #151100;
  background: var(--gold);
  border-radius: 12px;
  font-size: 1.45rem;
}

.brand-mark--small {
  width: 34px;
  height: 34px;
  border-radius: 9px;
  font-size: 1.15rem;
}

.sidebar__nav {
  display: grid;
  gap: 6px;
  padding: 14px;
}

.sidebar__nav a,
.category-chip {
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid transparent;
  border-radius: 12px;
  color: var(--text);
  background: transparent;
}

.sidebar__nav a {
  padding: 12px 14px;
}

.sidebar__nav a:hover,
.sidebar__nav a.is-active,
.category-chip:hover,
.category-chip.is-active {
  border-color: var(--line);
  background: rgba(245, 196, 0, 0.11);
}

.sidebar__nav i,
.category-chip i {
  color: var(--gold);
  font-size: 1.25rem;
}

.overlay {
  position: fixed;
  inset: 0;
  z-index: 45;
  background: rgba(0, 0, 0, 0.68);
}

.overlay[hidden],
.cart-modal[hidden],
.product-modal[hidden] {
  display: none !important;
}

.content {
  min-width: 0;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 35;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px clamp(14px, 4vw, 34px);
  border-bottom: 1px solid var(--line);
  background: rgba(9, 9, 9, 0.86);
  backdrop-filter: blur(14px);
}

.topbar__brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
}

.icon-button {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 12px;
  color: var(--gold);
  background: rgba(255, 255, 255, 0.04);
  cursor: pointer;
}

.icon-button i {
  font-size: 1.6rem;
}


.hero {
  display: grid;
  min-height: 430px;
  align-items: end;
  padding: clamp(28px, 6vw, 72px);
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.88), rgba(0, 0, 0, 0.42)),
    url("https://images.unsplash.com/photo-1565539383096-875303015bd2?q=80&w=1038&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D") center/cover;
}

.hero__content {
  max-width: 720px;
}

.hero-logo {
  display: block;
  width: min(180px, 52vw);
  height: auto;
  margin-bottom: 18px;
}

.eyebrow {
  margin: 0 0 8px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 680px;
  margin: 0;
  font-size: clamp(2.2rem, 6vw, 4.7rem);
  line-height: 0.96;
}

.hero p:not(.eyebrow) {
  max-width: 560px;
  margin: 18px 0 0;
  color: #eee2c6;
  font-size: 1.04rem;
  line-height: 1.6;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 46px;
  padding: 0 18px;
  border: 0;
  border-radius: 12px;
  font-weight: 800;
  cursor: pointer;
}

.button i {
  font-size: 1.25rem;
}

.button--primary {
  color: #151100;
  background: var(--gold);
}

.button--ghost {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.08);
}

.button--whatsapp {
  width: 100%;
  color: #06170d;
  background: var(--green);
}

.toolbar {
  position: sticky;
  top: 67px;
  z-index: 25;
  display: grid;
  gap: 14px;
  padding: 16px clamp(14px, 4vw, 34px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(9, 9, 9, 0.9);
  backdrop-filter: blur(14px);
}

.search {
  position: relative;
  display: block;
  max-width: 780px;
}

.search i {
  position: absolute;
  top: 50%;
  left: 14px;
  color: var(--gold);
  font-size: 1.25rem;
  transform: translateY(-50%);
}

.search input {
  width: 100%;
  min-height: 48px;
  padding: 0 16px 0 44px;
  border: 1px solid var(--line);
  border-radius: 14px;
  color: var(--text);
  outline: 0;
  background: var(--surface);
}

.search input:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(245, 196, 0, 0.1);
}

.category-strip {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding-bottom: 2px;
}

.category-chip {
  flex: 0 0 auto;
  padding: 10px 13px;
  font-weight: 700;
  white-space: nowrap;
}

.menu {
  display: grid;
  gap: 32px;
  max-width: 1240px;
  margin: 0 auto;
  padding: 28px clamp(14px, 4vw, 34px) 110px;
}

.category-section {
  scroll-margin-top: 170px;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
  flex-wrap: wrap;
}

.section-heading h2 {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  font-size: clamp(1.3rem, 4vw, 2.1rem);
  line-height: 1.1;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.section-heading i {
  color: var(--gold);
  flex-shrink: 0;
  font-size: 1.5em;
}

.section-heading span {
  color: var(--muted);
  font-size: clamp(0.75rem, 1.5vw, 0.92rem);
  white-space: nowrap;
  flex-shrink: 0;
}

.products-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(12px, 2vw, 16px);
  width: 100%;
}

.menu-subgroup {
  display: grid;
  gap: 12px;
  margin-bottom: 20px;
}

.menu-subgroup:last-child {
  margin-bottom: 0;
}

.menu-subgroup__heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(245, 196, 0, 0.08);
}

.menu-subgroup__heading h3 {
  margin: 0;
  color: var(--gold-2);
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.menu-subgroup__heading span {
  color: var(--muted);
  font-size: 0.86rem;
  white-space: nowrap;
}

.product-card {
  display: grid;
  grid-template-columns: minmax(80px, 120px) minmax(0, 1fr);
  gap: clamp(10px, 2vw, 14px);
  min-height: 130px;
  padding: clamp(10px, 2vw, 14px);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.025)), var(--surface);
  cursor: pointer;
  transition: transform 160ms ease, border-color 160ms ease;
}

.product-card:hover,
.product-card:focus-visible {
  border-color: var(--line);
  outline: 0;
  transform: translateY(-2px);
}

.product-media {
  position: relative;
  display: grid;
  min-height: 100px;
  place-items: center;
  overflow: hidden;
  border-radius: 12px;
  background:
    linear-gradient(135deg, rgba(245, 196, 0, 0.28), rgba(255, 255, 255, 0.06)),
    var(--surface-2);
}

.product-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-media i {
  color: rgba(245, 196, 0, 0.84);
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  flex-shrink: 0;
}

.product-body {
  display: flex;
  min-width: 0;
  flex-direction: column;
  justify-content: space-between;
  gap: 8px;
}

.product-title {
  margin: 0;
  font-size: clamp(0.85rem, 1.5vw, 1rem);
  line-height: 1.25;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.product-badge {
  display: inline-flex;
  width: fit-content;
  margin-top: 4px;
  padding: 4px 8px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--gold-2);
  background: rgba(245, 196, 0, 0.1);
  font-size: clamp(0.65rem, 1vw, 0.75rem);
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  white-space: nowrap;
}

.product-description {
  display: -webkit-box;
  min-height: auto;
  margin: 4px 0 0;
  overflow: hidden;
  color: var(--muted);
  font-size: clamp(0.75rem, 1vw, 0.86rem);
  line-height: 1.35;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-top: 2px;
}

.product-cta {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: clamp(0.65rem, 1vw, 0.75rem);
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
}

.price {
  color: var(--gold-2);
  font-weight: 800;
  font-size: clamp(0.85rem, 1.5vw, 1rem);
  white-space: nowrap;
}

.add-button {
  display: inline-grid;
  width: 36px;
  height: 36px;
  flex: 0 0 auto;
  place-items: center;
  border: 0;
  border-radius: 10px;
  color: #151100;
  background: var(--gold);
  cursor: pointer;
  transition: all 160ms ease;
  flex-shrink: 0;
}

.add-button:hover {
  transform: scale(1.05);
}

.add-button i {
  font-size: 1rem;
  flex-shrink: 0;
}

.cart-fab {
  position: fixed;
  right: clamp(14px, 3vw, 20px);
  bottom: clamp(14px, 3vw, 20px);
  z-index: 40;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 50px;
  padding: 0 clamp(12px, 2vw, 18px);
  border: 0;
  border-radius: 999px;
  color: #151100;
  background: var(--gold);
  box-shadow: var(--shadow);
  font-weight: 900;
  cursor: pointer;
  transition: all 160ms ease;
  font-size: clamp(0.85rem, 1.2vw, 1rem);
  white-space: nowrap;
}

.cart-fab:hover {
  transform: scale(1.05);
}

.cart-fab i {
  font-size: 1.35rem;
  flex-shrink: 0;
}

.cart-modal {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: grid;
  align-items: end;
  background: rgba(0, 0, 0, 0.72);
  padding: 12px;
}

.product-modal {
  position: fixed;
  inset: 0;
  z-index: 70;
  display: grid;
  place-items: center;
  padding: 12px;
  background: rgba(0, 0, 0, 0.78);
}

.product-modal__panel {
  position: relative;
  width: min(100%, 760px);
  max-height: 90vh;
  overflow-y: auto;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #10100f;
  box-shadow: var(--shadow);
}

.product-modal__close {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  background: rgba(0, 0, 0, 0.56);
  flex-shrink: 0;
}

.product-modal__image {
  display: grid;
  min-height: 280px;
  place-items: center;
  overflow: hidden;
  border-radius: 18px 18px 0 0;
  background:
    linear-gradient(135deg, rgba(245, 196, 0, 0.24), rgba(255, 255, 255, 0.06)),
    var(--surface-2);
}

.product-modal__image img {
  width: 100%;
  height: 100%;
  max-height: 520px;
  object-fit: cover;
}

.product-modal__image i {
  color: rgba(245, 196, 0, 0.9);
  font-size: clamp(2.5rem, 6vw, 4rem);
  flex-shrink: 0;
}

.product-modal__content {
  padding: clamp(16px, 4vw, 24px);
}

.product-modal__content h2 {
  margin: 0;
  font-size: clamp(1.3rem, 5vw, 2.35rem);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.product-modal__content p:not(.eyebrow) {
  margin: 12px 0 0;
  color: var(--muted);
  line-height: 1.6;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.product-modal__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 20px;
  flex-wrap: wrap;
}

.product-modal__footer strong {
  color: var(--gold-2);
  font-size: clamp(1.1rem, 3vw, 1.35rem);
  white-space: nowrap;
}

.cart-modal__panel {
  width: min(100%, 620px);
  max-height: 85vh;
  margin-left: auto;
  overflow-y: auto;
  border: 1px solid var(--line);
  border-radius: 18px 18px 0 0;
  background: #10100f;
  box-shadow: var(--shadow);
  padding: clamp(16px, 4vw, 24px);
}

.cart-modal__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
  flex-wrap: wrap;
}

.cart-modal__header h2 {
  margin: 0;
  font-size: clamp(1.2rem, 3vw, 1.5rem);
}

.cart-empty {
  display: grid;
  place-items: center;
  gap: 8px;
  padding: clamp(20px, 4vw, 32px);
  color: var(--muted);
  text-align: center;
}

.cart-empty i {
  color: var(--gold);
  font-size: 2rem;
  flex-shrink: 0;
}

.cart-items {
  display: grid;
  gap: 10px;
}

.cart-line {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
  align-items: start;
}

.cart-line strong,
.cart-line small {
  display: block;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.cart-line strong {
  font-size: clamp(0.85rem, 1.5vw, 1rem);
}

.cart-line small {
  margin-top: 3px;
  color: var(--muted);
  font-size: clamp(0.75rem, 1vw, 0.85rem);
}

.qty-controls {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
}

.qty-controls button {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--gold);
  background: transparent;
  cursor: pointer;
  transition: all 160ms ease;
  font-weight: 600;
}

.qty-controls button:hover {
  border-color: var(--gold);
  background: rgba(245, 196, 0, 0.1);
}

.field {
  display: grid;
  gap: 8px;
  margin-top: 16px;
  color: var(--muted);
  font-size: 0.9rem;
}

.field textarea {
  width: 100%;
  min-height: 80px;
  resize: vertical;
  border: 1px solid var(--line);
  border-radius: 12px;
  color: var(--text);
  outline: 0;
  background: var(--surface);
  padding: 12px;
  font-family: inherit;
  transition: border-color 160ms ease;
}

.field textarea:focus {
  border-color: var(--gold);
}

.cart-total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 16px 0;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  flex-wrap: wrap;
  gap: 12px;
}

.cart-total strong {
  color: var(--gold-2);
  font-size: clamp(1.1rem, 2.5vw, 1.35rem);
}

.empty-results {
  display: grid;
  place-items: center;
  min-height: 240px;
  color: var(--muted);
  text-align: center;
  padding: 20px;
}

/* Ultra-small devices (320px - 374px) */
@media (max-width: 374px) {
 .topbar {
   gap: 8px;
   padding: 10px 12px;
 }

 .icon-button {
   width: 38px;
   height: 38px;
 }

 .brand-logo--topbar {
   height: 36px;
 }

 .hero {
   min-height: 320px;
   padding: 20px 12px;
 }

 .hero h1 {
   font-size: clamp(1.8rem, 5vw, 2.5rem);
 }

 .hero-logo {
   width: min(140px, 48vw);
 }

 .hero p:not(.eyebrow) {
   font-size: 0.95rem;
 }

 .sidebar__nav a {
   padding: 10px 12px;
   font-size: 0.9rem;
 }

 .sidebar__brand {
   padding: 16px;
 }

 .toolbar {
   gap: 12px;
   padding: 14px 12px;
   top: 68px;
 }

 .menu {
   padding: 20px 12px 100px;
   gap: 20px;
 }

 .section-heading h2 {
   font-size: clamp(1.2rem, 2.5vw, 1.5rem);
 }

 .products-grid {
   grid-template-columns: 1fr;
 }

 .product-card {
   grid-template-columns: 80px minmax(0, 1fr);
   min-height: 120px;
   padding: 10px;
   gap: 10px;
 }

 .product-title {
   font-size: 0.9rem;
 }

 .product-media {
   min-height: 90px;
 }

 .cart-fab {
   right: 14px;
   bottom: 14px;
   left: auto;
   width: auto;
   min-height: 48px;
   padding: 0 12px;
 }
}

/* Small devices (375px - 480px) */
@media (min-width: 375px) and (max-width: 480px) {
 .topbar {
   gap: 10px;
   padding: 12px 14px;
 }

 .hero {
   min-height: 340px;
   padding: 24px 14px;
 }

 .hero h1 {
   font-size: clamp(1.9rem, 5.5vw, 2.8rem);
 }

 .hero-logo {
   width: min(150px, 50vw);
 }

 .hero__actions {
   gap: 10px;
 }

 .button {
   min-height: 44px;
   padding: 0 16px;
   font-size: 0.95rem;
 }

 .toolbar {
   gap: 12px;
   padding: 14px;
   top: 68px;
 }

 .search input {
   min-height: 44px;
   font-size: 0.95rem;
 }

 .category-chip {
   padding: 9px 12px;
   font-size: 0.85rem;
 }

 .menu {
   padding: 22px 14px 100px;
   gap: 22px;
 }

 .products-grid {
   grid-template-columns: 1fr;
 }

 .product-card {
   grid-template-columns: 88px minmax(0, 1fr);
   min-height: 128px;
   padding: 11px;
   gap: 11px;
 }

 .product-title {
   font-size: 0.92rem;
 }

 .product-badge {
   font-size: 0.68rem;
   padding: 4px 7px;
 }

 .cart-fab {
   right: 14px;
   bottom: 14px;
   width: auto;
   min-height: 50px;
 }

 .product-modal {
   align-items: end;
   padding: 12px;
 }

 .product-modal__panel {
   width: 100%;
   border-radius: 18px;
 }

 .product-modal__image {
   min-height: 220px;
 }

 .product-modal__footer {
   align-items: stretch;
   flex-direction: column;
 }

 .cart-modal__panel {
   width: 100%;
   border-radius: 22px 22px 0 0;
   max-height: 85vh;
 }
}

/* Medium devices (481px - 640px) */
@media (min-width: 481px) and (max-width: 640px) {
 .hero {
   min-height: 360px;
   padding: 28px 16px;
 }

 .hero h1 {
   font-size: clamp(2rem, 6vw, 3rem);
 }

 .hero-logo {
   width: min(160px, 52vw);
 }

 .hero__actions .button {
   width: 100%;
 }

 .toolbar {
   top: 68px;
   gap: 14px;
   padding: 16px;
 }

 .search input {
   min-height: 46px;
   font-size: 0.96rem;
 }

 .category-chip {
   padding: 10px 13px;
   font-size: 0.88rem;
 }

 .menu {
   padding: 26px 16px 110px;
 }

 .products-grid {
   grid-template-columns: 1fr;
 }

 .product-card {
   grid-template-columns: 96px minmax(0, 1fr);
   min-height: 140px;
 }

 .section-heading h2 {
   font-size: clamp(1.4rem, 3.2vw, 1.8rem);
 }

 .product-modal {
   align-items: end;
   padding: 12px;
 }

 .product-modal__panel {
   width: 100%;
   border-radius: 18px;
 }

 .product-modal__image {
   min-height: 240px;
 }

 .product-modal__footer {
   align-items: stretch;
   flex-direction: column;
 }

 .cart-modal__panel {
   width: 100%;
   border-radius: 22px 22px 0 0;
 }
}

/* Tablet devices (641px - 980px) */
@media (min-width: 641px) and (max-width: 980px) {
 .products-grid {
   grid-template-columns: repeat(2, minmax(0, 1fr));
 }

 .sidebar {
   width: min(80vw, 280px);
 }

 .hero h1 {
   font-size: clamp(2.2rem, 5vw, 3.5rem);
 }

 .menu {
   padding: 28px 20px 110px;
 }

 .section-heading h2 {
   font-size: clamp(1.5rem, 3.5vw, 2rem);
 }

 .topbar {
   padding: 12px 20px;
 }

 .toolbar {
   padding: 16px 20px;
 }
}

/* Large devices (981px - 1119px) */
@media (min-width: 981px) and (max-width: 1119px) {
 .products-grid {
   grid-template-columns: repeat(3, minmax(0, 1fr));
 }

 .menu {
   max-width: 1000px;
 }

 .section-heading h2 {
   font-size: clamp(1.6rem, 3.2vw, 2rem);
 }
}

/* Desktop devices (1120px+) */
@media (min-width: 1120px) {
 .sidebar {
   transform: none;
 }

 .content {
   margin-left: 320px;
 }

 .topbar {
   padding-left: 28px;
 }

 #menuBtn {
   display: none;
 }

 .overlay {
   display: none;
 }

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

/* Extra large devices (1400px+) */
@media (min-width: 1400px) {
 .menu {
   max-width: 1300px;
   padding: 32px 40px 120px;
 }

 .hero {
   padding: 72px 40px;
 }

 .toolbar {
   padding: 18px 40px;
 }

 .topbar {
   padding: 14px 40px;
 }
}
.price-options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 12px;
  width: 100%;
  margin-top: 12px;
}

.price-label {
  font-size: clamp(0.8rem, 1.2vw, 0.95rem);
  font-weight: 600;
  color: var(--text);
  text-align: left;
}

.price-value {
  font-size: clamp(0.9rem, 1.8vw, 1.1rem);
  font-weight: 900;
  color: var(--gold-2);
  text-align: right;
  white-space: nowrap;
}

#productModalAddBtn:disabled,
.product-modal__add:disabled {
  color: rgba(21, 17, 0, 0.72);
  background: rgba(245, 196, 0, 0.45);
  cursor: not-allowed;
  opacity: 0.58;
  transform: none !important;
}

.single-product-price {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 12px;
  color: var(--gold-2);
  background: rgba(245, 196, 0, 0.08);
  font-size: clamp(1rem, 2vw, 1.35rem);
  font-weight: 900;
  white-space: nowrap;
}

.single-product-price.price-badge {
  display: flex !important;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: auto;
  padding: 12px 14px;
  white-space: normal;
}

.menu-subgroup {
  display: grid;
  gap: 12px;
  margin-bottom: 16px;
}

.menu-subgroup:last-child {
  margin-bottom: 0;
}

.menu-subgroup__heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(245, 196, 0, 0.08);
  flex-wrap: wrap;
}

.menu-subgroup__heading h3 {
  margin: 0;
  color: var(--gold-2);
  font-size: clamp(0.9rem, 1.5vw, 1rem);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  flex: 1;
  min-width: 150px;
}

.menu-subgroup__heading span {
  color: var(--muted);
  font-size: clamp(0.75rem, 1vw, 0.86rem);
  white-space: nowrap;
  flex-shrink: 0;
}
