:root {
  --cream: #fff7e6;
  --paper: #fffdf6;
  --tomato: #c53125;
  --tomato-dark: #8d2018;
  --basil: #1d5b3c;
  --basil-soft: #dbe9d8;
  --sun: #f6bb3c;
  --ink: #221815;
  --muted: #645047;
  --tile: #e9d6ba;
  --line: rgba(34, 24, 21, 0.16);
  --shadow: 0 18px 38px rgba(34, 24, 21, 0.14);
  --radius: 8px;
  --page-width: min(1480px, 94vw);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

[hidden] {
  display: none !important;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--ink);
  font-family: "Manrope", "Segoe UI", sans-serif;
  line-height: 1.55;
  background:
    linear-gradient(90deg, rgba(29, 91, 60, 0.08) 1px, transparent 1px),
    linear-gradient(0deg, rgba(197, 49, 37, 0.06) 1px, transparent 1px),
    var(--cream);
  background-size: 44px 44px, 44px 44px, auto;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(197, 49, 37, 0.1), transparent 22%, transparent 78%, rgba(29, 91, 60, 0.1)),
    repeating-linear-gradient(135deg, transparent 0 17px, rgba(34, 24, 21, 0.035) 17px 18px);
}

body.cart-open {
  overflow: hidden;
}

body.pizza-customizer-open {
  overflow: hidden;
}

.site-header {
  width: var(--page-width);
  margin: 1rem auto 0;
  padding: 0.8rem 1rem;
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 253, 246, 0.92);
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 28px rgba(34, 24, 21, 0.08);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  color: inherit;
  text-decoration: none;
  min-width: max-content;
}

.brand-logo-shell {
  width: 4.45rem;
  height: 4.45rem;
  padding: 0.16rem;
  border-radius: 50%;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(197, 49, 37, 0.16);
  background:
    radial-gradient(circle at 50% 50%, rgba(255, 253, 246, 0.98) 0 62%, rgba(246, 187, 60, 0.22) 63% 100%);
  box-shadow: 0 8px 18px rgba(34, 24, 21, 0.11);
  flex: 0 0 auto;
}

.brand-logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 50%;
  transform: none;
  transform-origin: center;
  display: block;
}

.brand-logo-text {
  color: var(--paper);
  background:
    radial-gradient(circle at 28% 22%, rgba(246, 187, 60, 0.95), transparent 0.58rem),
    linear-gradient(135deg, var(--basil), var(--tomato));
  font-family: "Fraunces", serif;
  font-size: 1.45rem;
  font-weight: 900;
  letter-spacing: 0;
}

.brand-copy {
  display: grid;
  gap: 0.02rem;
}

.brand-text {
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.05rem;
  font-weight: 800;
}

.brand-subtitle {
  color: var(--basil);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0;
}

.site-nav {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
}

.site-nav a {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 900;
  text-decoration: none;
}

.site-nav a:hover {
  color: var(--tomato);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.75rem;
  padding: 0.75rem 1.1rem;
  border: 0;
  border-radius: 999px;
  background: var(--tomato);
  color: #fff;
  font-weight: 900;
  text-decoration: none;
  box-shadow: 0 10px 22px rgba(197, 49, 37, 0.25);
  transition: transform 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.btn:hover {
  transform: translateY(-2px);
  background: var(--tomato-dark);
  box-shadow: 0 14px 28px rgba(197, 49, 37, 0.28);
}

.btn-header {
  min-height: 2.5rem;
  padding: 0.62rem 1rem;
  font-size: 0.88rem;
}

.cart-trigger {
  gap: 0.5rem;
  cursor: pointer;
}

.cart-trigger.is-bumping {
  animation: cart-bump 420ms ease;
}

.cart-icon {
  width: 1.25rem;
  height: 1.25rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex: 0 0 auto;
}

.cart-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 1.35rem;
  min-height: 1.35rem;
  padding: 0 0.35rem;
  border-radius: 999px;
  background: #fff;
  color: var(--tomato);
  font-size: 0.76rem;
  line-height: 1;
}

.cart-toast {
  position: absolute;
  top: calc(100% + 0.65rem);
  right: 0.75rem;
  z-index: 28;
  display: grid;
  grid-template-columns: 2.25rem minmax(0, 1fr);
  gap: 0.72rem;
  width: min(22rem, calc(100vw - 1.4rem));
  padding: 0.78rem;
  border: 1px solid rgba(29, 91, 60, 0.22);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(219, 233, 216, 0.72), transparent 44%),
    rgba(255, 253, 246, 0.98);
  box-shadow: 0 16px 32px rgba(34, 24, 21, 0.16);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-0.5rem) scale(0.98);
  transform-origin: 92% 0;
  transition: opacity 170ms ease, transform 190ms ease;
}

.cart-toast::before {
  content: "";
  position: absolute;
  top: -0.45rem;
  right: 2.2rem;
  width: 0.85rem;
  height: 0.85rem;
  border-top: 1px solid rgba(29, 91, 60, 0.22);
  border-left: 1px solid rgba(29, 91, 60, 0.22);
  background: var(--paper);
  transform: rotate(45deg);
}

.cart-toast.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.cart-toast-check {
  position: relative;
  display: inline-flex;
  width: 2.25rem;
  height: 2.25rem;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--basil);
  color: #fff;
  font-weight: 900;
  box-shadow: 0 8px 16px rgba(29, 91, 60, 0.22);
}

.cart-toast-body {
  position: relative;
  min-width: 0;
}

.cart-toast-kicker {
  display: block;
  color: var(--basil);
  font-size: 0.7rem;
  font-weight: 900;
  text-transform: uppercase;
}

.cart-toast-body strong {
  display: block;
  overflow: hidden;
  color: var(--tomato-dark);
  font-size: 0.96rem;
  line-height: 1.18;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.cart-toast-body p {
  margin: 0.18rem 0 0;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
}

.btn-outline {
  background: var(--paper);
  color: var(--tomato);
  border: 1px solid rgba(197, 49, 37, 0.34);
  box-shadow: none;
}

.btn-outline:hover {
  color: #fff;
  background: var(--basil);
}

main {
  width: var(--page-width);
  margin: 0 auto;
}

.hero {
  min-height: auto;
  display: grid;
  grid-template-columns: minmax(28rem, 0.94fr) minmax(28rem, 1.06fr);
  gap: 1.4rem;
  align-items: center;
  padding: 1.65rem 0 1.2rem;
}

.hero-copy-wrap {
  max-width: 43rem;
  min-width: 0;
}

.hero-eyebrow,
.section-tag,
.card-kicker {
  margin: 0 0 0.45rem;
  color: var(--basil);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Fraunces", Georgia, serif;
  letter-spacing: 0;
  line-height: 1.06;
}

h1 {
  max-width: 10.8ch;
  font-size: clamp(3.85rem, 5.5vw, 4.65rem);
  font-weight: 800;
}

h2 {
  font-size: 2.55rem;
}

h3 {
  font-size: 1.2rem;
}

.hero-copy {
  max-width: 36rem;
  margin: 1.1rem 0 0;
  color: var(--muted);
  font-size: 1.06rem;
}

.founder-line {
  max-width: 34rem;
  margin: 0.7rem 0 0;
  color: var(--tomato-dark);
  font-size: 0.9rem;
  font-weight: 900;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.6rem;
}

.hero-visual {
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(34, 24, 21, 0.18);
  border-radius: var(--radius);
  aspect-ratio: 16 / 10;
  background: var(--ink);
  box-shadow: var(--shadow);
  align-self: end;
}

.hero-visual.logo-seal {
  position: relative;
  display: grid;
  place-items: center;
  overflow: visible;
  border: 0;
  border-radius: 0;
  background:
    radial-gradient(circle at 50% 50%, rgba(255, 253, 246, 0.82) 0 38%, rgba(246, 187, 60, 0.18) 39% 60%, transparent 61%);
  box-shadow: none;
  align-self: center;
}

.hero-visual.logo-seal::before {
  content: "";
  position: absolute;
  width: min(72%, 34rem);
  aspect-ratio: 1;
  border: 1px dashed rgba(197, 49, 37, 0.23);
  border-radius: 50%;
  pointer-events: none;
  transform: rotate(-5deg);
}

.hero-visual.logo-seal::after {
  content: "";
  position: absolute;
  width: min(62%, 29rem);
  aspect-ratio: 1;
  border-radius: 50%;
  border: 1px solid rgba(246, 187, 60, 0.44);
  box-shadow:
    0 0 0 0.45rem rgba(255, 253, 246, 0.32),
    0 18px 32px rgba(34, 24, 21, 0.1);
  pointer-events: none;
}

.hero-visual img,
.hero-visual video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-visual.logo-seal .hero-seal {
  position: relative;
  z-index: 1;
  width: min(56%, 27rem);
  height: auto;
  aspect-ratio: 1;
  object-fit: contain;
  border-radius: 50%;
  clip-path: circle(49.5% at 50% 50%);
  padding: 0;
  filter: drop-shadow(0 14px 18px rgba(34, 24, 21, 0.14));
}

.hero-visual video {
  object-fit: contain;
  background: #f8edcf;
}

.menu-pills {
  display: flex;
  gap: 0.55rem;
  margin: 1.15rem 0 0;
  padding: 0;
  overflow-x: auto;
  scrollbar-width: none;
}

.menu-pills::-webkit-scrollbar {
  display: none;
}

.menu-pills a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.45rem;
  padding: 0.5rem 0.95rem;
  border: 1px solid rgba(29, 91, 60, 0.24);
  border-radius: 999px;
  background: rgba(255, 253, 246, 0.78);
  color: var(--basil);
  font-size: 0.86rem;
  font-weight: 900;
  text-decoration: none;
  white-space: nowrap;
  transition: background 160ms ease, color 160ms ease, transform 160ms ease;
}

