:root {
  --black: #070707;
  --dark: #111111;
  --dark-soft: #191919;
  --orange: #e85b1f;
  --orange-light: #ff7a2b;
  --success: #22c55e;
  --success-soft: #102f1c;
  --danger: #c62828;
  --danger-light: #ef4444;
  --gray: #767676;
  --cream: #f5eee6;
  --muted: #b8aaa1;
  --white: #ffffff;
  --border: rgba(255, 255, 255, 0.12);
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
  --header-height: 82px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", Arial, sans-serif;
  background: var(--black);
  color: var(--white);
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

body.modal-open {
  overflow: hidden;
}

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

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

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 50;
  background: rgba(7, 7, 7, 0.84);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}

.navbar {
  max-width: 1180px;
  height: 82px;
  padding: 0 22px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 22px;
}

.brand img {
  width: 132px;
  height: auto;
}

.nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 30px;
  margin-left: auto;
}

.nav-links a {
  color: var(--cream);
  font-size: 0.9rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: color 0.2s ease;
}

.nav-links a:hover {
  color: var(--orange-light);
}

.nav-status {
  position: relative;
  flex: 0 0 auto;
}

.status-badge {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(239, 68, 68, 0.46);
  border-radius: 999px;
  padding: 8px 13px;
  background: rgba(198, 40, 40, 0.16);
  color: #ffd7d7;
  font: inherit;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  cursor: pointer;
  white-space: nowrap;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.status-badge:hover,
.status-badge[aria-expanded="true"] {
  transform: translateY(-1px);
  border-color: rgba(255, 255, 255, 0.3);
}

.status-badge.is-open {
  border-color: rgba(34, 197, 94, 0.56);
  background: rgba(34, 197, 94, 0.17);
  color: #bbf7d0;
}

.status-dot {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--danger-light);
  box-shadow: 0 0 0 4px rgba(239, 68, 68, 0.16);
}

.status-badge.is-open .status-dot {
  background: var(--success);
  box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.18);
}

.hours-popover {
  position: absolute;
  top: calc(100% + 14px);
  right: 0;
  width: min(330px, calc(100vw - 32px));
  padding: 16px;
  border: 1px solid rgba(255, 122, 43, 0.36);
  border-radius: 18px;
  background: rgba(14, 14, 14, 0.98);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.hours-popover[hidden] {
  display: none;
}

.hours-popover::before {
  content: "";
  position: absolute;
  top: -7px;
  right: 28px;
  width: 14px;
  height: 14px;
  border-top: 1px solid rgba(255, 122, 43, 0.36);
  border-left: 1px solid rgba(255, 122, 43, 0.36);
  background: rgba(14, 14, 14, 0.98);
  transform: rotate(45deg);
}

.hours-popover-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 10px;
}

.hours-popover-head strong {
  color: var(--cream);
  font-size: 0.92rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.hours-popover-head button {
  width: 30px;
  height: 30px;
  border: 0;
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  color: var(--cream);
  font-size: 1.1rem;
  line-height: 1;
  cursor: pointer;
}

.hours-popover table,
.about-hours table {
  width: 100%;
  border-collapse: collapse;
}

.hours-popover th,
.hours-popover td,
.about-hours th,
.about-hours td {
  padding: 11px 0;
  border-top: 1px solid rgba(255,255,255,0.09);
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.3;
  text-align: left;
}

.hours-popover th,
.about-hours th {
  width: 48%;
  color: var(--cream);
  font-weight: 900;
}

.menu-btn {
  display: none;
  border: 0;
  background: transparent;
  cursor: pointer;
  padding: 8px;
}

.menu-btn span {
  display: block;
  width: 28px;
  height: 3px;
  margin: 5px 0;
  background: var(--white);
  border-radius: 20px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.hero {
  min-height: 100vh;
  position: relative;
  padding: 150px 22px 80px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: url("../img/background.png?v=20260706e") center center / cover no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0,0,0,0.96) 0%, rgba(0,0,0,0.84) 32%, rgba(0,0,0,0.52) 62%, rgba(0,0,0,0.3) 100%),
    linear-gradient(to top, rgba(0,0,0,0.82), rgba(0,0,0,0.1));
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 70% 42%, rgba(232, 91, 31, 0.22), transparent 30%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1180px;
  width: 100%;
  margin: 0 auto;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 14px;
  margin-bottom: 18px;
  border: 1px solid rgba(255, 122, 43, 0.55);
  border-radius: 999px;
  background: rgba(232, 91, 31, 0.16);
  color: var(--cream);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 1.4px;
  text-transform: uppercase;
}

