:root {
  --background-dark: #21150f;
  --background-black: #140d09;
  --surface: #2c1c13;
  --surface-2: #3a2518;
  --surface-light: #fff3dc;
  --white: #ffffff;
  --text-dark: #2a170e;
  --text-muted: #795f4f;
  --blue: #f2a33a;
  --blue-dark: #c8711c;
  --red: #d86d2c;
  --red-dark: #a74618;
  --yellow: #ffe0a6;
  --border-dark: rgba(255, 255, 255, 0.12);
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.24);
  --radius: 22px;
  --container: 1180px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  background: var(--background-dark);
  color: var(--white);
  font-family: "Inter", sans-serif;
  line-height: 1.6;
}

body.menu-open {
  overflow: hidden;
}

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

button,
input {
  font: inherit;
}

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

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

.container {
  width: min(100% - 40px, var(--container));
  margin-inline: auto;
}

.header {
  position: fixed;
  z-index: 1000;
  inset: 0 0 auto;
  background: rgba(7, 10, 14, 0.9);
  border-bottom: 1px solid var(--border-dark);
  backdrop-filter: blur(16px);
}

.nav-container {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-family: "Bebas Neue", sans-serif;
  letter-spacing: 1px;
  line-height: 1;
}

.logo-route,
.logo-food {
  font-size: 24px;
}

.logo-food {
  color: var(--red);
}

.logo-number {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  background: var(--blue);
  border: 3px solid rgba(255,255,255,.85);
  border-radius: 16px 16px 20px 20px;
  color: var(--background-black);
  font-size: 30px;
  transform: rotate(-4deg);
  box-shadow: 0 0 22px rgba(242,163,58,.3);
}

.navigation {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 14px;
  font-weight: 700;
}

.navigation > a:not(.nav-order-button) {
  color: rgba(255,255,255,.76);
  transition: color .2s ease;
}

.navigation > a:not(.nav-order-button):hover {
  color: var(--white);
}

.nav-order-button {
  padding: 11px 20px;
  background: var(--red);
  border-radius: 999px;
  transition: background .2s ease, transform .2s ease;
}

.nav-order-button:hover {
  background: var(--red-dark);
  transform: translateY(-2px);
}

.menu-button {
  display: none;
  border: 0;
  background: transparent;
  color: var(--white);
  font-size: 30px;
  cursor: pointer;
}

.hero {
  position: relative;
  min-height: 800px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 78% 36%, rgba(242,163,58,.22), transparent 20%),
    radial-gradient(circle at 88% 70%, rgba(216,109,44,.18), transparent 26%),
    linear-gradient(135deg, #140d09 0%, #2a1a11 52%, #1b110c 100%);
}

.hero::before {
  content: "24";
  position: absolute;
  right: 4vw;
  top: 90px;
  color: rgba(255,255,255,.035);
  font-family: "Bebas Neue", sans-serif;
  font-size: min(44vw, 620px);
  line-height: .9;
}

.road-lines {
  position: absolute;
  width: 780px;
  height: 100px;
  border-top: 5px dashed rgba(255,255,255,.13);
  transform: rotate(-19deg);
}

.road-lines-one {
  right: -160px;
  bottom: 160px;
}

.road-lines-two {
  right: -220px;
  bottom: 60px;
  opacity: .45;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 110px;
}

.eyebrow {
  margin-bottom: 14px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 2.5px;
  text-transform: uppercase;
}

.dark-eyebrow {
  color: var(--red);
}

