:root {
  --purple-950: #2c082f;
  --purple-900: #431047;
  --purple-800: #59165f;
  --purple-700: #702477;
  --purple-100: #f1e5f2;
  --pink: #f12687;
  --pink-dark: #cc176e;
  --orange: #ff681e;
  --yellow: #ffd84d;
  --cream: #fff8ee;
  --paper: #fffdf9;
  --ink: #261a26;
  --muted: #756a74;
  --line: #e8dee5;
  --white: #ffffff;
  --shadow: 0 20px 55px rgba(67, 16, 71, 0.16);
  --radius-sm: 14px;
  --radius-md: 22px;
  --radius-lg: 34px;
  --page: min(1180px, calc(100% - 40px));
}

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "DM Sans", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  overflow-x: hidden;
}

body.no-scroll {
  overflow: hidden;
}

button,
input,
textarea {
  font: inherit;
}

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

a {
  color: inherit;
}

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

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3,
.brand,
.primary-button,
.cart-button,
.checkout-button,
.add-button {
  font-family: "Baloo 2", "Trebuchet MS", sans-serif;
}

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

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 10px;
  left: 10px;
  padding: 10px 14px;
  color: var(--white);
  background: var(--purple-950);
  border-radius: 8px;
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  color: var(--white);
  background: rgba(44, 8, 47, 0.94);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(18px);
}

.header-inner {
  width: var(--page);
  min-height: 76px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  text-decoration: none;
}

.brand-mark {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  color: var(--purple-950);
  background: var(--orange);
  border: 3px solid var(--pink);
  border-radius: 50% 44% 50% 42%;
  font-family: "Baloo 2", sans-serif;
  font-size: 1.35rem;
  font-weight: 800;
  line-height: 1;
  transform: rotate(-6deg);
  box-shadow: 3px 3px 0 var(--yellow);
}

.brand-copy {
  display: flex;
  align-items: baseline;
  gap: 4px;
  line-height: 1;
}

.brand-copy b {
  font-size: 1.45rem;
}

.brand-copy small {
  font-family: "DM Sans", sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-left: auto;
}

.main-nav a {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.92rem;
  font-weight: 600;
  text-decoration: none;
  transition: color 160ms ease;
}

.main-nav a:hover,
.main-nav a:focus-visible {
  color: var(--yellow);
}

.cart-button {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px 8px 16px;
  color: var(--purple-950);
  background: var(--yellow);
  border: 0;
  border-radius: 999px;
  font-weight: 800;
  cursor: pointer;
}

.cart-button svg {
  width: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}

.cart-button b {
  min-width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--purple-900);
  border-radius: 50%;
  font-family: "DM Sans", sans-serif;
  font-size: 0.78rem;
}

.hero {
  position: relative;
  isolation: isolate;
  min-height: 630px;
  display: grid;
  align-items: center;
  color: var(--white);
  overflow: hidden;
  background: var(--purple-950);
}

.hero-image,
.hero-shade {
  position: absolute;
  z-index: -2;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
  object-position: center;
}

.hero-shade {
  z-index: -1;
  background: linear-gradient(90deg, rgba(38, 6, 42, 0.96) 0%, rgba(45, 8, 49, 0.8) 42%, rgba(45, 8, 49, 0.08) 68%, rgba(45, 8, 49, 0.16) 100%);
}

.hero-content {
  width: var(--page);
  margin: 0 auto;
  padding: 86px 0 120px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 14px;
  color: var(--yellow);
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  font-size: 0.84rem;
  font-weight: 700;
}

.eyebrow span {
  color: var(--orange);
}

.hero h1 {
  max-width: 720px;
  margin: 24px 0 14px;
  font-size: clamp(3.5rem, 7.5vw, 6.5rem);
  line-height: 0.86;
  letter-spacing: -0.055em;
}

.hero h1 em {
  color: var(--orange);
  font-style: normal;
}

.hero-content > p {
  max-width: 570px;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.08rem;
  line-height: 1.7;
}

.hero-actions,
.location-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 18px;
}