.eyebrow,
.section-title span,
.about-content span,
.cta span,
.drop-copy span,
.order-copy span,
.countdown-card span,
.total-box span,
.form-status {
  display: inline-block;
  color: var(--orange-light);
  text-transform: uppercase;
  font-weight: 900;
  letter-spacing: 2px;
  font-size: 0.8rem;
  margin-bottom: 14px;
}

.hero h1,
.section-title h2,
.about-content h2,
.cta h2,
.drop-copy h2,
.order-copy h2,
.burger-info h3 {
  font-family: "Anton", Impact, sans-serif;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hero h1 {
  max-width: 780px;
  font-size: clamp(3.4rem, 9vw, 7.7rem);
  line-height: 0.94;
}

.hero p {
  max-width: 610px;
  margin: 26px 0 34px;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-order-btn {
  min-width: 260px;
}

@media (min-width: 981px) {
  .btn.hero-order-btn {
    padding: 20px 34px;
    font-size: 1rem;
  }
}

.hero-status {
  max-width: 780px;
  margin-top: 34px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.hero-status > div {
  padding: 16px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: rgba(7, 7, 7, 0.64);
  backdrop-filter: blur(12px);
}

.hero-status span {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.hero-status strong {
  color: var(--cream);
  font-size: 1.2rem;
}

.btn,
.order-btn {
  border: 0;
  cursor: pointer;
  padding: 15px 24px;
  border-radius: 999px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  font-size: 0.85rem;
  transition: transform 0.2s ease, filter 0.2s ease, border-color 0.2s ease;
}

.btn:hover,
.order-btn:hover {
  transform: translateY(-2px);
}

.btn-primary,
.order-btn {
  background: linear-gradient(135deg, var(--orange), var(--orange-light));
  color: var(--white);
  box-shadow: 0 12px 30px rgba(232, 91, 31, 0.3);
}

.btn-primary.is-sold-out,
.order-btn.is-sold-out,
body.sold-out .hero-order-btn {
  background: linear-gradient(135deg, var(--danger), var(--danger-light));
  box-shadow: 0 12px 30px rgba(198, 40, 40, 0.34);
  cursor: default;
}

.btn-outline {
  color: var(--cream);
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
}

.btn-dark {
  color: var(--white);
  background: var(--black);
}

.section {
  max-width: 1180px;
  margin: 0 auto;
  padding: 92px 22px;
}

.section-title {
  max-width: 800px;
  margin: 0 auto 42px;
  text-align: center;
}

.section-title h2,
.about-content h2,
.cta h2,
.drop-copy h2,
.order-copy h2 {
  font-size: clamp(2rem, 5vw, 4rem);
  line-height: 1;
}

.features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.feature-card {
  padding: 28px;
  background: linear-gradient(180deg, var(--dark-soft), var(--dark));
  border: 1px solid var(--border);
  border-radius: 24px;
}

.feature-card strong {
  color: var(--cream);
  font-size: 1.2rem;
}

.feature-card p {
  margin-top: 10px;
  color: var(--muted);
  line-height: 1.6;
}

.drop-section {
  padding: 82px 22px;
  background:
    linear-gradient(90deg, rgba(7, 7, 7, 0.96), rgba(7, 7, 7, 0.72)),
    radial-gradient(circle at 82% 48%, rgba(37, 211, 102, 0.12), transparent 34%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.drop-content {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.8fr);
  align-items: center;
  gap: 34px;
}

.drop-copy p,
.order-copy p {
  max-width: 640px;
  margin: 22px 0 28px;
  color: var(--muted);
  line-height: 1.75;
}

.stock-card {
  max-width: 520px;
  padding: 22px;
  border: 1px solid var(--border);
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02)), var(--dark);
}

.stock-top {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 18px;
  color: var(--cream);
}

.stock-top strong {
  font-family: "Anton", Impact, sans-serif;
  font-size: clamp(2.8rem, 8vw, 5rem);
  line-height: 1;
}

.stock-top span,
.stock-card small {
  color: var(--muted);
  font-weight: 800;
}

.stock-bar {
  position: relative;
  height: 12px;
  margin: 16px 0 12px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255,255,255,0.1);
}

.stock-bar span {
  position: absolute;
  inset: 0 auto 0 0;
  display: block;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  overflow: hidden;
  transition: width 0.25s ease;
}

.stock-bar span::before {
  content: "";
  position: absolute;
  inset: 0;
  width: var(--stock-bar-width, 100%);
  border-radius: inherit;
  background: linear-gradient(90deg, var(--danger) 0%, var(--orange-light) 38%, #25d366 100%);
}

body.sold-out .stock-bar span::before {
  background: linear-gradient(90deg, var(--danger) 0%, #8f1d1d 100%);
}

body.sold-out .stock-top strong {
  color: var(--danger-light);
}

.drop-visual {
  min-height: 360px;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 28px;
  background: #0d0d0d;
  box-shadow: var(--shadow);
}

.drop-visual img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
}

.menu-section {
  padding-top: 70px;
}

.menu-category-filter {
  position: sticky;
  top: calc(var(--header-height) + 8px);
  z-index: 35;
  max-width: 1180px;
  margin: 0 auto 18px;
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding: 10px 10px 12px;
  border: 1px solid rgba(255, 122, 43, 0.2);
  border-radius: 999px;
  background: rgba(7, 7, 7, 0.9);
  backdrop-filter: blur(14px);
  scrollbar-width: none;
  scroll-snap-type: x proximity;
  -webkit-overflow-scrolling: touch;
}

.menu-category-filter::-webkit-scrollbar {
  display: none;
}

.menu-category-filter a {
  flex: 0 0 auto;
  scroll-snap-align: start;
  border: 1px solid rgba(255, 122, 43, 0.34);
  border-radius: 999px;
  padding: 10px 16px;
  background: rgba(255,255,255,0.06);
  color: var(--cream);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.menu-category-filter a.is-active {
  background: linear-gradient(135deg, var(--orange), var(--orange-light));
  border-color: transparent;
  color: var(--white);
  box-shadow: 0 10px 24px rgba(232, 91, 31, 0.24);
}

.menu-category-heading {
  grid-column: 1 / -1;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  scroll-margin-top: calc(var(--header-height) + 78px);
  padding: 4px 2px;
}

.menu-category-heading h3 {
  font-size: clamp(1.7rem, 4vw, 2.6rem);
  line-height: 1;
}

.menu-category-heading span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  white-space: nowrap;
}

.burger-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  max-width: 1180px;
  margin: 0 auto;
}

.burger-grid.single {
  max-width: 320px;
  grid-template-columns: 1fr;
}

.burger-card {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02)), var(--dark);
  border: 1px solid var(--border);
  border-radius: 30px;
  box-shadow: var(--shadow);
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.burger-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 122, 43, 0.55);
}