.menu-pills a:hover,
.menu-pills a:focus-visible {
  transform: translateY(-1px);
  background: var(--basil);
  color: #fff;
  outline: 0;
}

.section {
  margin-top: 3.2rem;
}

.my-orders[hidden] {
  display: none;
}

.order-page-hero,
.orders-page-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(17rem, 0.9fr);
  gap: 1rem;
  align-items: stretch;
  margin-top: 1.2rem;
  padding: 1.1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(197, 49, 37, 0.11), transparent 36%),
    linear-gradient(90deg, rgba(29, 91, 60, 0.13), transparent 56%),
    rgba(255, 253, 246, 0.94);
  box-shadow: 0 12px 26px rgba(34, 24, 21, 0.08);
}

.order-page-hero {
  grid-template-columns: 1fr;
}

.orders-page-hero h1 {
  max-width: 12ch;
}

.orders-page-hero > div > p:last-child {
  max-width: 44rem;
  margin: 0.75rem 0 0;
  color: var(--muted);
  font-weight: 800;
}

.my-orders-shell {
  padding: 1.1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(29, 91, 60, 0.13), transparent 38%),
    rgba(255, 253, 246, 0.92);
  box-shadow: 0 10px 24px rgba(34, 24, 21, 0.08);
}

.order-success-banner {
  position: relative;
  display: grid;
  grid-template-columns: 4.25rem minmax(0, 1fr);
  gap: 1rem;
  align-items: center;
  margin-bottom: 1.05rem;
  padding: 1rem;
  overflow: hidden;
  border: 1px solid rgba(29, 91, 60, 0.25);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 2rem 50%, rgba(219, 233, 216, 0.95), transparent 9rem),
    #fff8e8;
}

.order-success-banner.is-payment-failed {
  border-color: rgba(197, 49, 37, 0.34);
  background:
    radial-gradient(circle at 2rem 50%, rgba(234, 216, 213, 0.95), transparent 9rem),
    #fff8e8;
}

.order-success-banner.is-payment-pending {
  border-color: rgba(246, 187, 60, 0.52);
  background:
    radial-gradient(circle at 2rem 50%, rgba(246, 187, 60, 0.22), transparent 9rem),
    #fff8e8;
}

.order-page-success {
  margin-bottom: 0;
  min-height: 18rem;
}

.order-success-banner[hidden] {
  display: none;
}

.order-success-banner.is-celebrating {
  animation: order-banner-in 460ms ease both;
}

.order-success-icon {
  display: inline-flex;
  width: 4rem;
  height: 4rem;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--basil);
  color: #fff;
  box-shadow: 0 12px 22px rgba(29, 91, 60, 0.24);
}

.order-success-banner.is-payment-failed .order-success-icon {
  background: var(--tomato);
  box-shadow: 0 12px 22px rgba(197, 49, 37, 0.22);
}

.order-success-banner.is-payment-pending .order-success-icon {
  background: var(--sun);
  color: var(--ink);
  box-shadow: 0 12px 22px rgba(246, 187, 60, 0.24);
}

.order-success-banner.is-celebrating .order-success-icon {
  animation: order-check-pop 620ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.order-success-icon svg {
  width: 2.2rem;
  height: 2.2rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.order-success-banner h1,
.order-success-banner h2 {
  max-width: none;
  color: var(--tomato-dark);
  font-size: clamp(1.7rem, 3vw, 2.25rem);
}

.order-success-banner p:last-child {
  margin: 0.42rem 0 0;
  color: var(--muted);
  font-weight: 800;
}

.order-page-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  justify-content: flex-end;
}

.order-privacy-note {
  display: grid;
  align-content: center;
  padding: 1rem;
  border: 1px solid rgba(29, 91, 60, 0.22);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 1rem 1rem, rgba(246, 187, 60, 0.22), transparent 9rem),
    rgba(255, 247, 230, 0.72);
}

.order-privacy-note h2 {
  font-size: clamp(1.45rem, 2.7vw, 2rem);
}

.order-privacy-note p:last-child {
  margin: 0.45rem 0 0;
  color: var(--muted);
  font-weight: 800;
}

.my-orders-list {
  display: grid;
  gap: 0.85rem;
}

.my-orders-empty {
  margin: 0;
  padding: 1rem;
  border: 1px dashed rgba(34, 24, 21, 0.22);
  border-radius: var(--radius);
  color: var(--muted);
  font-weight: 800;
  text-align: center;
}

.customer-order-card {
  overflow: hidden;
  border: 1px solid rgba(34, 24, 21, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 253, 246, 0.96);
  box-shadow: 0 8px 18px rgba(34, 24, 21, 0.07);
}

.customer-order-card-header {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.9rem;
  border-bottom: 1px solid rgba(34, 24, 21, 0.1);
  background:
    linear-gradient(135deg, rgba(246, 187, 60, 0.18), transparent 55%),
    #fff8e8;
}

.customer-order-card-header h3 {
  color: var(--tomato-dark);
  font-size: 1.22rem;
}

.customer-order-card-header p {
  margin: 0.28rem 0 0;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 800;
}

.customer-status-pill {
  display: inline-flex;
  align-items: center;
  min-height: 2rem;
  padding: 0.34rem 0.7rem;
  border-radius: 999px;
  background: var(--sun);
  color: var(--ink);
  font-size: 0.75rem;
  font-weight: 900;
  text-transform: uppercase;
  white-space: nowrap;
}

.customer-status-pill[data-status="preparing"] {
  background: var(--basil);
  color: #fff;
}

.customer-status-pill[data-status="ready"] {
  background: #2563eb;
  color: #fff;
}

.customer-status-pill[data-status="completed"] {
  background: var(--basil-soft);
  color: var(--basil);
}

.customer-status-pill[data-status="cancelled"] {
  background: #ead8d5;
  color: var(--tomato-dark);
}

.customer-status-pill[data-status="payment_failed"] {
  background: #ead8d5;
  color: var(--tomato-dark);
}

.customer-status-pill[data-status="payment_pending"] {
  background: rgba(246, 187, 60, 0.32);
  color: var(--ink);
}

.customer-order-body {
  display: grid;
  gap: 0.85rem;
  padding: 0.9rem;
}

.customer-order-meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.7rem;
}

.customer-order-meta div {
  display: grid;
  gap: 0.12rem;
}

.customer-order-meta span {
  color: var(--basil);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.customer-order-meta strong {
  color: var(--ink);
  font-size: 0.92rem;
}

.customer-order-steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.45rem;
}

.customer-order-step {
  display: grid;
  gap: 0.35rem;
  color: rgba(100, 80, 71, 0.68);
  font-size: 0.75rem;
  font-weight: 900;
  text-align: center;
}

.customer-order-step::before {
  content: "";
  display: block;
  height: 0.42rem;
  border-radius: 999px;
  background: rgba(34, 24, 21, 0.12);
}

.customer-order-step.is-complete,
.customer-order-step.is-current {
  color: var(--basil);
}

.customer-order-step.is-complete::before,
.customer-order-step.is-current::before {
  background: var(--basil);
}

.customer-order-step.is-current::before {
  animation: order-step-pulse 1200ms ease-in-out infinite;
}

.customer-payment-note {
  padding: 0.75rem;
  border: 1px solid rgba(197, 49, 37, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 248, 232, 0.82);
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 800;
}

.customer-order-items {
  display: grid;
  gap: 0.28rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.customer-order-items li {
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 800;
}

.customer-order-total {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 0.7rem;
  border-top: 1px dashed rgba(34, 24, 21, 0.18);
  color: var(--basil);
  font-weight: 900;
}

@keyframes order-banner-in {
  0% {
    opacity: 0;
    transform: translateY(0.75rem) scale(0.98);
  }

  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes order-check-pop {
  0% {
    transform: scale(0.72);
  }

  56% {
    transform: scale(1.12);
  }

  100% {
    transform: scale(1);
  }
}

@keyframes order-step-pulse {
  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.55;
  }
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(20rem, 1fr);
  gap: 1rem;
  align-items: end;
  margin-bottom: 1.1rem;
}

.section-heading > p {
  margin: 0;
  color: var(--muted);
}

.founder-story {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(17rem, 0.65fr);
  gap: 1.2rem;
  align-items: stretch;
  padding: 1.2rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(90deg, rgba(29, 91, 60, 0.13), transparent 34%),
    linear-gradient(135deg, rgba(197, 49, 37, 0.11), transparent 38%),
    var(--paper);
  box-shadow: 0 10px 24px rgba(34, 24, 21, 0.08);
}

.story-copy p:not(.section-tag) {
  margin: 0.75rem 0 0;
  color: var(--muted);
}

.story-signature {
  display: grid;
  align-content: end;
  gap: 0.3rem;
  min-height: 18rem;
  padding: 1rem;
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 247, 230, 0.2), rgba(255, 253, 246, 0.86)),
    url("assets/images/thegovindjis-final-logo.png") center 1rem / min(78%, 16rem) no-repeat;
  border: 1px solid rgba(34, 24, 21, 0.12);
}