.primary-button,
.outline-button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 800;
  text-decoration: none;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.primary-button {
  color: var(--purple-950);
  background: var(--yellow);
  box-shadow: 0 10px 24px rgba(255, 216, 77, 0.22);
}

.primary-button span,
.text-link span,
.signature-copy a span {
  font-size: 1.2em;
}

.primary-button:hover,
.primary-button:focus-visible,
.outline-button:hover,
.outline-button:focus-visible {
  transform: translateY(-2px);
}

.text-link {
  color: var(--white);
  font-weight: 700;
  text-underline-offset: 5px;
}

.hero-card {
  position: absolute;
  right: max(20px, calc((100% - 1180px) / 2));
  bottom: 32px;
  width: min(340px, calc(100% - 40px));
  padding: 22px 24px;
  color: var(--ink);
  background: rgba(255, 253, 249, 0.94);
  border-radius: 22px 8px 22px 22px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
}

.hero-card div {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 8px;
}

.hero-card p {
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 0.88rem;
}

.hero-card a {
  color: var(--purple-800);
  font-weight: 800;
}

.status-dot {
  width: 10px;
  height: 10px;
  background: #33b864;
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(51, 184, 100, 0.15);
}

.quick-facts {
  position: relative;
  z-index: 2;
  width: var(--page);
  margin: -1px auto 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--white);
  border-radius: 0 0 24px 24px;
  box-shadow: 0 16px 40px rgba(57, 19, 57, 0.1);
}

.quick-facts article {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 22px 20px;
  border-right: 1px solid var(--line);
}

.quick-facts article:last-child {
  border-right: 0;
}

.fact-icon {
  width: 38px;
  height: 38px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  color: var(--pink-dark);
  background: #fff0f7;
  border-radius: 12px;
  font-size: 1.2rem;
  font-weight: 900;
}

.quick-facts div {
  min-width: 0;
  display: grid;
}

.quick-facts b {
  font-size: 0.95rem;
}

.quick-facts small {
  color: var(--muted);
  font-size: 0.74rem;
  white-space: nowrap;
}

.menu-section {
  width: var(--page);
  padding: 106px 0 112px;
}

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