.burger-card.featured {
  border-color: rgba(255, 122, 43, 0.7);
}

.badge {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 2;
  padding: 8px 14px;
  border-radius: 999px;
  background: var(--orange);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

body.sold-out .burger-card.featured {
  border-color: rgba(180, 180, 180, 0.45);
}

body.sold-out .burger-card.featured .burger-img img {
  filter: grayscale(0.75) brightness(0.72);
}

body.sold-out .badge {
  background: var(--gray);
  color: var(--white);
}

.burger-img {
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  padding: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle, rgba(232, 91, 31, 0.24), transparent 58%), #0d0d0d;
}

.burger-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 16px;
  filter: drop-shadow(0 20px 28px rgba(0,0,0,0.55));
}

.burger-info {
  padding: 18px;
}

.burger-info h3 {
  font-size: 1.38rem;
  line-height: 1;
}

.burger-info p {
  min-height: 94px;
  margin: 12px 0 18px;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.65;
}

.price-line {
  margin: -4px 0 18px;
  display: grid;
  gap: 10px;
}

.price-values {
  display: flex;
  align-items: baseline;
  gap: 9px;
  flex-wrap: wrap;
}

.price-line strong {
  color: var(--orange-light);
  font-size: 1.45rem;
}

.price-line del,
.cart-price-meta del {
  color: rgba(245, 238, 230, 0.48);
  font-weight: 800;
  text-decoration-thickness: 2px;
}

.price-line span {
  color: var(--muted);
  font-weight: 800;
  text-transform: uppercase;
  font-size: 0.72rem;
  letter-spacing: 1px;
}