.hero h1 {
  max-width: 760px;
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(72px, 10vw, 144px);
  font-weight: 400;
  line-height: .84;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.hero h1 span {
  display: block;
  color: var(--red);
  text-shadow: 0 0 25px rgba(216,109,44,.18);
}

.hero-description {
  max-width: 680px;
  margin-top: 30px;
  color: rgba(255,255,255,.74);
  font-size: clamp(17px, 2vw, 21px);
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  padding: 14px 25px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 800;
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
}

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

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

.button-primary:hover {
  background: var(--red-dark);
}

.button-secondary {
  border-color: rgba(255,255,255,.35);
  background: rgba(255,255,255,.07);
  color: var(--white);
  backdrop-filter: blur(10px);
}

.button-secondary:hover {
  background: rgba(255,255,255,.14);
}

.hero-info {
  max-width: 880px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 68px;
  border-top: 1px solid var(--border-dark);
}

.hero-info div {
  padding: 24px 25px 0 0;
}

.hero-info strong,
.hero-info span {
  display: block;
}

.hero-info strong {
  margin-bottom: 4px;
  font-size: 15px;
}

.hero-info span {
  color: rgba(255,255,255,.56);
  font-size: 13px;
}

.section {
  padding: 110px 0;
}

.section-light {
  background:
    linear-gradient(rgba(255,243,220,.96), rgba(255,243,220,.96)),
    repeating-linear-gradient(45deg, #ead8b8 0 2px, transparent 2px 11px);
  color: var(--text-dark);
}

.section-dark {
  background:
    radial-gradient(circle at 8% 8%, rgba(242,163,58,.11), transparent 22%),
    radial-gradient(circle at 92% 40%, rgba(216,109,44,.08), transparent 22%),
    var(--background-dark);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 54px;
}

.section-heading h2 {
  margin-bottom: 15px;
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(48px, 7vw, 82px);
  font-weight: 400;
  line-height: .95;
  text-transform: uppercase;
}

.section-heading > p:last-child {
  color: var(--text-muted);
  font-size: 17px;
}

.heading-light > p:last-child {
  color: rgba(255,255,255,.62);
}

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

.category-card {
  position: relative;
  min-height: 205px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  padding: 26px;
  border: 0;
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(11,17,23,.98), rgba(22,37,50,.98));
  color: var(--white);
  text-align: left;
  box-shadow: var(--shadow);
  cursor: pointer;
  isolation: isolate;
  transition: transform .25s ease, box-shadow .25s ease;
}

.category-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(120deg, transparent 0 63%, rgba(242,163,58,.09) 63% 66%, transparent 66%),
    radial-gradient(circle at 93% 8%, rgba(216,109,44,.2), transparent 24%);
}

.category-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 26px 65px rgba(0,0,0,.28);
}

.category-card-number {
  color: var(--blue);
  font-family: "Bebas Neue", sans-serif;
  font-size: 30px;
}

.category-icon {
  position: absolute;
  right: 18px;
  top: 18px;
  font-size: 38px;
  filter: grayscale(1);
  opacity: .65;
}

.category-card h3 {
  margin-top: 30px;
  font-family: "Bebas Neue", sans-serif;
  font-size: 35px;
  font-weight: 400;
  line-height: 1;
}

.category-card p {
  margin-top: 9px;
  color: rgba(255,255,255,.57);
  font-size: 13px;
}

.menu-section {
  min-height: 900px;
}

.menu-heading {
  max-width: none;
  display: grid;
  grid-template-columns: 1fr minmax(280px, 410px);
  align-items: end;
  gap: 50px;
}

.menu-search-wrap label {
  display: block;
  margin-bottom: 8px;
  color: rgba(255,255,255,.62);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.menu-search-wrap input {
  width: 100%;
  min-height: 52px;
  padding: 0 18px;
  border: 1px solid var(--border-dark);
  border-radius: 14px;
  outline: none;
  background: rgba(255,255,255,.07);
  color: var(--white);
}

.menu-search-wrap input:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(242,163,58,.1);
}

.menu-filters,
.pizza-subfilters {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-bottom: 24px;
}

.pizza-subfilters {
  padding: 16px;
  border: 1px solid var(--border-dark);
  border-radius: 18px;
  background: rgba(255,255,255,.035);
}