.kicker {
  display: block;
  margin-bottom: 5px;
  color: var(--pink-dark);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.kicker.light {
  color: var(--yellow);
}

.section-heading h2,
.signature-copy h2,
.location-card h2 {
  margin-bottom: 0;
  font-size: clamp(2.15rem, 4vw, 3.55rem);
  line-height: 1;
  letter-spacing: -0.035em;
}

.search-box {
  width: min(350px, 100%);
  height: 52px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 16px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 999px;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.search-box:focus-within {
  border-color: var(--purple-700);
  box-shadow: 0 0 0 4px rgba(112, 36, 119, 0.1);
}

.search-box svg {
  width: 20px;
  flex: 0 0 auto;
  fill: none;
  stroke: var(--purple-700);
  stroke-width: 2;
}

.search-box input {
  width: 100%;
  color: var(--ink);
  background: transparent;
  border: 0;
  outline: 0;
}

.category-tabs {
  display: flex;
  gap: 10px;
  padding: 4px 0 24px;
  overflow-x: auto;
  scrollbar-width: none;
}

.category-tabs::-webkit-scrollbar {
  display: none;
}

.category-tab {
  flex: 0 0 auto;
  padding: 10px 17px;
  color: var(--purple-800);
  background: var(--purple-100);
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 700;
  cursor: pointer;
}

.category-tab[aria-selected="true"] {
  color: var(--white);
  background: var(--purple-800);
  box-shadow: 0 8px 20px rgba(89, 22, 95, 0.22);
}

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

.product-card {
  position: relative;
  min-height: 220px;
  display: flex;
  flex-direction: column;
  padding: 23px;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.product-card:hover {
  transform: translateY(-3px);
  border-color: rgba(112, 36, 119, 0.35);
  box-shadow: 0 18px 40px rgba(67, 16, 71, 0.1);
}

.product-card.featured {
  color: var(--white);
  background: var(--purple-800);
  border-color: var(--purple-800);
}

.product-card.featured::after {
  content: "";
  position: absolute;
  top: -36px;
  right: -22px;
  width: 135px;
  height: 135px;
  background: var(--pink);
  border: 18px solid var(--orange);
  border-radius: 50%;
  opacity: 0.26;
}

.product-badge {
  align-self: flex-start;
  margin-bottom: 17px;
  padding: 5px 9px;
  color: var(--pink-dark);
  background: #fff0f7;
  border-radius: 7px;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.featured .product-badge {
  color: var(--purple-950);
  background: var(--yellow);
}

.product-card h3 {
  position: relative;
  z-index: 1;
  margin-bottom: 8px;
  font-size: 1.45rem;
  line-height: 1.05;
}

.product-card p {
  position: relative;
  z-index: 1;
  margin-bottom: 22px;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.52;
}

.featured p {
  color: rgba(255, 255, 255, 0.74);
}

.product-card footer {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 12px;
  margin-top: auto;
}

.product-price {
  display: grid;
  color: var(--purple-800);
  font-weight: 800;
}

.featured .product-price {
  color: var(--yellow);
}

.product-price small {
  color: var(--muted);
  font-size: 0.67rem;
  font-weight: 500;
}

.featured .product-price small {
  color: rgba(255, 255, 255, 0.66);
}

.product-card button {
  min-width: 112px;
  padding: 10px 14px;
  color: var(--white);
  background: var(--pink);
  border: 0;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 800;
  cursor: pointer;
}

.featured button {
  color: var(--purple-950);
  background: var(--yellow);
}

.empty-state {
  padding: 70px 20px;
  text-align: center;
  background: var(--cream);
  border: 1px dashed #d9c6d8;
  border-radius: var(--radius-md);
}

.empty-state span {
  display: block;
  color: var(--pink);
  font-size: 3rem;
}

.empty-state h3 {
  margin-bottom: 4px;
  font-size: 1.5rem;
}

.empty-state p {
  color: var(--muted);
}

.empty-state button,
.cart-empty button {
  color: var(--purple-800);
  background: transparent;
  border: 0;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 4px;
  cursor: pointer;
}

.signature-section {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 70px;
  padding: 100px max(20px, calc((100% - 1180px) / 2));
  color: var(--white);
  background: var(--purple-900);
  overflow: hidden;
}

.signature-section::before {
  content: "OBA!";
  position: absolute;
  z-index: -1;
  right: -1vw;
  bottom: -12vw;
  color: rgba(255, 255, 255, 0.035);
  font-family: "Baloo 2", sans-serif;
  font-size: 25vw;
  font-weight: 800;
  line-height: 1;
  transform: rotate(-9deg);
}

.signature-copy p {
  max-width: 570px;
  margin: 20px 0 26px;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.75;
}

.signature-copy a {
  color: var(--yellow);
  font-weight: 800;
  text-underline-offset: 5px;
}

.signature-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-self: center;
  padding: 30px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.signature-stats article {
  min-width: 0;
  padding: 10px 24px;
  border-right: 1px solid rgba(255, 255, 255, 0.18);
}

.signature-stats article:first-child {
  padding-left: 0;
}

.signature-stats article:last-child {
  padding-right: 0;
  border-right: 0;
}

.signature-stats strong {
  display: block;
  color: var(--orange);
  font-family: "Baloo 2", sans-serif;
  font-size: clamp(2.2rem, 4vw, 4.4rem);
  line-height: 1;
}

.signature-stats span {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.76rem;
  line-height: 1.35;
}

.location-section {
  width: var(--page);
  margin: 100px auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
  background: var(--cream);
  border: 1px solid #f0e1d6;
  border-radius: var(--radius-lg);
}

.location-card {
  padding: clamp(34px, 6vw, 70px);
}

.location-card p {
  margin: 20px 0 28px;
  color: var(--muted);
  line-height: 1.75;
}

.primary-button.dark {
  color: var(--white);
  background: var(--purple-800);
  box-shadow: none;
}

.outline-button {
  color: var(--purple-800);
  background: transparent;
  border: 1px solid #c9b7c8;
}

.location-art {
  position: relative;
  min-height: 400px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--white);
  background: var(--pink);
  overflow: hidden;
}

.location-art::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,.28) 1px, transparent 1px);
  background-size: 18px 18px;
  mask-image: linear-gradient(to bottom, transparent, black 20%, black 80%, transparent);
}