.order-btn {
  width: 100%;
}

.order-btn:disabled {
  opacity: 0.55;
  cursor: not-allowed;
  transform: none;
  filter: grayscale(0.25);
}

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

.menu-cart-controls {
  display: grid;
  grid-template-columns: 46px minmax(54px, 1fr) 46px;
  gap: 8px;
  align-items: center;
}

.menu-cart-controls button,
.menu-cart-controls strong {
  height: 46px;
  border-radius: 14px;
}

.menu-cart-controls button {
  border: 1px solid rgba(255, 122, 43, 0.34);
  background: rgba(255,255,255,0.08);
  color: var(--cream);
  font-size: 1.28rem;
  font-weight: 900;
  cursor: pointer;
}

.menu-cart-controls button:last-child {
  background: linear-gradient(135deg, var(--orange), var(--orange-light));
  border-color: transparent;
  color: var(--white);
}

.menu-cart-controls button:disabled {
  opacity: 0.42;
  cursor: not-allowed;
}

.menu-cart-controls strong {
  display: grid;
  place-items: center;
  border: 1px solid var(--border);
  background: #0c0c0c;
  color: var(--cream);
  font-size: 1.15rem;
}

.menu-checkout-link {
  min-height: 44px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(37, 211, 102, 0.14);
  color: #a7f3c2;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

.menu-question-hints {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 10px;
}

.menu-question-hints span {
  border: 1px solid rgba(255, 122, 43, 0.28);
  border-radius: 999px;
  padding: 5px 8px;
  color: var(--orange-light);
  background: rgba(232, 91, 31, 0.10);
  font-size: 0.72rem;
  font-weight: 900;
}

.empty-menu {
  grid-column: 1 / -1;
  margin: 0;
  padding: 26px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: rgba(255,255,255,0.04);
  color: var(--muted);
  text-align: center;
  font-weight: 800;
}

.about {
  margin-top: 40px;
  padding: 110px 22px;
  background:
    linear-gradient(90deg, rgba(0,0,0,0.93), rgba(0,0,0,0.58)),
    radial-gradient(circle at 80% 50%, rgba(232, 91, 31, 0.38), transparent 35%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.about-content {
  max-width: 1180px;
  margin: 0 auto;
}

.about-content p {
  max-width: 650px;
  margin: 24px 0 32px;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.75;
}

.about-info {
  max-width: 860px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.78fr);
  gap: 18px;
}

.about-location,
.about-hours,
.about-payments {
  border: 1px solid var(--border);
  border-radius: 20px;
  background: rgba(255,255,255,0.045);
}

.about-location {
  grid-column: 1 / -1;
  min-height: 70px;
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  padding: 18px;
  color: var(--cream);
  font-weight: 900;
  line-height: 1.45;
}

.location-icon {
  width: 38px;
  height: 38px;
  display: inline-grid;
  align-self: center;
  justify-self: center;
  place-items: center;
  border-radius: 999px;
  background: rgba(232, 91, 31, 0.18);
  color: var(--orange-light);
}

.location-icon svg {
  display: block;
  width: 22px;
  height: 22px;
  fill: currentColor;
  transform: translateY(1px);
}

.about-hours,
.about-payments {
  padding: 20px;
}

.about-hours h3,
.about-payments h3 {
  margin: 0 0 12px;
  color: var(--cream);
  font-size: 0.95rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.about-payments > div {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.about-payments span {
  border: 1px solid rgba(255, 122, 43, 0.28);
  border-radius: 999px;
  padding: 8px 10px;
  background: rgba(232, 91, 31, 0.1);
  color: var(--cream);
  font-size: 0.8rem;
  font-weight: 900;
}

.cta {
  max-width: 1180px;
  margin: 0 auto;
  padding: 70px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.cta h2 {
  max-width: 760px;
}

.cta-address {
  max-width: 620px;
  margin-top: 18px;
  color: var(--muted);
  line-height: 1.6;
}

.order-section {
  padding: 92px 22px;
}

body.sold-out .order-section,
.is-hidden {
  display: none !important;
}

body.regular-ordering .countdown-card,
body.regular-ordering [data-preorder-only] {
  display: none !important;
}

.order-shell {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(360px, 0.9fr);
  gap: 34px;
  align-items: start;
}

.countdown-card {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.countdown-card > div {
  padding: 18px;
  border-radius: 18px;
  border: 1px solid var(--border);
  background: var(--dark);
}

.countdown-card strong {
  display: block;
  color: var(--cream);
  font-size: 1.45rem;
}

.order-notes {
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}

.order-notes li {
  position: relative;
  padding-left: 22px;
  color: var(--muted);
  line-height: 1.5;
}

.order-notes li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--orange-light);
}

.order-form {
  padding: 28px;
  display: grid;
  gap: 18px;
  border: 1px solid var(--border);
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255,255,255,0.07), rgba(255,255,255,0.03)), var(--dark);
  box-shadow: var(--shadow);
}

.form-status {
  width: 100%;
  padding: 12px 14px;
  margin: 0;
  border: 1px solid rgba(255, 122, 43, 0.32);
  border-radius: 14px;
  background: rgba(232, 91, 31, 0.11);
  line-height: 1.4;
}

.form-status.success {
  color: #a7f3c2;
  border-color: rgba(37, 211, 102, 0.45);
  background: rgba(37, 211, 102, 0.11);
}

.form-status.error {
  color: #ffd0c4;
  border-color: rgba(232, 91, 31, 0.58);
  background: rgba(232, 91, 31, 0.16);
}

.order-form label,
.order-form fieldset {
  display: grid;
  gap: 9px;
  color: var(--cream);
  font-weight: 900;
}

.order-form input,
.order-form select,
.order-form textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 14px;
  background: #0c0c0c;
  color: var(--white);
  font: inherit;
}

.order-form textarea {
  resize: vertical;
}

.quantity-stepper {
  display: grid;
  grid-template-columns: 46px minmax(72px, 1fr) 46px;
  align-items: center;
  gap: 8px;
}

.quantity-stepper input {
  height: 46px;
  padding: 0 10px;
  text-align: center;
  font-weight: 900;
  cursor: default;
  caret-color: transparent;
}

.quantity-control {
  width: 46px;
  height: 46px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: rgba(255,255,255,0.08);
  color: var(--cream);
  font-size: 1.35rem;
  font-weight: 900;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.quantity-control:hover {
  transform: translateY(-1px);
  border-color: rgba(255, 122, 43, 0.58);
  background: rgba(232, 91, 31, 0.16);
}

.quantity-control:disabled {
  opacity: 0.42;
  cursor: not-allowed;
  transform: none;
}

.form-row {
  display: grid;
  grid-template-columns: 0.7fr 1fr;
  gap: 14px;
}

.form-row:has(#quantityInput),
.form-row.single-field {
  grid-template-columns: 1fr;
}

.order-form label:has(#quantityInput) {
  display: none;
}

.cart-box {
  display: grid;
  gap: 14px;
  padding: 18px;
  border: 1px solid rgba(255, 122, 43, 0.24);
  border-radius: 18px;
  background: rgba(255,255,255,0.04);
}

.cart-head {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: flex-start;
}

.cart-head span {
  display: block;
  margin-bottom: 5px;
  color: var(--orange-light);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.cart-head strong {
  color: var(--cream);
}

.cart-clear {
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 9px 12px;
  background: rgba(255,255,255,0.05);
  color: var(--cream);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
  cursor: pointer;
}

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

.cart-empty {
  margin: 0;
  color: var(--muted);
  line-height: 1.45;
}

.cart-item {
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  padding: 12px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: #0c0c0c;
}

.cart-thumb {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 12px;
  background: rgba(255,255,255,0.06);
}

.cart-thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.cart-item-info strong,
.cart-item-info span,
.cart-item-info small {
  display: block;
}

.cart-item-info span {
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 800;
}

.cart-price-meta {
  display: flex !important;
  align-items: baseline;
  gap: 8px;
  flex-wrap: wrap;
}

.cart-price-meta strong {
  color: var(--cream);
  font-size: 0.9rem;
}

.cart-item-info small {
  margin-top: 5px;
  color: var(--orange-light);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.6px;
}

.checkout-question-card,
.checkout-question-group {
  display: grid;
  gap: 10px;
}

.checkout-question-card {
  padding: 12px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: rgba(255,255,255,0.045);
}

.checkout-question-card > strong {
  color: var(--cream);
  font-size: 0.94rem;
  font-weight: 900;
}

.checkout-question-card > span {
  color: var(--muted);
  font-size: 0.8rem;
  line-height: 1.35;
}

.checkout-question {
  display: grid;
  gap: 7px;
  padding: 10px;
  border: 1px solid rgba(255, 122, 43, 0.22);
  border-radius: 14px;
  background: rgba(255,255,255,0.035);
}

.checkout-question strong {
  color: var(--cream);
  font-size: 0.84rem;
  font-weight: 900;
}

.checkout-question small {
  color: var(--muted);
  font-size: 0.76rem;
  line-height: 1.35;
}

.checkout-question input[type="text"] {
  width: 100%;
  min-height: 42px;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 10px 12px;
  color: var(--cream);
  background: rgba(255,255,255,0.05);
}

.checkout-question-choices {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.checkout-question-choice {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 8px 10px;
  color: var(--cream);
  background: rgba(255,255,255,0.05);
  font-size: 0.78rem;
  font-weight: 900;
  cursor: pointer;
}

.checkout-question-choice input {
  accent-color: var(--orange-light);
}

.checkout-question-choice:has(input:checked) {
  border-color: rgba(255, 122, 43, 0.72);
  background: rgba(232, 91, 31, 0.16);
}

.checkout-question-choice em {
  color: var(--orange-light);
  font-size: 0.74rem;
  font-style: normal;
  font-weight: 900;
}

.cart-controls {
  display: grid;
  grid-template-columns: 42px 48px 42px;
  gap: 6px;
  align-items: center;
}

.cart-controls button {
  width: 42px;
  height: 42px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: rgba(255,255,255,0.08);
  color: var(--cream);
  font-size: 1.22rem;
  font-weight: 900;
  cursor: pointer;
}

.cart-controls button:last-child {
  background: rgba(232, 91, 31, 0.18);
  border-color: rgba(255, 122, 43, 0.36);
}

.cart-controls button:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

.cart-controls strong {
  color: var(--cream);
  text-align: center;
  font-size: 1rem;
}

.order-form fieldset {
  border: 0;
  padding: 0;
  margin: 0;
}

.order-form legend {
  margin-bottom: 10px;
  color: var(--cream);
  font-weight: 900;
}

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

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

.choice-card {
  position: relative;
  min-height: 112px;
  padding: 16px;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: rgba(255,255,255,0.04);
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.choice-card:hover {
  transform: translateY(-2px);
}

.choice-card input {
  position: absolute;
  inset: 12px 12px auto auto;
  width: 18px;
  height: 18px;
  accent-color: var(--orange-light);
}

.choice-card:has(input:checked) {
  border-color: rgba(255, 122, 43, 0.72);
  background: rgba(232, 91, 31, 0.13);
}

.choice-icon,
.pay-icon {
  display: inline-grid;
  place-items: center;
  width: 36px;
  height: 36px;
  margin-bottom: 10px;
  border-radius: 12px;
  background: rgba(255,255,255,0.08);
  color: var(--orange-light);
  font-size: 1rem;
  font-weight: 900;
}

.choice-card strong,
.choice-card small {
  display: block;
}

.choice-card small {
  margin-top: 4px;
  color: var(--muted);
  line-height: 1.35;
}

.order-form .delivery-address {
  display: none;
  gap: 12px;
}

.order-form .delivery-address.active {
  display: grid;
}

.delivery-address-title {
  color: var(--cream);
  font-weight: 900;
}

.delivery-address-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.7fr) minmax(0, 1fr);
  gap: 12px;
}

.delivery-address-grid label {
  min-width: 0;
}

.delivery-address-grid .span-2 {
  grid-column: 1 / -1;
}

.total-box {
  display: grid;
  gap: 10px;
  padding: 18px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: #0c0c0c;
}

.total-box > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.total-box strong {
  color: var(--cream);
}

.total-final {
  padding-top: 10px;
  border-top: 1px solid var(--border);
}

.discount-row strong {
  color: #a7f3c2;
}

.total-final strong {
  color: var(--orange-light);
  font-size: 1.35rem;
}

.order-submit {
  border: 0;
  border-radius: 999px;
  padding: 16px 24px;
  background: linear-gradient(135deg, var(--orange), var(--orange-light));
  color: var(--white);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  cursor: pointer;
}

.order-form.is-submitting {
  cursor: progress;
}

.order-form.is-submitting input,
.order-form.is-submitting select,
.order-form.is-submitting textarea {
  pointer-events: none;
}

.order-form.is-submitting .order-submit {
  cursor: wait;
}

.order-submit:disabled {
  opacity: 0.48;
  cursor: not-allowed;
}

.float-whatsapp {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 45;
  width: 58px;
  height: 58px;
  display: inline-grid;
  place-items: center;
  border-radius: 999px;
  background: #25d366;
  box-shadow: 0 14px 34px rgba(37, 211, 102, 0.34);
  transition: transform 0.2s ease, filter 0.2s ease;
}

.float-whatsapp:hover {
  transform: translateY(-3px);
  filter: brightness(1.04);
}

.icon-wa {
  display: inline-flex;
  width: 32px;
  height: 32px;
}

.icon-wa img {
  width: 100%;
  height: 100%;
}

.mobile-cart-bar {
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: 12px;
  z-index: 70;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px;
  border: 1px solid rgba(255, 122, 43, 0.34);
  border-radius: 18px;
  background: rgba(12, 12, 12, 0.96);
  box-shadow: 0 18px 44px rgba(0,0,0,0.48);
  backdrop-filter: blur(14px);
}

.mobile-cart-bar span,
.mobile-cart-bar strong {
  display: block;
}

.mobile-cart-bar span {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

.mobile-cart-bar strong {
  margin-top: 3px;
  color: var(--cream);
  font-size: 1.1rem;
}

.mobile-cart-bar a {
  min-height: 46px;
  padding: 0 18px;
  display: inline-grid;
  place-items: center;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--orange), var(--orange-light));
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

body.modal-open .mobile-cart-bar {
  display: none !important;
}

.order-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  place-items: center;
  padding: 22px;
}

.order-modal.is-open {
  display: grid;
}

.order-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(8px);
}

.order-modal-card {
  position: relative;
  width: min(480px, 100%);
  padding: 34px;
  border: 1px solid var(--border);
  border-radius: 24px;
  background: linear-gradient(180deg, #1e1e1e, #101010);
  box-shadow: var(--shadow);
  text-align: center;
}

.order-modal-close {
  position: absolute;
  top: 12px;
  right: 14px;
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  color: var(--cream);
  font-size: 1.3rem;
  cursor: pointer;
}

.order-modal-icon {
  width: 68px;
  height: 68px;
  margin: 0 auto 18px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: #25d366;
  color: var(--white);
  font-size: 2.1rem;
  font-weight: 900;
}

.order-modal.is-error .order-modal-icon {
  background: var(--danger);
}

.order-modal h2 {
  margin: 0 0 12px;
  font-family: "Anton", Impact, sans-serif;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: clamp(2rem, 7vw, 3rem);
  line-height: 1;
}

.order-modal p {
  margin: 0 auto 24px;
  color: var(--muted);
  line-height: 1.65;
}

.order-modal-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.footer {
  padding: 34px 22px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: var(--muted);
  text-align: center;
  border-top: 1px solid var(--border);
}

.footer img {
  width: 112px;
}

.footer a {
  color: var(--orange-light);
  font-weight: 800;
}

.footer-dev {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  flex-wrap: wrap;
}

.usb-logo {
  display: inline-flex;
  width: 18px;
  height: 18px;
  color: var(--orange-light);
}

.usb-logo svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
}

@media (max-width: 980px) {
  .features,
  .burger-grid {
    grid-template-columns: 1fr;
  }

  .burger-grid.single {
    max-width: 430px;
  }

  .hero-status,
  .drop-content,
  .order-shell,
  .about-info {
    grid-template-columns: 1fr;
  }

  .hero {
    align-items: flex-start;
    padding-top: 130px;
    padding-bottom: 280px;
    background-position: center right 42%;
  }

  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(0,0,0,0.8), rgba(0,0,0,0.48)),
      linear-gradient(to top, rgba(0,0,0,0.86), rgba(0,0,0,0.08));
  }

  .burger-info p {
    min-height: auto;
  }

  .burger-info h3 {
    font-size: 2rem;
  }

  .burger-info {
    padding: 24px;
  }

  .cta {
    flex-direction: column;
    align-items: flex-start;
  }

  .drop-visual,
  .drop-visual img {
    min-height: 300px;
  }
}