.story-signature p {
  margin: 0;
  color: var(--basil);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.story-signature h3 {
  color: var(--tomato-dark);
}

.story-signature span {
  color: var(--muted);
  font-weight: 900;
}

.product-strip {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.product-strip article {
  min-height: 11.5rem;
  padding: 1.1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(197, 49, 37, 0.1), transparent 35%),
    var(--paper);
  box-shadow: 0 10px 24px rgba(34, 24, 21, 0.08);
}

.product-strip article:nth-child(2) {
  background:
    linear-gradient(135deg, rgba(246, 187, 60, 0.2), transparent 36%),
    var(--paper);
}

.product-strip p:last-child {
  max-width: 34rem;
  margin: 0.75rem 0 0;
  color: var(--muted);
}

.veg-mark {
  display: inline-flex;
  width: 1rem;
  height: 1rem;
  border: 1.5px solid var(--basil);
  border-radius: 3px;
  background: var(--paper);
  flex: 0 0 auto;
}

.veg-mark::after {
  content: "";
  width: 0.46rem;
  height: 0.46rem;
  margin: auto;
  border-radius: 50%;
  background: var(--basil);
}

.pizza-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}

.pizza-card {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 31rem;
  padding: 0 0 4.15rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 253, 246, 0.98);
  box-shadow: 0 8px 20px rgba(34, 24, 21, 0.07);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.pizza-card:hover,
.pizza-card:focus-within {
  transform: translateY(-3px);
  border-color: rgba(197, 49, 37, 0.32);
  box-shadow: 0 16px 30px rgba(34, 24, 21, 0.13);
}

.pizza-thumb {
  position: relative;
  overflow: hidden;
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  margin: 0;
  border-bottom: 1px solid rgba(34, 24, 21, 0.12);
  background: var(--ink);
}

.pizza-thumb img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 240ms ease;
}

.pizza-card:hover .pizza-thumb img,
.pizza-card:focus-within .pizza-thumb img {
  transform: scale(1.035);
}

.pizza-badge {
  position: absolute;
  left: 0.85rem;
  bottom: 0.85rem;
  padding: 0.34rem 0.62rem;
  border-radius: 999px;
  background: var(--tomato);
  color: #fff;
  font-size: 0.76rem;
  font-weight: 900;
  box-shadow: 0 6px 14px rgba(197, 49, 37, 0.24);
}

.pizza-card-copy {
  min-width: 0;
  padding: 0.9rem 1rem;
}

.pizza-title-row {
  display: flex;
  align-items: start;
  gap: 0.55rem;
}

.pizza-title-row h3 {
  color: var(--tomato-dark);
  font-size: 1.35rem;
}

.pizza-card-copy p {
  margin: 0.52rem 0 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.pizza-card-copy .ingredient-line {
  color: var(--basil);
  font-size: 0.84rem;
  font-weight: 900;
}

.pizza-card-actions {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 0.75rem 0.9rem 0.9rem;
  border-top: 1px solid rgba(34, 24, 21, 0.12);
  background: rgba(255, 253, 246, 0.96);
  backdrop-filter: blur(12px);
  transform: translateY(calc(100% - 3.25rem));
  transition: transform 190ms ease;
}

.pizza-card:hover .pizza-card-actions,
.pizza-card:focus-within .pizza-card-actions {
  transform: translateY(0);
}

.size-kicker {
  margin: 0 0 0.55rem;
  color: var(--basil);
  font-size: 0.74rem;
  font-weight: 900;
  text-transform: uppercase;
}

.size-option-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.45rem;
}

.size-option-grid button {
  display: grid;
  gap: 0.18rem;
  min-height: 4.5rem;
  padding: 0.52rem 0.42rem;
  border: 1px solid rgba(29, 91, 60, 0.24);
  border-radius: var(--radius);
  background: #fff8e8;
  color: var(--ink);
  cursor: pointer;
  text-align: center;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.size-option-grid button:hover,
.size-option-grid button:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(197, 49, 37, 0.48);
  background: #fff1cf;
  outline: 0;
}

.size-option-grid span,
.size-option-grid strong,
.size-option-grid em {
  display: block;
}

.size-option-grid span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 900;
}

.size-option-grid strong {
  color: var(--tomato-dark);
  font-size: 0.88rem;
  white-space: nowrap;
}

.size-option-grid em {
  color: var(--basil);
  font-size: 0.78rem;
  font-style: normal;
  font-weight: 900;
  text-transform: uppercase;
}

.menu-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
}

.menu-item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1rem;
  min-height: 11rem;
  padding: 0.95rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 253, 246, 0.96);
  box-shadow: 0 8px 20px rgba(34, 24, 21, 0.07);
}

.menu-item h3 {
  color: var(--tomato-dark);
}

.menu-item p {
  margin: 0.5rem 0 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.price-trio {
  display: grid;
  gap: 0.4rem;
  align-content: start;
  min-width: 8rem;
  font-weight: 900;
}

.price-trio span {
  display: block;
  padding: 0.38rem 0.5rem;
  border-radius: var(--radius);
  background: var(--basil);
  color: #fff;
  text-align: center;
  white-space: nowrap;
}

.price-trio span:nth-child(2) {
  background: var(--sun);
  color: var(--ink);
}

.price-trio span:last-child {
  background: var(--tomato);
  color: #fff;
}

.menu-note {
  margin: 0.95rem 0 0;
  padding: 0.8rem 0.95rem;
  border: 1px dashed rgba(29, 91, 60, 0.35);
  border-radius: var(--radius);
  background: rgba(219, 233, 216, 0.72);
  color: var(--basil);
  font-size: 0.92rem;
  font-weight: 900;
}

.addon-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
  margin-top: 1rem;
  align-items: start;
}

.addon-panel {
  display: grid;
  grid-template-rows: auto auto minmax(0, auto) auto;
  min-height: 0;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(246, 187, 60, 0.18), transparent 34%),
    var(--paper);
  box-shadow: 0 8px 20px rgba(34, 24, 21, 0.07);
}

.addon-panel:nth-child(2) {
  background:
    linear-gradient(135deg, rgba(29, 91, 60, 0.13), transparent 34%),
    var(--paper);
}

.cheese-panel {
  background:
    linear-gradient(135deg, rgba(197, 49, 37, 0.11), transparent 34%),
    var(--paper);
}

.addon-panel h3 {
  margin-bottom: 0.75rem;
  color: var(--tomato-dark);
}

.addon-list {
  display: grid;
  gap: 0;
  max-height: 16.8rem;
  margin: 0;
  padding: 0;
  list-style: none;
  overflow-y: auto;
  overscroll-behavior: contain;
  scrollbar-color: rgba(197, 49, 37, 0.55) rgba(246, 187, 60, 0.12);
  scrollbar-width: thin;
}

.addon-list::-webkit-scrollbar {
  width: 0.48rem;
}

.addon-list::-webkit-scrollbar-track {
  border-radius: 999px;
  background: rgba(246, 187, 60, 0.12);
}

.addon-list::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: rgba(197, 49, 37, 0.52);
}

.addon-list li {
  position: relative;
  display: flex;
  min-height: 4.2rem;
  align-items: center;
  justify-content: space-between;
  gap: 0.7rem;
  padding: 0.6rem 0.2rem 0.6rem 0;
  border-bottom: 1px dashed rgba(34, 24, 21, 0.2);
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 800;
  cursor: default;
  transition: color 180ms ease, transform 180ms ease;
}

.addon-list li:last-child {
  border-bottom: 0;
}

.addon-list li:hover,
.addon-list li:focus-within,
.addon-list li.is-previewing {
  color: var(--ink);
  transform: translateX(0.18rem);
}

.addon-list li > span {
  flex: 1 1 auto;
  min-width: 0;
  line-height: 1.2;
}

.addon-list strong {
  flex: 0 0 auto;
  color: var(--basil);
  font-size: 0.9rem;
}

.addon-list button {
  flex: 0 0 auto;
  min-height: 1.9rem;
  padding: 0.3rem 0.58rem;
  border: 1px solid rgba(197, 49, 37, 0.28);
  border-radius: 999px;
  background: #fff8e8;
  color: var(--tomato);
  cursor: pointer;
  font-size: 0.78rem;
  font-weight: 900;
}

.addon-list button:hover,
.addon-list button:focus-visible {
  background: var(--tomato);
  color: #fff;
  outline: 0;
}

.pizza-only-addon {
  flex: 0 0 auto;
  min-height: 1.9rem;
  padding: 0.36rem 0.58rem;
  border-radius: 999px;
  background: rgba(219, 233, 216, 0.84);
  color: var(--basil);
  font-size: 0.72rem;
  font-style: normal;
  font-weight: 950;
  text-transform: uppercase;
  white-space: nowrap;
}

.addon-preview {
  display: grid;
  grid-template-columns: 7.2rem minmax(0, 1fr);
  gap: 0.85rem;
  min-height: 7.2rem;
  margin: 0.55rem 0 0.85rem;
  padding: 0.58rem;
  border: 1px solid rgba(197, 49, 37, 0.16);
  border-radius: var(--radius);
  background: #fff8ed;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.58);
  opacity: 1;
  overflow: hidden;
  transform: translateY(0);
  transition: opacity 180ms ease, transform 180ms ease;
}

.addon-panel.has-addon-preview .addon-preview {
  display: grid;
  opacity: 1;
  transform: translateY(0);
}