.pin {
  position: relative;
  z-index: 3;
  width: 76px;
  height: 76px;
  display: grid;
  place-items: center;
  color: var(--purple-950);
  background: var(--yellow);
  border: 6px solid var(--white);
  border-radius: 50% 50% 50% 8px;
  font-family: "Baloo 2", sans-serif;
  font-size: 1.7rem;
  font-weight: 800;
  transform: rotate(-45deg);
  box-shadow: 0 14px 30px rgba(67, 16, 71, 0.25);
}

.pin::first-letter {
  transform: rotate(45deg);
}

.location-art b,
.location-art small {
  position: relative;
  z-index: 3;
}

.location-art b {
  margin-top: 25px;
  font-family: "Baloo 2", sans-serif;
  font-size: 1.5rem;
}

.location-art small {
  color: rgba(255,255,255,.75);
}

.road {
  position: absolute;
  z-index: 1;
  height: 16px;
  background: rgba(112, 36, 119, 0.48);
  border: 4px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
}

.road-one { width: 145%; transform: rotate(-22deg); }
.road-two { width: 120%; transform: rotate(34deg) translateY(80px); }
.road-three { width: 90%; transform: rotate(-54deg) translateY(-110px); }

.site-footer {
  min-height: 150px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 30px;
  padding: 38px max(20px, calc((100% - 1180px) / 2));
  color: var(--white);
  background: var(--purple-950);
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.footer-brand div {
  display: grid;
}

.footer-brand small,
.site-footer p {
  color: rgba(255, 255, 255, 0.6);
}

.site-footer p {
  margin: 0;
  font-size: 0.78rem;
  text-align: center;
}

.footer-links {
  display: flex;
  justify-content: flex-end;
  gap: 18px;
}

.footer-links a {
  font-size: 0.86rem;
  font-weight: 700;
  text-underline-offset: 4px;
}

.drawer-backdrop {
  position: fixed;
  z-index: 90;
  inset: 0;
  background: rgba(35, 9, 37, 0.48);
  backdrop-filter: blur(3px);
}

.cart-drawer {
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  width: min(450px, 100%);
  height: 100dvh;
  display: flex;
  flex-direction: column;
  background: var(--paper);
  box-shadow: -20px 0 50px rgba(44, 8, 47, 0.2);
  transform: translateX(105%);
  transition: transform 220ms cubic-bezier(.22,.77,.28,1);
}

.cart-drawer.open {
  transform: translateX(0);
}

.cart-drawer > header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px;
  border-bottom: 1px solid var(--line);
}

.cart-drawer h2 {
  margin: 0;
  font-size: 2rem;
  line-height: 1;
}

.icon-button {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  color: var(--purple-800);
  background: var(--purple-100);
  border: 0;
  border-radius: 50%;
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
}

.cart-items {
  flex: 1;
  padding: 12px 24px;
  overflow-y: auto;
}

.cart-item {
  display: grid;
  grid-template-columns: 44px 1fr auto;
  gap: 12px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.cart-item-symbol {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--purple-800);
  border-radius: 14px;
  font-family: "Baloo 2", sans-serif;
  font-weight: 800;
}

.cart-item h3 {
  margin: 0 0 3px;
  font-family: "DM Sans", sans-serif;
  font-size: 0.92rem;
}

.cart-item p {
  margin: 0;
  color: var(--muted);
  font-size: 0.75rem;
}

.cart-item strong {
  color: var(--purple-800);
  font-size: 0.88rem;
}