@media (max-width: 760px) {
  body.has-cart.orders-open {
    padding-bottom: 92px;
  }

  body.has-cart.orders-open .mobile-cart-bar.is-visible {
    display: flex;
  }

  body.has-cart.orders-open .float-whatsapp {
    bottom: 92px;
  }

  .menu-btn {
    display: block;
  }

  .nav-status {
    margin-left: auto;
    position: static;
  }

  .status-badge {
    min-height: 34px;
    padding: 7px 10px;
    font-size: 0.66rem;
    letter-spacing: 0.5px;
  }

  .hours-popover {
    position: fixed;
    top: calc(var(--header-height) + 10px);
    left: 12px;
    right: 12px;
    width: auto;
  }

  .hours-popover::before {
    right: 72px;
  }

  .menu-btn.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .menu-btn.active span:nth-child(2) {
    opacity: 0;
  }

  .menu-btn.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  .nav-links {
    position: fixed;
    top: 82px;
    left: 0;
    width: 100%;
    height: calc(100vh - 82px);
    padding: 34px 22px;
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 26px;
    background: rgba(7, 7, 7, 0.98);
    border-bottom: 1px solid var(--border);
  }

  .nav-links.active {
    display: flex;
  }

  .menu-category-filter {
    top: calc(var(--header-height) + 6px);
    max-width: calc(100vw - 24px);
    border-radius: 18px;
  }
}