.filter-button,
.subfilter-button {
  padding: 10px 15px;
  border: 1px solid var(--border-dark);
  border-radius: 999px;
  background: rgba(255,255,255,.045);
  color: rgba(255,255,255,.72);
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: background .2s ease, color .2s ease, border-color .2s ease;
}

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

.subfilter-button:hover,
.subfilter-button.active {
  border-color: var(--blue);
  background: var(--blue);
  color: var(--background-black);
}

.hidden {
  display: none !important;
}

.menu-status {
  margin: 25px 0 20px;
  color: rgba(255,255,255,.53);
  font-size: 13px;
}

.menu-groups {
  display: grid;
  gap: 32px;
}

.menu-group {
  padding: 28px;
  border: 1px solid var(--border-dark);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(255,255,255,.055), rgba(255,255,255,.025));
}

.menu-group-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 22px;
  padding-bottom: 17px;
  border-bottom: 1px solid var(--border-dark);
}

.menu-group-header h3 {
  color: var(--blue);
  font-family: "Bebas Neue", sans-serif;
  font-size: 37px;
  font-weight: 400;
  line-height: 1;
  text-transform: uppercase;
}

.menu-group-header span {
  color: rgba(255,255,255,.44);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

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

.menu-item {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px;
  padding: 17px;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 15px;
  background: rgba(7,10,14,.38);
}

.menu-item-name {
  margin-bottom: 5px;
  font-size: 15px;
  font-weight: 800;
}

.menu-item-description {
  color: rgba(255,255,255,.53);
  font-size: 12px;
  line-height: 1.45;
}

.menu-item-allergens {
  display: inline-block;
  margin-top: 7px;
  color: var(--blue);
  font-size: 10px;
  font-weight: 800;
}

.menu-item-prices {
  min-width: 112px;
  display: grid;
  align-content: start;
  gap: 7px;
  text-align: right;
}

.menu-price {
  display: block;
  color: var(--white);
  font-size: 14px;
  font-weight: 800;
  white-space: nowrap;
}

.menu-price small {
  display: block;
  color: rgba(255,255,255,.38);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .8px;
  text-transform: uppercase;
}

.menu-note {
  grid-column: 1 / -1;
  margin-top: 7px;
  padding: 10px 12px;
  border-left: 3px solid var(--red);
  background: rgba(216,109,44,.08);
  color: rgba(255,255,255,.67);
  font-size: 12px;
}

.allergen-panel {
  margin-top: 42px;
  padding: 26px;
  border-radius: var(--radius);
  background: var(--surface-light);
  color: var(--text-dark);
}

.allergen-panel h3 {
  margin-bottom: 17px;
  font-family: "Bebas Neue", sans-serif;
  font-size: 32px;
  font-weight: 400;
  text-transform: uppercase;
}

.allergen-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.allergen-grid span {
  padding: 8px 10px;
  border-radius: 9px;
  background: rgba(42,23,14,.065);
  font-size: 12px;
}

.allergen-panel p {
  margin-top: 18px;
  color: var(--text-muted);
  font-size: 12px;
}

.delivery-section {
  background:
    radial-gradient(circle at 12% 10%, rgba(242,163,58,.15), transparent 25%),
    linear-gradient(145deg, #140d09, #2c1c13);
}

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

.info-card {
  min-height: 235px;
  padding: 27px;
  border: 1px solid var(--border-dark);
  border-radius: var(--radius);
  background: rgba(255,255,255,.045);
}

.info-number {
  color: var(--red);
  font-family: "Bebas Neue", sans-serif;
  font-size: 30px;
}

.info-card h3 {
  margin: 25px 0 8px;
  font-size: 20px;
}

.info-card p {
  color: rgba(255,255,255,.57);
  font-size: 14px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  align-items: center;
  gap: 80px;
}

.contact-content h2 {
  margin-bottom: 20px;
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(60px, 8vw, 100px);
  font-weight: 400;
  line-height: .9;
}

.contact-items {
  display: grid;
  gap: 12px;
  margin-top: 35px;
}

.contact-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  padding: 18px 0;
  border-bottom: 1px solid var(--border-dark);
}

.contact-item span {
  color: rgba(255,255,255,.48);
  font-size: 13px;
}

.contact-item strong {
  text-align: right;
}

.opening-card {
  padding: 38px;
  border: 1px solid var(--border-dark);
  border-radius: var(--radius);
  background: rgba(255,255,255,.07);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.opening-label {
  margin-bottom: 18px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.opening-row {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 11px 0;
  border-bottom: 1px solid var(--border-dark);
}

.opening-row span {
  color: rgba(255,255,255,.62);
}

.subtle-row {
  padding-top: 4px;
  font-size: 12px;
}

.subtle-row span,
.subtle-row strong {
  color: rgba(255,255,255,.4);
}

.full-button {
  width: 100%;
  margin-top: 28px;
}

.source-menu {
  margin-top: 65px;
  border: 1px solid var(--border-dark);
  border-radius: var(--radius);
  background: rgba(255,255,255,.035);
}

.source-menu summary {
  padding: 20px 24px;
  font-weight: 800;
  cursor: pointer;
}

.source-menu-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  padding: 0 20px 20px;
}

.source-menu-images img {
  border-radius: 14px;
}

.footer {
  padding: 30px 0 90px;
  border-top: 1px solid var(--border-dark);
  background: var(--background-black);
}

.footer-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
}

.footer-content p {
  color: rgba(255,255,255,.45);
  font-size: 12px;
}

.demo-notice {
  max-width: 260px;
  text-align: right;
}

.mobile-order-bar {
  display: none;
}

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

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

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

  .contact-grid {
    gap: 50px;
  }

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

@media (max-width: 900px) {
  .menu-button {
    display: block;
  }

  .navigation {
    position: fixed;
    top: 76px;
    right: 0;
    left: 0;
    display: none;
    align-items: stretch;
    flex-direction: column;
    gap: 0;
    padding: 20px;
    background: rgba(7,10,14,.99);
    border-bottom: 1px solid var(--border-dark);
  }

  .navigation.open {
    display: flex;
  }

  .navigation a {
    padding: 15px;
  }

  .nav-order-button {
    margin-top: 8px;
    text-align: center;
  }

  .hero {
    min-height: 760px;
  }

  .hero-info {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 45px;
  }

  .hero-info div {
    padding-top: 14px;
  }

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

  .demo-notice {
    text-align: left;
  }

  .mobile-order-bar {
    position: fixed;
    z-index: 999;
    right: 12px;
    bottom: 12px;
    left: 12px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    overflow: hidden;
    border: 1px solid rgba(255,255,255,.16);
    border-radius: 16px;
    background: rgba(7,10,14,.96);
    box-shadow: 0 15px 40px rgba(0,0,0,.45);
    backdrop-filter: blur(16px);
  }

  .mobile-order-bar a {
    padding: 15px 8px;
    text-align: center;
    font-size: 13px;
    font-weight: 800;
  }

  .mobile-order-bar a:first-child {
    background: var(--red);
  }
}

@media (max-width: 620px) {
  .container {
    width: min(100% - 28px, var(--container));
  }

  .section {
    padding: 80px 0;
  }

  .hero h1 {
    font-size: clamp(64px, 21vw, 96px);
  }

  .hero-buttons {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

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

  .category-card {
    min-height: 175px;
  }

  .menu-group {
    padding: 18px;
  }

  .menu-group-header {
    align-items: flex-start;
    flex-direction: column;
  }

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

  .menu-item-prices {
    min-width: 0;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    text-align: left;
  }

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

  .contact-item {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }

  .contact-item strong {
    text-align: left;
  }

  .opening-card {
    padding: 25px;
  }

  .source-menu-images {
    grid-template-columns: 1fr;
  }
}


/* ===== Meleg Route 24 rendelési felület ===== */

.nav-order-button {
  border: 0;
  color: var(--white);
  font-family: inherit;
  cursor: pointer;
}

.menu-item {
  position: relative;
  padding-bottom: 62px;
}

.add-to-cart {
  position: absolute;
  right: 15px;
  bottom: 14px;
  min-height: 35px;
  padding: 7px 13px;
  border: 1px solid rgba(242,163,58,.4);
  border-radius: 999px;
  background: rgba(242,163,58,.12);
  color: #ffe8bc;
  font-size: 12px;
  font-weight: 800;
  cursor: pointer;
  transition: background .2s ease, color .2s ease, transform .2s ease;
}

.add-to-cart:hover {
  background: var(--blue);
  color: var(--background-black);
  transform: translateY(-2px);
}

.floating-cart {
  position: fixed;
  z-index: 995;
  right: 22px;
  bottom: 22px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 13px 17px;
  border: 1px solid rgba(255,224,166,.25);
  border-radius: 999px;
  background: rgba(42,23,14,.95);
  color: var(--white);
  box-shadow: 0 15px 40px rgba(20,13,9,.45);
  backdrop-filter: blur(16px);
  cursor: pointer;
}

.floating-cart strong {
  display: grid;
  place-items: center;
  min-width: 27px;
  height: 27px;
  padding: 0 7px;
  border-radius: 999px;
  background: var(--red);
  color: var(--white);
}

.modal-backdrop {
  position: fixed;
  z-index: 2000;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 22px;
  background: rgba(20,13,9,.78);
  backdrop-filter: blur(12px);
}

.modal-card {
  position: relative;
  width: min(100%, 680px);
  max-height: calc(100vh - 44px);
  overflow-y: auto;
  padding: 32px;
  border: 1px solid rgba(121,78,42,.2);
  border-radius: 25px;
  background:
    radial-gradient(circle at 100% 0, rgba(242,163,58,.14), transparent 30%),
    #fff3dc;
  color: var(--text-dark);
  box-shadow: 0 35px 100px rgba(20,13,9,.5);
}

.order-modal-card {
  width: min(100%, 1180px);
}

.modal-card h2 {
  margin-bottom: 12px;
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(42px, 6vw, 66px);
  font-weight: 400;
  line-height: .95;
  text-transform: uppercase;
}

.modal-card h3 {
  margin-bottom: 12px;
  font-size: 15px;
}

.modal-description {
  margin-bottom: 24px;
  color: var(--text-muted);
}

.modal-close {
  position: sticky;
  z-index: 3;
  top: 0;
  float: right;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  background: #2a170e;
  color: #fff3dc;
  font-size: 18px;
  cursor: pointer;
}

.order-layout {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 34px;
}

.cart-column {
  padding-right: 28px;
  border-right: 1px solid rgba(121,78,42,.2);
}

.cart-empty {
  padding: 20px;
  border: 1px dashed rgba(121,78,42,.35);
  border-radius: 16px;
  color: var(--text-muted);
  font-size: 13px;
}

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

.cart-item {
  padding: 15px;
  border: 1px solid rgba(121,78,42,.16);
  border-radius: 15px;
  background: rgba(255,255,255,.46);
}

.cart-item-top,
.cart-item-actions,
.cart-totals > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.cart-item-name {
  font-weight: 800;
}

.cart-item-details {
  margin-top: 5px;
  color: var(--text-muted);
  font-size: 12px;
}

.cart-item-actions {
  margin-top: 12px;
}

.quantity-controls {
  display: inline-flex;
  align-items: center;
  gap: 9px;
}

.quantity-controls button,
.remove-cart-item {
  border: 1px solid rgba(121,78,42,.2);
  background: #fff8e9;
  color: var(--text-dark);
  cursor: pointer;
}

.quantity-controls button {
  width: 29px;
  height: 29px;
  border-radius: 50%;
}

.remove-cart-item {
  padding: 7px 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
}

.cart-totals {
  display: grid;
  gap: 9px;
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid rgba(121,78,42,.2);
}

.cart-grand-total {
  margin-top: 3px;
  padding-top: 10px;
  border-top: 1px solid rgba(121,78,42,.16);
  font-size: 18px;
}

.estimated-total-note,
.price-warning {
  margin-top: 12px;
  color: var(--text-muted);
  font-size: 11px;
}

.form-section {
  margin-bottom: 24px;
}

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

.compact-grid {
  align-items: end;
}

.modal-card label {
  display: grid;
  gap: 7px;
  color: #513424;
  font-size: 12px;
  font-weight: 700;
}

.modal-card input,
.modal-card select,
.modal-card textarea {
  width: 100%;
  border: 1px solid rgba(121,78,42,.26);
  border-radius: 12px;
  outline: none;
  background: #fffaf0;
  color: var(--text-dark);
}

.modal-card input,
.modal-card select {
  min-height: 47px;
  padding: 0 13px;
}

.modal-card textarea {
  padding: 12px 13px;
  resize: vertical;
}

.modal-card input:focus,
.modal-card select:focus,
.modal-card textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(242,163,58,.13);
}

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

.radio-card {
  position: relative;
  display: block !important;
  cursor: pointer;
}

.radio-card input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.radio-card span {
  min-height: 72px;
  display: flex;
  justify-content: center;
  flex-direction: column;
  padding: 12px 14px;
  border: 1px solid rgba(121,78,42,.2);
  border-radius: 14px;
  background: rgba(255,255,255,.46);
  transition: border-color .2s ease, background .2s ease, transform .2s ease;
}

.radio-card small {
  margin-top: 2px;
  color: var(--text-muted);
  font-weight: 500;
}

.radio-card input:checked + span {
  border-color: var(--red);
  background: rgba(216,109,44,.12);
  transform: translateY(-2px);
}

.scheduled-time-field {
  margin-top: 12px;
}

.consent-row {
  display: grid !important;
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 10px !important;
  margin: 18px 0;
  font-weight: 500 !important;
}

.consent-row input {
  width: 18px;
  min-height: 18px;
  margin-top: 2px;
}

.consent-row a {
  color: var(--red-dark);
  text-decoration: underline;
}

.honeypot {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
}

.order-message {
  min-height: 22px;
  margin: 10px 0;
  font-size: 13px;
  font-weight: 700;
}

.order-message.error {
  color: #a33a1b;
}

.order-message.success {
  color: #3a6d2b;
}

@media (max-width: 980px) {
  .order-layout {
    grid-template-columns: 1fr;
  }

  .cart-column {
    padding-right: 0;
    padding-bottom: 28px;
    border-right: 0;
    border-bottom: 1px solid rgba(121,78,42,.2);
  }
}

@media (max-width: 620px) {
  .modal-backdrop {
    align-items: end;
    padding: 0;
  }

  .modal-card {
    width: 100%;
    max-height: 94vh;
    padding: 23px 18px 30px;
    border-radius: 24px 24px 0 0;
  }

  .form-grid,
  .option-grid {
    grid-template-columns: 1fr;
  }

  .floating-cart {
    right: 14px;
    bottom: 78px;
  }

  .mobile-order-bar button {
    border: 0;
    background: var(--red);
    color: var(--white);
    font-size: 13px;
    font-weight: 800;
  }
}

.mobile-order-bar a,
.mobile-order-bar button {
  border: 0;
  background: transparent;
  color: var(--white);
  font-family: inherit;
  cursor: pointer;
}

@media (max-width: 900px) {
  .mobile-order-bar a,
  .mobile-order-bar button {
    padding: 15px 8px;
    text-align: center;
    font-size: 13px;
    font-weight: 800;
  }

  .mobile-order-bar button {
    background: var(--red);
  }
}