.remove-item {
  margin-top: 7px;
  padding: 0;
  color: var(--pink-dark);
  background: transparent;
  border: 0;
  font-size: 0.72rem;
  text-decoration: underline;
  cursor: pointer;
}

.cart-empty {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 30px;
  text-align: center;
}

.cart-empty > span {
  color: var(--pink);
  font-size: 3.5rem;
}

.cart-empty h3 {
  margin-bottom: 3px;
  font-size: 1.5rem;
}

.cart-empty p {
  color: var(--muted);
}

.cart-summary {
  padding: 22px 24px calc(22px + env(safe-area-inset-bottom));
  background: var(--white);
  border-top: 1px solid var(--line);
}

.cart-summary > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 4px;
}

.cart-summary strong {
  color: var(--purple-800);
  font-size: 1.15rem;
}

.cart-summary small {
  display: block;
  margin-bottom: 16px;
  color: var(--muted);
  font-size: 0.72rem;
}

.checkout-button {
  width: 100%;
  min-height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--white);
  background: var(--purple-800);
  border: 0;
  border-radius: 999px;
  font-weight: 800;
  cursor: pointer;
}

.product-modal {
  width: min(660px, calc(100% - 30px));
  max-height: min(880px, calc(100dvh - 30px));
  padding: 0;
  color: var(--ink);
  background: var(--paper);
  border: 0;
  border-radius: 28px;
  box-shadow: 0 30px 90px rgba(44, 8, 47, 0.35);
  overflow: hidden;
}

.product-modal::backdrop {
  background: rgba(35, 9, 37, 0.64);
  backdrop-filter: blur(4px);
}

.product-modal form {
  position: relative;
  max-height: min(880px, calc(100dvh - 30px));
  padding: 28px;
  overflow-y: auto;
}

.modal-close {
  position: absolute;
  z-index: 2;
  top: 20px;
  right: 20px;
}

.modal-top {
  display: grid;
  grid-template-columns: 82px 1fr;
  gap: 20px;
  align-items: center;
  padding-right: 38px;
}

.product-symbol {
  width: 82px;
  height: 82px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--purple-800);
  border: 8px solid #ead7e9;
  border-radius: 28px 18px 28px 18px;
  font-family: "Baloo 2", sans-serif;
  font-size: 1.9rem;
  font-weight: 800;
  transform: rotate(-3deg);
}

.modal-top h2 {
  margin-bottom: 4px;
  font-size: 2rem;
  line-height: 1;
}

.modal-top p {
  margin: 0;
  color: var(--muted);
  font-size: 0.86rem;
}

.product-modal fieldset {
  margin: 26px 0 0;
  padding: 0;
  border: 0;
}

.product-modal legend,
.note-field > span {
  display: block;
  margin-bottom: 10px;
  font-weight: 800;
}

.product-modal legend small {
  margin-left: 4px;
  color: var(--muted);
  font-weight: 500;
}

.size-options {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 9px;
}

.size-option input,
.extra-option input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.size-option span {
  min-height: 62px;
  display: grid;
  place-items: center;
  padding: 8px;
  color: var(--purple-800);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
  font-size: 0.78rem;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  cursor: pointer;
}

.size-option small {
  display: block;
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 600;
}

.size-option input:checked + span {
  color: var(--white);
  background: var(--purple-800);
  border-color: var(--purple-800);
  box-shadow: 0 8px 20px rgba(89, 22, 95, 0.2);
}

.size-option input:checked + span small {
  color: rgba(255, 255, 255, 0.78);
}

.size-option input:focus-visible + span,
.extra-option input:focus-visible + span {
  outline: 3px solid rgba(241, 38, 135, 0.3);
  outline-offset: 2px;
}

.extra-options {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.extra-option span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  color: var(--purple-800);
  background: var(--purple-100);
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 700;
  cursor: pointer;
}

.extra-option span::before {
  content: "+";
  font-weight: 900;
}

.extra-option input:checked + span {
  color: var(--white);
  background: var(--pink);
}