.addon-art {
  position: relative;
  width: 100%;
  height: 6rem;
  overflow: hidden;
  border-radius: calc(var(--radius) - 4px);
  background:
    radial-gradient(circle at 48% 48%, #f7ead3 0 37%, #d2a878 38% 39%, transparent 40%),
    linear-gradient(135deg, #efe4d2, #c99562);
  box-shadow: 0 8px 18px rgba(34, 24, 21, 0.14);
  transition: transform 220ms ease, filter 220ms ease;
}

.addon-art::before,
.addon-art::after {
  position: absolute;
  content: "";
}

.addon-art::before {
  inset: 11% 14%;
  border-radius: 999px;
  background: var(--addon-main, #fff);
  box-shadow: var(--addon-shadow, none);
}

.addon-art::after {
  inset: 0;
  background: var(--addon-detail, transparent);
}

.addon-art-mint {
  --addon-main: radial-gradient(circle at 50% 50%, #f8fff5 0 36%, #d6efd4 37% 48%, #f9fff7 49%);
  --addon-shadow:
    -1.7rem -0.2rem 0 -0.6rem #2e8b57,
    -1.25rem 0.45rem 0 -0.65rem #5bbf78,
    1.55rem -0.35rem 0 -0.62rem #226f48,
    1.1rem 0.48rem 0 -0.66rem #74c887;
  --addon-detail:
    radial-gradient(circle at 30% 35%, rgba(43, 125, 73, 0.85) 0 5%, transparent 6%),
    radial-gradient(circle at 64% 58%, rgba(43, 125, 73, 0.8) 0 5%, transparent 6%);
}

.addon-art-chipotle {
  --addon-main: radial-gradient(circle at 48% 50%, #f77b22 0 46%, #c94f1e 47% 62%, #ffb56d 63%);
  --addon-shadow:
    -1.4rem 0.1rem 0 -0.5rem #ff9a38,
    1.35rem -0.15rem 0 -0.55rem #a33a19;
  --addon-detail:
    linear-gradient(18deg, transparent 42%, rgba(255, 235, 179, 0.8) 43% 48%, transparent 49%),
    radial-gradient(circle at 62% 38%, #6d2613 0 5%, transparent 6%);
}

.addon-art-chilli-oil {
  --addon-main: radial-gradient(circle at 48% 50%, rgba(214, 43, 22, 0.95) 0 44%, #f2a21f 45% 62%, #fff1bc 63%);
  --addon-shadow:
    -1.2rem -0.15rem 0 -0.58rem #8f1b13,
    1.1rem 0.18rem 0 -0.62rem #d62b16;
  --addon-detail:
    radial-gradient(circle at 36% 38%, #7d1710 0 4%, transparent 5%),
    radial-gradient(circle at 57% 56%, #7d1710 0 4%, transparent 5%),
    radial-gradient(circle at 69% 33%, #f8d05b 0 3%, transparent 4%);
}

.addon-art-hot-honey {
  --addon-main: radial-gradient(circle at 50% 54%, #f6b12e 0 43%, #d37a13 44% 55%, #ffe0a3 56%);
  --addon-shadow:
    -1.35rem 0.2rem 0 -0.62rem #ee8c20,
    1.35rem -0.12rem 0 -0.62rem #ffca54;
  --addon-detail:
    linear-gradient(115deg, transparent 39%, rgba(255, 245, 195, 0.82) 40% 46%, transparent 47%),
    radial-gradient(circle at 68% 58%, #b32618 0 4%, transparent 5%);
}

.addon-art-paneer {
  --addon-main:
    linear-gradient(28deg, #fff8df 0 48%, #ead9aa 49% 52%, #fff4d0 53%);
  --addon-shadow:
    -1.7rem -0.1rem 0 -0.35rem #fff3ca,
    -0.55rem 0.4rem 0 -0.4rem #f8e6b7,
    1.45rem -0.2rem 0 -0.38rem #fff6d4,
    0.75rem 0.55rem 0 -0.42rem #ead9aa;
  --addon-detail:
    radial-gradient(circle at 34% 35%, rgba(197, 49, 37, 0.35) 0 3%, transparent 4%),
    radial-gradient(circle at 61% 57%, rgba(197, 49, 37, 0.28) 0 3%, transparent 4%);
}

.addon-art-jalapenos {
  --addon-main: radial-gradient(ellipse at 50% 50%, #3f9e4d 0 48%, #1f6d39 49% 60%, transparent 61%);
  --addon-shadow:
    -1.55rem -0.28rem 0 -0.48rem #4fb65b,
    -0.3rem 0.5rem 0 -0.5rem #2e8f43,
    1.45rem -0.18rem 0 -0.48rem #58bf60;
  --addon-detail:
    radial-gradient(circle at 35% 46%, #e7d46a 0 5%, transparent 6%),
    radial-gradient(circle at 54% 44%, #e7d46a 0 5%, transparent 6%),
    radial-gradient(circle at 66% 52%, #e7d46a 0 4%, transparent 5%);
}

.addon-art-red-chilli {
  --addon-main: radial-gradient(ellipse at 50% 50%, #c4312a 0 47%, #8c1e1a 48% 60%, transparent 61%);
  --addon-shadow:
    -1.45rem 0.22rem 0 -0.5rem #e44b3f,
    0.25rem -0.42rem 0 -0.52rem #a92520,
    1.45rem 0.22rem 0 -0.5rem #cf3b32;
  --addon-detail:
    linear-gradient(105deg, transparent 43%, rgba(255, 225, 160, 0.72) 44% 48%, transparent 49%),
    radial-gradient(circle at 62% 48%, #ffd56c 0 4%, transparent 5%);
}

.addon-art-olives {
  --addon-main: radial-gradient(circle at 50% 50%, #151515 0 28%, #cab36f 29% 39%, #111 40% 52%, transparent 53%);
  --addon-shadow:
    -1.65rem -0.15rem 0 -0.35rem #101010,
    -0.6rem 0.55rem 0 -0.37rem #161616,
    1.45rem -0.25rem 0 -0.36rem #101010,
    0.9rem 0.55rem 0 -0.39rem #1d1d1d;
  --addon-detail: radial-gradient(circle at 49% 50%, #ceb86b 0 12%, transparent 13%);
}

.addon-art-bell-peppers {
  --addon-main: linear-gradient(90deg, #2f9b45 0 31%, #e4b928 32% 64%, #d7392f 65%);
  --addon-shadow:
    -1.45rem 0.18rem 0 -0.52rem #3db95a,
    0 -0.32rem 0 -0.5rem #ffd23b,
    1.5rem 0.15rem 0 -0.52rem #ef5548;
  --addon-detail:
    linear-gradient(16deg, transparent 39%, rgba(255, 255, 255, 0.65) 40% 45%, transparent 46%),
    linear-gradient(-18deg, transparent 53%, rgba(255, 255, 255, 0.48) 54% 58%, transparent 59%);
}

.addon-art-sun-dried-tomatoes {
  --addon-main: radial-gradient(ellipse at 50% 50%, #9e231d 0 48%, #5f1513 49% 61%, transparent 62%);
  --addon-shadow:
    -1.5rem -0.22rem 0 -0.48rem #bb332b,
    -0.25rem 0.55rem 0 -0.52rem #7f1e19,
    1.45rem -0.12rem 0 -0.5rem #b72e27;
  --addon-detail:
    linear-gradient(24deg, transparent 43%, rgba(255, 168, 82, 0.72) 44% 47%, transparent 48%),
    radial-gradient(circle at 59% 53%, rgba(255, 194, 92, 0.85) 0 3%, transparent 4%);
}

.addon-art-corn {
  --addon-main:
    radial-gradient(circle at 34% 38%, #ffd84d 0 9%, transparent 10%),
    radial-gradient(circle at 49% 34%, #ffe56e 0 9%, transparent 10%),
    radial-gradient(circle at 62% 43%, #f3c431 0 9%, transparent 10%),
    radial-gradient(circle at 39% 57%, #fbd24b 0 9%, transparent 10%),
    radial-gradient(circle at 55% 61%, #ffdf62 0 9%, transparent 10%);
  --addon-shadow:
    -1.25rem -0.15rem 0 -0.62rem #ffd84d,
    1.15rem 0.15rem 0 -0.62rem #f4c331;
}

.addon-art-eggplant {
  --addon-main: radial-gradient(ellipse at 50% 50%, #4a254f 0 33%, #f2e0b1 34% 48%, #2b1734 49% 62%, transparent 63%);
  --addon-shadow:
    -1.45rem -0.18rem 0 -0.45rem #4a254f,
    -0.35rem 0.5rem 0 -0.5rem #613464,
    1.35rem -0.16rem 0 -0.46rem #3a1d42;
  --addon-detail: radial-gradient(circle at 50% 50%, rgba(92, 54, 72, 0.55) 0 8%, transparent 9%);
}

.addon-art-zucchini {
  --addon-main: radial-gradient(ellipse at 50% 50%, #71a34b 0 35%, #ecf4bf 36% 48%, #3d772d 49% 62%, transparent 63%);
  --addon-shadow:
    -1.5rem -0.18rem 0 -0.5rem #7daf4f,
    -0.3rem 0.55rem 0 -0.52rem #5b943c,
    1.35rem -0.12rem 0 -0.5rem #6aa044;
  --addon-detail: radial-gradient(circle at 50% 50%, rgba(236, 244, 191, 0.7) 0 10%, transparent 11%);
}

.addon-art-burrata {
  --addon-main: radial-gradient(circle at 50% 49%, #fffefa 0 36%, #efe4d3 37% 49%, #fff8ec 50%);
  --addon-shadow:
    -1.35rem -0.24rem 0 -0.48rem #fffefa,
    1.3rem 0.26rem 0 -0.52rem #f4ead9;
  --addon-detail:
    radial-gradient(circle at 50% 50%, rgba(245, 220, 185, 0.8) 0 9%, transparent 10%),
    linear-gradient(130deg, transparent 46%, rgba(43, 125, 73, 0.62) 47% 52%, transparent 53%);
}

.addon-art-ricotta {
  --addon-main: radial-gradient(circle at 50% 50%, #fffaf1 0 44%, #e7d7bd 45% 56%, transparent 57%);
  --addon-shadow:
    -1.55rem -0.24rem 0 -0.42rem #fffaf1,
    -0.3rem 0.48rem 0 -0.48rem #f4ead8,
    1.4rem -0.18rem 0 -0.44rem #fff8ed;
  --addon-detail:
    radial-gradient(circle at 41% 39%, rgba(185, 169, 145, 0.35) 0 3%, transparent 4%),
    radial-gradient(circle at 59% 56%, rgba(185, 169, 145, 0.35) 0 3%, transparent 4%);
}

.addon-art-buffalo-mozzarella,
.addon-art-bocconcini {
  --addon-main: radial-gradient(circle at 50% 50%, #fffdf5 0 34%, #e5d5be 35% 46%, transparent 47%);
  --addon-shadow:
    -1.55rem -0.28rem 0 -0.42rem #fffdf5,
    -0.45rem 0.55rem 0 -0.45rem #f4ead9,
    1.45rem -0.2rem 0 -0.43rem #fff8ec,
    0.95rem 0.5rem 0 -0.5rem #eadbc7;
  --addon-detail:
    radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.72) 0 12%, transparent 13%),
    radial-gradient(circle at 32% 39%, rgba(29, 91, 60, 0.65) 0 4%, transparent 5%);
}

.addon-art-parmesan {
  --addon-main: linear-gradient(135deg, #f8df8c 0 48%, #d0a33d 49% 52%, #fff0ab 53%);
  --addon-shadow:
    -1.3rem -0.1rem 0 -0.5rem #f4d777,
    1.28rem 0.22rem 0 -0.52rem #e9c45d;
  --addon-detail:
    linear-gradient(16deg, transparent 40%, rgba(255, 255, 255, 0.62) 41% 45%, transparent 46%),
    radial-gradient(circle at 63% 42%, #c6942e 0 4%, transparent 5%);
}

.addon-art-cheddar {
  --addon-main: linear-gradient(135deg, #f6a72e 0 48%, #c46d1a 49% 52%, #ffc55a 53%);
  --addon-shadow:
    -1.35rem -0.14rem 0 -0.5rem #ffb23a,
    1.35rem 0.18rem 0 -0.52rem #e98b24;
  --addon-detail:
    linear-gradient(20deg, transparent 43%, rgba(255, 243, 181, 0.66) 44% 47%, transparent 48%);
}

.addon-preview img {
  width: 100%;
  height: 6rem;
  border-radius: calc(var(--radius) - 4px);
  object-fit: cover;
  box-shadow: 0 8px 18px rgba(34, 24, 21, 0.14);
  transition: opacity 100ms ease, transform 220ms ease, filter 220ms ease;
}

.addon-preview.is-loading img {
  opacity: 0;
}

.addon-panel.has-addon-preview .addon-preview img,
.addon-panel:focus-within .addon-preview img {
  transform: scale(1.02);
}

.addon-preview div {
  align-self: center;
}

.addon-preview span {
  display: block;
  color: var(--tomato-dark);
  font-family: var(--font-display);
  font-size: 1.12rem;
  font-weight: 900;
  line-height: 1.05;
}

.addon-preview p {
  margin: 0.35rem 0 0;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.35;
}

.cheesecakes {
  display: block;
}

.cheesecake-copy {
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(246, 187, 60, 0.22), transparent 32%),
    var(--paper);
}

.cheesecake-copy > p:not(.section-tag) {
  margin: 0.9rem 0 0;
  color: var(--muted);
}

.dessert-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
  margin-top: 1.2rem;
}

.dessert-card {
  overflow: hidden;
  display: flex;
  flex-direction: column;
  border-radius: var(--radius);
  background: var(--paper);
  color: var(--ink);
  border: 1px solid rgba(34, 24, 21, 0.1);
}

.dessert-card-image {
  margin: 0;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #fff3cf;
}

.dessert-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.dessert-card-blueberry .dessert-card-image img,
.dessert-card-mixed-berry .dessert-card-image img {
  object-position: 50% 82%;
}

.dessert-card-strawberry .dessert-card-image img {
  object-position: 22% 34%;
}

.dessert-card-coconut-walnut .dessert-card-image img {
  object-position: 78% 38%;
}

.dessert-card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 0.75rem;
}

.dessert-card h3 {
  color: var(--tomato-dark);
  font-size: 1.04rem;
}

.dessert-card p {
  margin: 0.4rem 0 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.dessert-card-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.65rem;
  margin-top: auto;
  padding-top: 0.65rem;
}

.dessert-card strong {
  display: block;
  color: var(--basil);
  font-size: 0.88rem;
  font-weight: 900;
}

.dessert-card button {
  min-height: 2.25rem;
  padding: 0.45rem 0.8rem;
  border: 0;
  border-radius: 999px;
  background: var(--tomato);
  color: #fff;
  font-weight: 900;
  cursor: pointer;
  white-space: nowrap;
}

.dessert-card button:hover,
.dessert-card button:focus-visible {
  background: var(--tomato-dark);
  outline: 0;
}

.cake-order-note {
  display: grid;
  gap: 0.4rem;
  margin-top: 0.9rem;
  padding: 0.8rem;
  border: 1px dashed rgba(29, 91, 60, 0.32);
  border-radius: var(--radius);
  background: rgba(219, 233, 216, 0.72);
}

.cake-order-note p {
  margin: 0;
  color: var(--basil);
  font-size: 0.9rem;
  font-weight: 900;
}

.menu-showcase {
  padding-top: 0.25rem;
}

.menu-showcase-body {
  display: grid;
  grid-template-columns: minmax(18rem, 0.82fr) minmax(0, 1.18fr);
  gap: 1rem;
  align-items: stretch;
}

.menu-showcase-image {
  min-height: 100%;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--ink);
  box-shadow: 0 10px 24px rgba(34, 24, 21, 0.1);
}

.menu-showcase-image img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 23rem;
  object-fit: cover;
}

.quick-order-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.72rem;
  align-content: start;
}

.drinks-order-grid {
  grid-template-columns: 1fr;
}

.quick-order-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 9.2rem;
  padding: 0.9rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 253, 246, 0.94);
  box-shadow: 0 8px 18px rgba(34, 24, 21, 0.07);
}

.quick-order-card h3 {
  color: var(--tomato-dark);
  font-size: 1.08rem;
}

.quick-order-card p {
  margin: 0.38rem 0 0;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.4;
}

.quick-order-card-featured {
  border-color: rgba(197, 49, 37, 0.34);
  background:
    linear-gradient(135deg, rgba(197, 49, 37, 0.1), transparent 55%),
    var(--paper);
}

.quick-order-action {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.7rem;
  margin-top: 0.72rem;
}

.quick-order-action strong {
  color: var(--basil);
  font-size: 0.9rem;
  font-weight: 900;
}

.quick-order-action button {
  min-height: 2.2rem;
  padding: 0.42rem 0.78rem;
  border: 0;
  border-radius: 999px;
  background: var(--tomato);
  color: #fff;
  cursor: pointer;
  font-weight: 900;
}

.quick-order-action button:hover,
.quick-order-action button:focus-visible {
  background: var(--tomato-dark);
  outline: 0;
}

.story-page-intro {
  max-width: 52rem;
  padding: 3.8rem 0 0;
}

.story-page-intro h1 {
  max-width: 14ch;
}

.story-page-intro > p:last-child {
  max-width: 42rem;
  margin: 1rem 0 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.story-page-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.15rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 253, 246, 0.9);
}

.story-page-cta h2 {
  max-width: 21rem;
  color: var(--tomato-dark);
  font-size: 1.7rem;
}

.truck {
  padding: 1.2rem;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(29, 91, 60, 0.14), transparent 32%),
    linear-gradient(135deg, transparent 0 20px, rgba(197, 49, 37, 0.08) 20px 21px),
    var(--paper);
}

.truck-grid,
.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.truck-grid article,
.contact-card,
.hours-card {
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 253, 246, 0.94);
}

.truck-grid p,
.contact-card p {
  margin: 0.55rem 0 0;
  color: var(--muted);
}

.hours-card {
  max-width: 44rem;
}

.hours-card ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.hours-card li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.72rem 0;
  border-bottom: 1px dashed rgba(34, 24, 21, 0.25);
  font-weight: 900;
}

.hours-card li:last-child {
  border-bottom: 0;
}

.contact-card a {
  color: var(--tomato);
  font-weight: 900;
  text-decoration: none;
  overflow-wrap: anywhere;
}

.contact-card a:hover {
  text-decoration: underline;
}

.license-card {
  border-color: rgba(29, 91, 60, 0.35);
  background: linear-gradient(135deg, rgba(219, 233, 216, 0.9), var(--paper));
}

.site-footer {
  width: var(--page-width);
  margin: 4rem auto 2rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
  color: var(--muted);
  text-align: center;
  font-size: 0.92rem;
}

.footer-brand-lockup {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.9rem;
  max-width: 44rem;
  margin: 0 auto 1rem;
  padding: 0.8rem 1rem;
  border: 1px solid rgba(34, 24, 21, 0.13);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(246, 187, 60, 0.16), transparent 48%),
    rgba(255, 253, 246, 0.94);
  box-shadow: 0 8px 20px rgba(34, 24, 21, 0.06);
  text-align: left;
}

.footer-brand-lockup img {
  width: 4.6rem;
  height: 4.6rem;
  object-fit: contain;
  flex: 0 0 auto;
}

.footer-brand-lockup strong,
.footer-brand-lockup span {
  display: block;
}

.footer-brand-lockup strong {
  color: var(--tomato-dark);
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.25rem;
  line-height: 1.1;
}

.footer-brand-lockup span {
  margin-top: 0.2rem;
  color: var(--muted);
  font-weight: 800;
}

.footer-compliance {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  max-width: 46rem;
  margin: 0 auto 1.15rem;
  padding: 0.9rem 1rem;
  border: 1px solid rgba(29, 91, 60, 0.3);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(219, 233, 216, 0.88), rgba(255, 253, 246, 0.96)),
    var(--paper);
  box-shadow: 0 8px 20px rgba(34, 24, 21, 0.07);
}

.fssai-logo {
  display: block;
  width: 8.8rem;
  max-width: 34vw;
  height: auto;
  flex: 0 0 auto;
}

.footer-compliance-copy {
  text-align: left;
}

.footer-compliance-copy p {
  margin: 0;
}

.registered-name {
  color: var(--tomato-dark);
  font-size: 0.9rem;
  font-weight: 900;
}

.fssai-label {
  margin-top: 0.28rem;
  color: var(--basil);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0;
}

.fssai-number {
  margin-top: 0.12rem;
  color: var(--ink);
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.25rem;
  font-weight: 800;
  line-height: 1.12;
}

.fssai-validity {
  margin-top: 0.22rem;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 800;
}

.footer-policy-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.55rem 1rem;
  margin: 0 auto 0.95rem;
}

.footer-policy-links a {
  color: var(--tomato-dark);
  font-size: 0.86rem;
  font-weight: 900;
  text-decoration: none;
}

.footer-policy-links a:hover {
  color: var(--basil);
  text-decoration: underline;
}

.policy-page {
  padding-top: 3rem;
}

.policy-hero {
  max-width: 48rem;
  padding: 2rem 0 1rem;
}

.policy-hero h1 {
  max-width: none;
  font-size: 3.4rem;
}

.policy-hero p:not(.section-tag) {
  margin: 1rem 0 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.policy-content {
  display: grid;
  gap: 0.85rem;
  max-width: 58rem;
}

.policy-content article {
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 253, 246, 0.96);
  box-shadow: 0 8px 20px rgba(34, 24, 21, 0.07);
}

.policy-content h2 {
  font-size: 1.45rem;
  color: var(--tomato-dark);
}

.policy-content p {
  margin: 0.55rem 0 0;
  color: var(--muted);
}

.policy-content a {
  color: var(--tomato);
  font-weight: 900;
  text-decoration: none;
  overflow-wrap: anywhere;
}

.policy-content a:hover {
  text-decoration: underline;
}

.cart-shell {
  position: fixed;
  inset: 0;
  z-index: 80;
  visibility: hidden;
  pointer-events: none;
}

.cart-shell.is-open {
  visibility: visible;
  pointer-events: auto;
}

.cart-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(34, 24, 21, 0.46);
  opacity: 0;
  cursor: pointer;
  transition: opacity 180ms ease;
}

.cart-shell.is-open .cart-backdrop {
  opacity: 1;
}

.cart-panel {
  position: absolute;
  top: 0;
  right: 0;
  display: flex;
  flex-direction: column;
  width: min(100%, 31.5rem);
  height: 100%;
  padding: 1.05rem;
  border-left: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(219, 233, 216, 0.72), transparent 35%),
    var(--paper);
  box-shadow: -18px 0 38px rgba(34, 24, 21, 0.18);
  transform: translateX(104%);
  transition: transform 220ms ease;
  overflow-y: auto;
}

.cart-shell.is-open .cart-panel {
  transform: translateX(0);
}

.cart-panel-header {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 0.9rem;
  border-bottom: 1px solid var(--line);
}

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

.cart-close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.3rem;
  height: 2.3rem;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--paper);
  color: var(--ink);
  cursor: pointer;
  font-size: 1.4rem;
  line-height: 1;
}

.cart-items {
  overflow: visible;
  display: grid;
  align-content: start;
  gap: 0.7rem;
  flex: 0 0 auto;
  max-height: none;
  min-height: 6.5rem;
  padding: 0.95rem 0;
  border-bottom: 1px solid var(--line);
}

.cart-empty {
  margin: 0;
  padding: 1rem;
  border: 1px dashed rgba(34, 24, 21, 0.24);
  border-radius: var(--radius);
  color: var(--muted);
  text-align: center;
  font-weight: 800;
}

.cart-sauce-upsell {
  display: grid;
  gap: 0.65rem;
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--line);
}

.cart-sauce-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 0.8rem;
}

.cart-sauce-heading h3 {
  color: var(--tomato-dark);
  font-size: 1.25rem;
  line-height: 1.05;
}

.cart-sauce-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.55rem;
}

.cart-sauce-card {
  display: grid;
  grid-template-columns: 3.1rem minmax(0, 1fr) auto;
  gap: 0.52rem;
  align-items: center;
  min-width: 0;
  padding: 0.52rem;
  border: 1px solid rgba(34, 24, 21, 0.12);
  border-radius: calc(var(--radius) - 3px);
  background: rgba(255, 248, 232, 0.88);
}

.cart-sauce-card img {
  width: 3.1rem;
  aspect-ratio: 1;
  border: 1px solid rgba(34, 24, 21, 0.12);
  border-radius: 0.55rem;
  background: #f3dec1;
  object-fit: cover;
}

.cart-sauce-card div {
  min-width: 0;
}

.cart-sauce-card strong,
.cart-sauce-card span {
  display: block;
}

.cart-sauce-card strong {
  overflow: hidden;
  color: var(--ink);
  font-size: 0.82rem;
  line-height: 1.15;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.cart-sauce-card span {
  margin-top: 0.12rem;
  color: var(--basil);
  font-size: 0.78rem;
  font-weight: 900;
}

.cart-sauce-card button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2rem;
  padding: 0 0.7rem;
  border: 1px solid rgba(197, 49, 37, 0.26);
  border-radius: 999px;
  background: #fff8e8;
  color: var(--tomato);
  cursor: pointer;
  font-weight: 900;
  transition: background 160ms ease, color 160ms ease, transform 160ms ease;
}

.cart-sauce-card button:hover,
.cart-sauce-card button:focus-visible {
  background: var(--tomato);
  color: #fffdf6;
  transform: translateY(-1px);
}

.cart-smart-suggestions {
  display: grid;
  gap: 0.65rem;
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--line);
}

.cart-smart-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 0.75rem;
}

.cart-smart-heading h3 {
  color: var(--tomato-dark);
  font-size: 1.2rem;
  line-height: 1.05;
}

.cart-smart-grid {
  display: grid;
  gap: 0.55rem;
}

.cart-smart-card {
  display: grid;
  grid-template-columns: 4.6rem minmax(0, 1fr);
  gap: 0.65rem;
  align-items: start;
  padding: 0.62rem;
  border: 1px solid rgba(34, 24, 21, 0.13);
  border-radius: calc(var(--radius) - 3px);
  background:
    linear-gradient(135deg, rgba(246, 187, 60, 0.2), transparent 42%),
    rgba(255, 248, 232, 0.9);
}

.cart-smart-card img {
  width: 4.6rem;
  aspect-ratio: 1;
  border: 1px solid rgba(34, 24, 21, 0.12);
  border-radius: 0.55rem;
  background: #f3dec1;
  object-fit: cover;
}

.cart-smart-copy {
  min-width: 0;
}

.cart-smart-copy span,
.cart-smart-copy strong {
  display: block;
}

.cart-smart-copy span {
  color: var(--basil);
  font-size: 0.68rem;
  font-weight: 900;
  text-transform: uppercase;
}

.cart-smart-copy strong {
  color: var(--tomato-dark);
  font-size: 0.95rem;
  line-height: 1.15;
}

.cart-smart-copy p {
  margin: 0.22rem 0 0;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 750;
  line-height: 1.35;
}

.cart-smart-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.38rem;
  margin-top: 0.55rem;
}

.cart-smart-actions button {
  min-height: 2rem;
  padding: 0.35rem 0.62rem;
  border: 1px solid rgba(197, 49, 37, 0.26);
  border-radius: 999px;
  background: #fffdf6;
  color: var(--tomato);
  cursor: pointer;
  font-size: 0.78rem;
  font-weight: 900;
  transition: background 160ms ease, color 160ms ease, transform 160ms ease;
}

.cart-smart-actions button:hover,
.cart-smart-actions button:focus-visible {
  background: var(--tomato);
  color: #fffdf6;
  transform: translateY(-1px);
}

.cart-line {
  display: grid;
  grid-template-columns: 5rem minmax(0, 1fr);
  gap: 0.75rem;
  align-items: start;
  padding: 0.85rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 253, 246, 0.95);
}

.cart-line-image {
  width: 5rem;
  aspect-ratio: 1;
  border: 1px solid rgba(34, 24, 21, 0.12);
  border-radius: calc(var(--radius) - 4px);
  background: #f3dec1;
  object-fit: cover;
}

.cart-line-main {
  display: grid;
  min-width: 0;
  gap: 0.55rem;
}

.cart-line-main h3 {
  margin-right: 0.75rem;
  color: var(--tomato-dark);
  font-size: 1.05rem;
  line-height: 1.2;
}

.cart-line-main p {
  margin: 0.28rem 0 0;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 800;
}

.cart-line-addons {
  display: grid;
  gap: 0.24rem;
  margin: -0.15rem 0 0;
  padding: 0.48rem 0.55rem;
  border: 1px dashed rgba(29, 91, 60, 0.28);
  border-radius: calc(var(--radius) - 3px);
  background: rgba(219, 233, 216, 0.48);
  list-style: none;
}

.cart-line-addons li {
  display: flex;
  justify-content: space-between;
  gap: 0.5rem;
  color: var(--basil);
  font-size: 0.78rem;
  font-weight: 900;
}

.cart-line-addons span {
  color: var(--tomato-dark);
  white-space: nowrap;
}

.cart-line-price {
  color: var(--basil);
  font-weight: 900;
  white-space: nowrap;
}

.cart-line-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
}

.qty-controls {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.qty-controls button,
.cart-remove {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(29, 91, 60, 0.25);
  border-radius: 999px;
  background: #fff8e8;
  color: var(--basil);
  cursor: pointer;
  font-weight: 900;
}

.qty-controls button {
  width: 2rem;
  height: 2rem;
}

.qty-controls input {
  width: 2.7rem;
  min-height: 2rem;
  border: 1px solid rgba(29, 91, 60, 0.22);
  border-radius: 999px;
  background: rgba(255, 253, 246, 0.96);
  color: var(--ink);
  font-weight: 900;
  text-align: center;
}

.qty-controls input::-webkit-outer-spin-button,
.qty-controls input::-webkit-inner-spin-button {
  margin: 0;
  appearance: none;
}

.cart-remove {
  min-height: 2rem;
  padding: 0.35rem 0.65rem;
  color: var(--tomato);
}

.cart-summary {
  padding-top: 0.9rem;
  border-top: 1px solid var(--line);
}

.cart-checkout-area {
  display: grid;
  gap: 0.85rem;
  flex: 1 0 auto;
  padding-top: 0.9rem;
}

.order-form {
  display: grid;
  gap: 0.75rem;
}

.order-mode-fieldset {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.55rem;
  margin: 0;
  padding: 0;
  border: 0;
}

.order-mode-fieldset legend {
  grid-column: 1 / -1;
  margin-bottom: 0.1rem;
  color: var(--basil);
  font-size: 0.75rem;
  font-weight: 900;
  text-transform: uppercase;
}

.order-mode-option {
  display: flex;
  gap: 0.5rem;
  min-height: 4.15rem;
  padding: 0.62rem;
  border: 1px solid rgba(34, 24, 21, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 248, 232, 0.82);
  cursor: pointer;
}

.order-mode-option:has(input:checked) {
  border-color: rgba(197, 49, 37, 0.48);
  background: #fff1cf;
  box-shadow: inset 0 0 0 1px rgba(197, 49, 37, 0.14);
}

.order-mode-option input {
  margin-top: 0.2rem;
  accent-color: var(--tomato);
}

.order-mode-option span {
  display: grid;
  gap: 0.16rem;
}

.order-mode-option strong {
  color: var(--tomato-dark);
  font-size: 0.9rem;
  line-height: 1.16;
}

.order-mode-option em {
  color: var(--muted);
  font-size: 0.72rem;
  font-style: normal;
  font-weight: 800;
  line-height: 1.22;
}

.scheduled-fields,
.customer-fields {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.55rem;
}

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

.scheduled-fields {
  padding: 0.68rem;
  border: 1px dashed rgba(29, 91, 60, 0.36);
  border-radius: var(--radius);
  background: rgba(219, 233, 216, 0.62);
}

.scheduled-fields p {
  grid-column: 1 / -1;
  margin: 0;
  color: var(--basil);
  font-size: 0.76rem;
  font-weight: 900;
  line-height: 1.35;
}

.order-form label {
  display: grid;
  gap: 0.24rem;
  color: var(--basil);
  font-size: 0.74rem;
  font-weight: 900;
  text-transform: uppercase;
}

.order-form input,
.order-form select,
.order-form textarea {
  width: 100%;
  min-height: 2.35rem;
  border: 1px solid rgba(34, 24, 21, 0.18);
  border-radius: calc(var(--radius) - 2px);
  background: rgba(255, 253, 246, 0.96);
  color: var(--ink);
  padding: 0.52rem 0.62rem;
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: none;
}

.order-form textarea {
  resize: vertical;
}

.order-form input:focus,
.order-form select:focus,
.order-form textarea:focus {
  outline: 2px solid rgba(197, 49, 37, 0.26);
  border-color: rgba(197, 49, 37, 0.48);
}

.full-field {
  grid-column: 1 / -1;
}

.cart-summary > div {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  color: var(--ink);
  font-size: 1.1rem;
  font-weight: 900;
}

.cart-summary p {
  margin: 0.55rem 0 0;
  color: var(--muted);
  font-size: 0.86rem;
}

.cart-summary .cart-summary-count {
  color: var(--basil);
  font-weight: 900;
}

.cart-summary .cart-status {
  min-height: 1.2rem;
  color: var(--basil);
  font-weight: 900;
}

.cart-status.is-error {
  color: var(--tomato-dark);
}

.cart-status.is-success {
  color: var(--basil);
}

.cart-checkout {
  width: 100%;
  margin-top: 0.9rem;
}

.cart-checkout.is-disabled {
  pointer-events: none;
  opacity: 0.54;
}

.cart-checkout:disabled {
  cursor: not-allowed;
  opacity: 0.56;
  transform: none;
}

.cart-fallback {
  display: block;
  width: max-content;
  margin: 0.55rem auto 0;
  color: var(--tomato);
  font-size: 0.82rem;
  font-weight: 900;
  text-align: center;
  text-decoration: none;
}

.cart-fallback:hover {
  text-decoration: underline;
}

.cart-fallback.is-disabled {
  pointer-events: none;
  opacity: 0.52;
}

.cart-clear {
  width: 100%;
  min-height: 2.35rem;
  margin-top: 0.55rem;
  border: 1px solid rgba(197, 49, 37, 0.32);
  border-radius: 999px;
  background: transparent;
  color: var(--tomato);
  cursor: pointer;
  font-weight: 900;
}

.cart-clear:disabled {
  cursor: not-allowed;
  opacity: 0.48;
}

.checkout-page main {
  padding-bottom: 3rem;
}

.checkout-hero {
  max-width: 58rem;
  margin: 2.2rem 0 0;
  padding: 1.15rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(246, 187, 60, 0.18), transparent 36%),
    rgba(255, 253, 246, 0.92);
  box-shadow: 0 10px 24px rgba(34, 24, 21, 0.08);
}

.checkout-hero h1 {
  max-width: none;
  font-size: clamp(2.65rem, 5vw, 4.8rem);
}

.checkout-hero p:not(.section-tag) {
  max-width: 42rem;
  margin: 0.8rem 0 0;
  color: var(--muted);
  font-size: 1rem;
  font-weight: 700;
}

.checkout-layout {
  display: grid;
  grid-template-columns: minmax(22rem, 0.92fr) minmax(0, 1.08fr);
  gap: 1rem;
  align-items: start;
  margin-top: 1rem;
}

.checkout-review,
.checkout-details {
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(219, 233, 216, 0.48), transparent 38%),
    rgba(255, 253, 246, 0.94);
  box-shadow: 0 10px 24px rgba(34, 24, 21, 0.08);
}

.checkout-review {
  position: sticky;
  top: 6.25rem;
}

.checkout-panel-heading {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.8rem;
}

.checkout-panel-heading h2 {
  color: var(--tomato-dark);
  font-size: 2rem;
}

.checkout-panel-heading a {
  flex: 0 0 auto;
  color: var(--basil);
  font-size: 0.86rem;
  font-weight: 900;
  text-decoration: none;
}

.checkout-panel-heading a:hover {
  color: var(--tomato);
}

.checkout-page .cart-items {
  max-height: none;
  min-height: 7rem;
  padding: 0;
  border-bottom: 0;
}

.checkout-page .cart-line {
  background: rgba(255, 248, 232, 0.86);
}

.checkout-total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 0.9rem;
  padding-top: 0.9rem;
  border-top: 1px solid var(--line);
  color: var(--ink);
  font-size: 1.05rem;
  font-weight: 900;
}

.checkout-total strong {
  color: var(--tomato-dark);
  font-family: "Fraunces", Georgia, serif;
  font-size: 2rem;
  line-height: 1;
}

.checkout-note {
  margin: 0.5rem 0 0;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 700;
}

.checkout-order-form {
  gap: 0.9rem;
}

.checkout-actions {
  margin-top: 0.9rem;
  padding-top: 0.9rem;
  border-top: 1px solid var(--line);
}

.checkout-actions .cart-status {
  min-height: 1.25rem;
  margin: 0;
  color: var(--basil);
  font-weight: 900;
}

.pizza-customizer {
  position: fixed;
  inset: 0;
  z-index: 95;
  visibility: hidden;
  pointer-events: none;
}

.pizza-customizer.is-open {
  visibility: visible;
  pointer-events: auto;
}

.pizza-customizer-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(34, 24, 21, 0.52);
  cursor: pointer;
  opacity: 0;
  transition: opacity 180ms ease;
}

.pizza-customizer.is-open .pizza-customizer-backdrop {
  opacity: 1;
}

.pizza-customizer-panel {
  position: absolute;
  top: 50%;
  left: 50%;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
  gap: 0.95rem;
  width: min(58rem, calc(100% - 1.5rem));
  max-height: min(88vh, 48rem);
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(246, 187, 60, 0.22), transparent 34%),
    var(--paper);
  box-shadow: 0 28px 70px rgba(34, 24, 21, 0.26);
  overflow: hidden;
  opacity: 0;
  transform: translate(-50%, -46%) scale(0.98);
  transition: transform 220ms ease, opacity 180ms ease;
}

.pizza-customizer.is-open .pizza-customizer-panel {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.pizza-customizer-close {
  position: absolute;
  top: 0.8rem;
  right: 0.8rem;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.35rem;
  height: 2.35rem;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(255, 253, 246, 0.94);
  color: var(--ink);
  cursor: pointer;
  font-size: 1.35rem;
  line-height: 1;
}

.pizza-customizer-head {
  display: grid;
  grid-template-columns: 10rem minmax(0, 1fr);
  gap: 1rem;
  align-items: center;
  padding-right: 2.8rem;
}

.pizza-customizer-head img {
  width: 100%;
  aspect-ratio: 1.2;
  border: 1px solid rgba(34, 24, 21, 0.14);
  border-radius: calc(var(--radius) - 2px);
  background: #f3dec1;
  object-fit: cover;
}

.pizza-customizer-head h2 {
  color: var(--tomato-dark);
  font-size: clamp(1.85rem, 4vw, 3rem);
  line-height: 1;
}

.pizza-customizer-head p:not(.section-tag) {
  margin-top: 0.5rem;
  color: var(--muted);
  font-weight: 850;
}

.pizza-customizer-options {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.8fr);
  gap: 0.85rem;
  min-height: 0;
  overflow-y: auto;
  padding-right: 0.2rem;
}

.pizza-customizer-group {
  min-width: 0;
  margin: 0;
  padding: 0.85rem;
  border: 1px solid rgba(34, 24, 21, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 253, 246, 0.82);
}

.pizza-customizer-group legend {
  padding: 0 0.25rem;
  color: var(--tomato-dark);
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.2rem;
  font-weight: 800;
}

.pizza-customizer-group p {
  margin: 0.15rem 0 0.7rem;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 800;
}

.pizza-customizer-addon-grid {
  display: grid;
  gap: 0.48rem;
}

.pizza-customizer-addon {
  display: grid;
  grid-template-columns: auto 3.4rem minmax(0, 1fr);
  gap: 0.62rem;
  align-items: center;
  min-height: 3.25rem;
  padding: 0.55rem;
  border: 1px solid rgba(29, 91, 60, 0.18);
  border-radius: calc(var(--radius) - 2px);
  background: #fff8e8;
  cursor: pointer;
  transition: border-color 160ms ease, background 160ms ease, transform 160ms ease;
}

.pizza-customizer-addon:hover,
.pizza-customizer-addon:focus-within {
  border-color: rgba(197, 49, 37, 0.42);
  background: #fff1cf;
  transform: translateY(-1px);
}

.pizza-customizer-addon input {
  width: 1.15rem;
  height: 1.15rem;
  accent-color: var(--tomato);
}

.pizza-customizer-addon-image {
  width: 3.4rem;
  aspect-ratio: 1;
  border: 1px solid rgba(34, 24, 21, 0.12);
  border-radius: 0.55rem;
  background: #f3dec1;
  object-fit: cover;
}

.pizza-customizer-addon span,
.pizza-customizer-addon strong,
.pizza-customizer-addon em {
  display: block;
}

.pizza-customizer-addon strong {
  color: var(--ink);
  font-size: 0.88rem;
  line-height: 1.12;
}

.pizza-customizer-addon em {
  margin-top: 0.12rem;
  color: var(--basil);
  font-size: 0.78rem;
  font-style: normal;
  font-weight: 900;
}

.pizza-customizer-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.9rem;
  padding-top: 0.85rem;
  border-top: 1px solid var(--line);
}

.pizza-customizer-summary span {
  display: block;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.pizza-customizer-summary strong {
  display: block;
  margin-top: 0.12rem;
  color: var(--tomato-dark);
  font-family: "Fraunces", Georgia, serif;
  font-size: 2rem;
  line-height: 1;
}

@keyframes cart-bump {
  0% {
    transform: translateY(0) scale(1);
  }

  40% {
    transform: translateY(-2px) scale(1.045);
  }

  100% {
    transform: translateY(0) scale(1);
  }
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 480ms ease, transform 480ms ease;
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1100px) {
  .site-header {
    flex-wrap: wrap;
    justify-content: center;
  }

  .site-nav {
    order: 3;
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.8rem 1rem;
  }

  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
    padding-top: 1.4rem;
  }

  h1 {
    max-width: 12ch;
    font-size: 3.8rem;
  }

  .section-heading,
  .founder-story,
  .cheesecakes,
  .order-page-hero,
  .orders-page-hero {
    grid-template-columns: 1fr;
  }

  .pizza-card-grid,
  .menu-list,
  .addon-grid,
  .truck-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

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

  .menu-showcase-image img {
    min-height: 0;
    aspect-ratio: 4 / 3;
  }

  .checkout-layout {
    grid-template-columns: 1fr;
  }

  .checkout-review {
    position: static;
  }
}

@media (max-width: 720px) {
  main,
  .site-header,
  .site-footer {
    width: min(100% - 1.2rem, 1480px);
  }

  .site-header {
    top: 0;
    margin-top: 0.6rem;
  }

  .brand {
    min-width: 0;
  }

  .brand-text {
    font-size: 0.96rem;
  }

  .brand-logo-shell {
    width: 3.65rem;
    height: 3.65rem;
  }

  h1 {
    font-size: 3.1rem;
  }

  .policy-hero h1 {
    font-size: 2.45rem;
  }

  h2 {
    font-size: 2rem;
  }

  .hero {
    padding-top: 1rem;
  }

  .hero-visual {
    aspect-ratio: 4 / 3;
  }

  .hero-visual.logo-seal::before {
    inset: 0.65rem;
  }

  .hero-visual.logo-seal::after {
    width: 72%;
  }

  .hero-visual.logo-seal .hero-seal {
    width: 66%;
  }

  .product-strip,
  .pizza-feature-grid,
  .dessert-grid,
  .quick-order-grid {
    grid-template-columns: 1fr;
  }

  .menu-pills {
    margin-top: 0.9rem;
  }

  .story-page-intro {
    padding-top: 2.1rem;
  }

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

  .story-signature {
    min-height: 15rem;
    background-size: min(68%, 13rem);
  }

  .feature-card img {
    height: 19rem;
  }

  .pizza-card {
    min-height: 0;
    padding: 0;
  }

  .pizza-thumb {
    min-height: clamp(12rem, 58vw, 20rem);
  }

  .pizza-thumb img {
    min-height: 100%;
  }

  .addon-panel {
    padding: 0.8rem;
  }

  .addon-list {
    max-height: 15.6rem;
  }

  .addon-list li {
    min-height: 3.9rem;
    gap: 0.5rem;
    font-size: 0.86rem;
  }

  .addon-list strong {
    font-size: 0.82rem;
  }

  .addon-list button {
    min-height: 1.75rem;
    padding: 0.25rem 0.48rem;
  }

  .addon-preview {
    grid-template-columns: 5.8rem minmax(0, 1fr);
    min-height: 6.2rem;
  }

  .addon-preview img {
    height: 5.2rem;
  }

  .pizza-card:hover,
  .pizza-card:focus-within {
    transform: none;
  }

  .pizza-card-actions {
    position: static;
    margin: 0 1rem 1rem;
    padding: 0.75rem;
    border: 1px solid rgba(34, 24, 21, 0.12);
    border-radius: var(--radius);
    transform: none;
  }

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

  .price-trio {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    min-width: 0;
  }

  .price-trio span {
    padding-inline: 0.35rem;
    font-size: 0.82rem;
  }

  .hours-card li {
    flex-direction: column;
    gap: 0.15rem;
  }

  .footer-compliance {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-brand-lockup {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .fssai-logo {
    width: 8rem;
    max-width: 70vw;
  }

  .footer-compliance-copy {
    text-align: center;
  }

  .fssai-number {
    font-size: 1.08rem;
  }

  .order-success-banner,
  .customer-order-meta {
    grid-template-columns: 1fr;
  }

  .order-page-hero,
  .orders-page-hero {
    padding: 0.85rem;
  }

  .order-page-success {
    min-height: 0;
  }

  .order-page-actions {
    justify-content: flex-start;
  }

  .order-success-icon {
    width: 3.5rem;
    height: 3.5rem;
  }

  .customer-order-card-header {
    flex-direction: column;
  }

  .customer-order-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .order-mode-fieldset,
  .scheduled-fields,
  .customer-fields {
    grid-template-columns: 1fr;
  }

  .checkout-hero,
  .checkout-review,
  .checkout-details {
    padding: 0.85rem;
  }

  .checkout-hero h1 {
    font-size: 2.8rem;
  }

  .checkout-panel-heading {
    flex-direction: column;
    gap: 0.35rem;
  }

  .pizza-customizer-panel {
    width: min(100% - 1rem, 58rem);
    max-height: 92vh;
    padding: 0.85rem;
  }

  .pizza-customizer-head,
  .pizza-customizer-options {
    grid-template-columns: 1fr;
  }

  .pizza-customizer-head {
    padding-right: 2.4rem;
  }

  .pizza-customizer-head img {
    max-height: 10rem;
  }

  .pizza-customizer-summary {
    align-items: stretch;
    flex-direction: column;
  }

  .pizza-customizer-summary .btn {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .size-option-grid {
    grid-template-columns: 1fr;
  }

  .size-option-grid button {
    grid-template-columns: 2.6rem minmax(0, 1fr) auto;
    align-items: center;
    min-height: 3.1rem;
    text-align: left;
  }

  .size-option-grid em {
    text-align: right;
  }

  .cart-panel {
    width: 100%;
  }

  .cart-sauce-grid {
    grid-template-columns: 1fr;
  }

  .cart-smart-card {
    grid-template-columns: 4rem minmax(0, 1fr);
  }

  .cart-smart-card img {
    width: 4rem;
  }

  .cart-smart-copy p {
    font-size: 0.74rem;
  }

  .cart-line-main,
  .cart-line-controls {
    flex-direction: column;
    align-items: stretch;
  }

  .cart-remove {
    width: 100%;
  }

  .pizza-customizer-addon {
    grid-template-columns: auto 3rem minmax(0, 1fr);
    min-height: 3rem;
  }

  .pizza-customizer-addon-image {
    width: 3rem;
  }
}