@media (max-width: 480px) {
  :root {
    --header-height: 74px;
  }

  .navbar {
    height: 74px;
    padding: 0 14px;
    gap: 10px;
  }

  .brand img {
    width: 104px;
  }

  .status-badge {
    padding: 7px 8px;
    font-size: 0.61rem;
  }

  .status-dot {
    width: 8px;
    height: 8px;
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.16);
  }

  .status-badge.is-open .status-dot {
    box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.18);
  }

  .nav-links {
    top: 74px;
    height: calc(100vh - 74px);
  }

  .hero {
    padding: 120px 18px 240px;
  }

  .hero p {
    font-size: 1rem;
  }

  .hero-status,
  .countdown-card,
  .form-row,
  .delivery-address-grid,
  .choice-grid,
  .payment-grid {
    grid-template-columns: 1fr;
  }

  .hero-actions,
  .hero-actions .btn,
  .hero-actions a,
  .cta .btn {
    width: 100%;
  }

  .btn {
    text-align: center;
    justify-content: center;
  }

  .section {
    padding: 72px 18px;
  }

  .burger-info {
    padding: 24px;
  }

  .about {
    padding: 86px 18px;
  }

  .about-location,
  .about-hours,
  .about-payments {
    border-radius: 18px;
  }

  .drop-section,
  .order-section {
    padding: 72px 18px;
  }

  .order-form {
    gap: 14px;
    padding: 16px;
    border-radius: 20px;
  }

  .cart-box {
    gap: 12px;
    padding: 14px;
    border-radius: 16px;
  }

  .cart-head {
    flex-direction: row;
    align-items: center;
  }

  .cart-item {
    grid-template-columns: 54px minmax(0, 1fr);
    align-items: start;
    padding: 10px;
  }

  .cart-clear {
    width: auto;
    padding: 8px 10px;
  }

  .cart-thumb {
    width: 54px;
    height: 54px;
  }

  .cart-controls {
    grid-column: 1 / -1;
    grid-template-columns: 48px minmax(0, 1fr) 48px;
    width: 100%;
  }

  .cart-controls button {
    width: 100%;
    height: 46px;
  }

  .cart-controls strong {
    min-height: 46px;
    display: grid;
    place-items: center;
    border: 1px solid var(--border);
    border-radius: 12px;
    background: rgba(255,255,255,0.04);
  }

  .menu-cart-controls {
    grid-template-columns: 50px minmax(0, 1fr) 50px;
  }

  .menu-cart-controls button,
  .menu-cart-controls strong {
    height: 50px;
  }

  .mobile-cart-bar {
    left: 10px;
    right: 10px;
    bottom: 10px;
    padding: 10px;
    border-radius: 16px;
  }

  .mobile-cart-bar a {
    min-height: 44px;
    padding: 0 14px;
  }

  .float-whatsapp {
    right: 12px;
    bottom: 12px;
    width: 52px;
    height: 52px;
  }

  .icon-wa {
    width: 29px;
    height: 29px;
  }

}