.extra-option input:checked + span::before {
  content: "✓";
}

.extra-option input:disabled + span {
  opacity: 0.45;
  cursor: not-allowed;
}

.field-hint {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 0.72rem;
}

.note-field {
  display: block;
  margin-top: 24px;
}

.note-field textarea {
  width: 100%;
  resize: vertical;
  padding: 13px 14px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
  outline: 0;
}

.note-field textarea:focus {
  border-color: var(--purple-700);
  box-shadow: 0 0 0 4px rgba(112, 36, 119, 0.1);
}

.modal-action-row {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  margin-top: 25px;
}

.quantity-control {
  display: grid;
  grid-template-columns: 42px 36px 42px;
  align-items: center;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 999px;
}

.quantity-control button {
  height: 48px;
  color: var(--purple-800);
  background: transparent;
  border: 0;
  font-size: 1.3rem;
  cursor: pointer;
}

.quantity-control output {
  font-weight: 800;
  text-align: center;
}

.add-button {
  min-height: 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 18px;
  color: var(--white);
  background: var(--purple-800);
  border: 0;
  border-radius: 999px;
  font-weight: 800;
  cursor: pointer;
}

.add-button:disabled {
  opacity: 0.55;
  cursor: not-allowed;
}

.mobile-cart {
  position: fixed;
  z-index: 60;
  right: 14px;
  bottom: calc(14px + env(safe-area-inset-bottom));
  left: 14px;
  min-height: 58px;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 8px 18px;
  color: var(--white);
  background: var(--purple-900);
  border: 0;
  border-radius: 999px;
  box-shadow: 0 16px 35px rgba(44, 8, 47, 0.38);
  cursor: pointer;
}

.mobile-cart span,
.mobile-cart strong {
  font-size: 0.82rem;
}

.mobile-cart strong {
  font-family: "Baloo 2", sans-serif;
  font-size: 1rem;
}

.toast {
  position: fixed;
  z-index: 200;
  left: 50%;
  bottom: 26px;
  padding: 11px 18px;
  color: var(--white);
  background: var(--purple-950);
  border-radius: 999px;
  font-size: 0.86rem;
  font-weight: 700;
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 20px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.toast.show {
  opacity: 1;
  transform: translate(-50%, 0);
}

@media (max-width: 960px) {
  .main-nav {
    display: none;
  }

  .hero {
    min-height: 700px;
    align-items: end;
  }

  .hero-image {
    object-position: 62% center;
  }

  .hero-shade {
    background: linear-gradient(0deg, rgba(38, 6, 42, 0.98) 0%, rgba(45, 8, 49, 0.82) 46%, rgba(45, 8, 49, 0.12) 82%);
  }

  .hero-content {
    padding: 260px 0 150px;
  }

  .hero-card {
    right: auto;
    bottom: 28px;
    left: max(20px, calc((100% - 1180px) / 2));
  }

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

  .quick-facts article:nth-child(2) {
    border-right: 0;
  }

  .quick-facts article:nth-child(-n+2) {
    border-bottom: 1px solid var(--line);
  }

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

  .signature-section {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .location-section {
    grid-template-columns: 1fr;
  }

  .location-art {
    min-height: 310px;
  }

  .site-footer {
    grid-template-columns: 1fr auto;
  }

  .site-footer p {
    display: none;
  }
}

@media (max-width: 650px) {
  :root {
    --page: min(100% - 28px, 1180px);
  }

  html {
    scroll-padding-top: 72px;
  }

  .header-inner {
    min-height: 68px;
  }

  .brand-mark {
    width: 40px;
    height: 40px;
    font-size: 1.15rem;
  }

  .brand-copy small,
  .cart-button span,
  .cart-button svg {
    display: none;
  }

  .cart-button {
    min-height: 40px;
    padding: 6px;
    background: transparent;
  }

  .cart-button b {
    background: var(--yellow);
    color: var(--purple-950);
  }

  .hero {
    min-height: 710px;
  }

  .hero-image {
    height: 48%;
    object-position: 68% center;
  }

  .hero-shade {
    background: linear-gradient(0deg, rgba(38, 6, 42, 1) 0%, rgba(45, 8, 49, 0.96) 52%, rgba(45, 8, 49, 0.12) 100%);
  }

  .hero-content {
    padding: 320px 0 158px;
  }

  .eyebrow {
    padding: 8px 11px;
    font-size: 0.7rem;
  }

  .hero h1 {
    margin-top: 20px;
    font-size: clamp(3.15rem, 16vw, 4.7rem);
  }

  .hero-content > p {
    margin-bottom: 23px;
    font-size: 0.94rem;
    line-height: 1.6;
  }

  .hero-actions {
    gap: 14px;
  }

  .primary-button {
    min-height: 48px;
    padding: 10px 17px;
  }

  .text-link {
    font-size: 0.86rem;
  }

  .hero-card {
    bottom: 18px;
    left: 14px;
    width: calc(100% - 28px);
    padding: 15px 18px;
    border-radius: 17px 6px 17px 17px;
  }

  .hero-card p {
    display: none;
  }

  .quick-facts {
    margin-top: 0;
    border-radius: 0 0 18px 18px;
  }

  .quick-facts article {
    padding: 16px 12px;
    gap: 9px;
  }

  .fact-icon {
    width: 32px;
    height: 32px;
    font-size: 1rem;
  }

  .quick-facts b {
    font-size: 0.82rem;
  }

  .quick-facts small {
    max-width: 110px;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 0.66rem;
  }

  .menu-section {
    padding: 74px 0 78px;
  }

  .section-heading {
    align-items: stretch;
    flex-direction: column;
    gap: 20px;
  }

  .search-box {
    width: 100%;
  }

  .menu-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .product-card {
    min-height: 190px;
    padding: 19px;
    border-radius: 18px;
  }

  .product-badge {
    margin-bottom: 13px;
  }

  .product-card h3 {
    font-size: 1.35rem;
  }

  .signature-section {
    padding: 72px 20px;
  }

  .signature-stats {
    grid-template-columns: 1fr;
    padding: 0;
    border: 0;
  }

  .signature-stats article,
  .signature-stats article:first-child,
  .signature-stats article:last-child {
    display: flex;
    align-items: center;
    gap: 17px;
    padding: 16px 0;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  }

  .signature-stats article:last-child {
    border-bottom: 0;
  }

  .signature-stats strong {
    min-width: 110px;
    font-size: 2.8rem;
  }

  .signature-stats br {
    display: none;
  }

  .location-section {
    margin: 70px auto;
    border-radius: 24px;
  }

  .location-card {
    padding: 36px 24px;
  }

  .location-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .location-art {
    min-height: 270px;
  }

  .site-footer {
    min-height: auto;
    grid-template-columns: 1fr;
    padding-bottom: 100px;
  }

  .footer-links {
    justify-content: flex-start;
  }

  .mobile-cart:not([hidden]) {
    display: flex;
  }

  .product-modal {
    width: 100%;
    max-height: 92dvh;
    margin: auto 0 0;
    border-radius: 26px 26px 0 0;
  }

  .product-modal form {
    max-height: 92dvh;
    padding: 24px 18px calc(22px + env(safe-area-inset-bottom));
  }

  .modal-top {
    grid-template-columns: 62px 1fr;
    gap: 13px;
    padding-right: 30px;
  }

  .product-symbol {
    width: 62px;
    height: 62px;
    border-width: 6px;
    border-radius: 20px 13px 20px 13px;
    font-size: 1.4rem;
  }

  .modal-top h2 {
    font-size: 1.55rem;
  }

  .modal-top p {
    font-size: 0.76rem;
  }

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

  .modal-action-row {
    grid-template-columns: 130px 1fr;
    gap: 9px;
  }

  .quantity-control {
    grid-template-columns: 40px 40px 40px;
  }

  .add-button {
    padding: 8px 13px;
    font-size: 0.82rem;
  }

  .toast {
    bottom: 86px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
