:root {
  --bg: #ffffff;
  --surface: #fbfaf7;
  --surface-strong: #201d1c;
  --text: #292929;
  --muted: #6f6f6f;
  --border: #ddd8d2;
  --brand-red: #da291c;
  --brand-yellow: #ffbc0d;
  --brand-gold: #ffc72c;
  --success: #11845b;
  --danger: #b42318;
  --container: 1180px;
  --shadow-soft: 0 16px 34px rgba(17, 15, 14, 0.08);
  --shadow-strong: 0 28px 44px rgba(17, 15, 14, 0.14);
  --radius-lg: 30px;
  --radius-md: 20px;
  --radius-sm: 14px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.55;
}

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

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

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

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

.skip-link,
.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:focus {
  top: 1rem;
  left: 1rem;
  width: auto;
  height: auto;
  clip: auto;
  margin: 0;
  padding: 0.85rem 1rem;
  background: #000;
  color: #fff;
  border-radius: 10px;
  z-index: 1000;
}

.container {
  width: min(calc(100% - 2rem), var(--container));
  margin: 0 auto;
}

.site-main {
  min-height: 60vh;
}

.eyebrow,
.overline {
  margin: 0 0 0.7rem;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

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

.overline {
  color: var(--muted);
}

.button,
.notice-button,
.qty-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease,
    color 0.2s ease, box-shadow 0.2s ease;
}

.button:hover,
.button:focus-visible,
.notice-button:hover,
.notice-button:focus-visible,
.qty-button:hover,
.qty-button:focus-visible {
  transform: translateY(-1px);
}

.button {
  min-height: 40px;
  padding: 0.58rem 1.15rem;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  white-space: nowrap;
}

.button-primary {
  background: var(--brand-yellow);
  color: #1f1f1f;
  box-shadow: 0 2px 6px rgba(255, 188, 13, 0.28);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: #f5b000;
  box-shadow: 0 4px 12px rgba(255, 188, 13, 0.38);
}

.button-secondary {
  background: #fff;
  color: var(--text);
  border-color: rgba(41, 41, 41, 0.14);
  box-shadow: 0 1px 3px rgba(17, 15, 14, 0.04);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  border-color: rgba(41, 41, 41, 0.22);
  background: #fafafa;
}

.button-sm {
  min-height: 36px;
  padding: 0.48rem 0.95rem;
  font-size: 0.84rem;
}

.button-ghost {
  min-height: auto;
  padding: 0.35rem 0;
  background: transparent;
  border-color: transparent;
  color: var(--brand-red);
  font-weight: 600;
  box-shadow: none;
}

.button-ghost:hover,
.button-ghost:focus-visible {
  color: #b61d11;
  transform: none;
  background: transparent;
}

.button-outline {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.24);
}

.button-full {
  width: 100%;
}

.notice-bar {
  background: #f2f2f2;
  border-bottom: 1px solid #e3e3e3;
}

.notice-content,
.utility-content,
.main-nav,
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.notice-content {
  min-height: 46px;
  padding: 0.35rem 0;
}

.notice-copy {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 0.85rem;
  color: #4d4d4d;
}

.notice-copy p {
  margin: 0;
}

.notice-icon {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--brand-red);
  color: #fff;
  font-size: 0.76rem;
  font-weight: 800;
}

.notice-button {
  min-height: 38px;
  padding: 0.55rem 1rem;
  background: #fff;
  border-color: #d4d4d4;
  font-weight: 700;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(41, 41, 41, 0.08);
  overflow: visible;
  transform: none;
  filter: none;
}

.main-nav-wrapper {
  position: relative;
  overflow: visible;
}

.utility-bar {
  border-bottom: 1px solid rgba(41, 41, 41, 0.08);
}

.utility-content {
  min-height: 40px;
  font-size: 0.84rem;
  color: var(--muted);
}

.utility-links,
.utility-actions,
.primary-nav,
.footer-legal {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.main-nav {
  position: relative;
  min-height: 80px;
  gap: 1.2rem;
  overflow: visible;
}

.brand {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  padding: 0.35rem 0.5rem 0.35rem 0;
  margin-right: 0.25rem;
  border-radius: 8px;
  transition: opacity 0.2s ease;
}

.brand:hover {
  opacity: 0.85;
}

.brand-logo {
  display: block;
  height: 42px;
  width: auto;
  max-width: min(200px, 38vw);
  object-fit: contain;
  object-position: left center;
}

.footer-brand-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 0 0 2rem;
  margin-bottom: 0.25rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.07);
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  transition: opacity 0.2s ease;
}

.footer-brand:hover {
  opacity: 0.82;
}

.footer-brand-logo {
  display: block;
  height: 50px;
  width: auto;
  max-width: 240px;
  object-fit: contain;
}

.footer-brand-tagline {
  margin: 0;
  max-width: 28ch;
  text-align: right;
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.45;
}

@media (max-width: 959px) {
  .brand-logo {
    height: 38px;
    max-width: min(180px, 52vw);
  }

  .footer-brand-bar {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.85rem;
    padding-bottom: 1.5rem;
  }

  .footer-brand-tagline {
    text-align: left;
    max-width: none;
  }

  .footer-brand-logo {
    height: 44px;
  }
}

@media (max-width: 700px) {
  .brand-logo {
    height: 34px;
    max-width: 160px;
  }
}

.primary-nav {
  flex: 1;
  flex-wrap: nowrap;
  justify-content: center;
  gap: 0.85rem;
  white-space: nowrap;
  font-size: 0.92rem;
}

.nav-item {
  position: relative;
}

@media (min-width: 960px) {
  .nav-item--menu {
    position: static;
    z-index: 46;
  }

  .nav-item--menu::before {
    content: "";
    position: absolute;
    left: 50%;
    top: calc(100% - 6px);
    width: min(880px, calc(100vw - 2rem));
    height: 22px;
    transform: translateX(-50%);
    z-index: 44;
  }
}

.nav-link--menu {
  cursor: pointer;
  font: inherit;
  text-align: left;
}

.nav-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  border: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
}

.nav-link:hover,
.nav-link.is-active,
.utility-content a:hover,
.footer-column a:hover,
.footer-legal a:hover {
  color: var(--brand-red);
}

.nav-item--menu .nav-link::after {
  content: "";
  width: 7px;
  height: 7px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  transition: transform 0.2s ease;
}

.nav-item--menu:hover .nav-link--menu {
  color: var(--brand-red);
}

.nav-item--menu:hover .nav-link--menu::after {
  transform: rotate(-135deg) translateY(-2px);
}

.nav-link--menu {
  cursor: pointer;
  font: inherit;
  text-align: left;
}

.nav-link--cart {
  gap: 0.45rem;
}

.cart-count {
  min-width: 22px;
  height: 22px;
  padding: 0 0.35rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--brand-red);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

.header-cart {
  min-height: 38px;
  padding: 0.48rem 0.9rem;
  font-size: 0.86rem;
  flex-shrink: 0;
}

.nav-cta {
  min-height: 38px;
  padding: 0.48rem 1.15rem;
  font-size: 0.86rem;
  flex-shrink: 0;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 0;
  border-radius: 12px;
  border: 1px solid rgba(41, 41, 41, 0.14);
  background: #fff;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.menu-toggle span:not(.sr-only) {
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: #1f1f1f;
}

.menu-panel {
  position: absolute;
  top: 100%;
  left: 50%;
  z-index: 45;
  width: min(760px, calc(100vw - 2.5rem));
  max-width: calc(100vw - 2.5rem);
  padding: 0.75rem 0 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  transform: translateX(-50%);
  display: none;
  pointer-events: none;
}

.menu-panel::before {
  content: "";
  position: absolute;
  top: 0;
  left: -2rem;
  right: -2rem;
  height: 0.85rem;
  pointer-events: auto;
}

.menu-panel::after {
  content: "";
  position: absolute;
  inset: 0.75rem 0 0;
  border-radius: 20px;
  border: 1px solid rgba(41, 41, 41, 0.06);
  background: #fff;
  box-shadow: 0 18px 50px rgba(17, 15, 14, 0.14), 0 4px 14px rgba(17, 15, 14, 0.06);
  pointer-events: none;
  z-index: 0;
}

.menu-panel-head,
.menu-panel-grid {
  position: relative;
  z-index: 1;
  pointer-events: auto;
}

.menu-panel-head {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  padding: 1.15rem 1.35rem 0.65rem;
}

.menu-panel-kicker {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brand-red);
}

.menu-panel-head strong {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text);
}

.menu-panel-grid {
  padding: 0 0.85rem 1rem;
}

.nav-item--menu:hover .menu-panel,
.nav-item--menu.is-open .menu-panel,
.nav-item--menu:focus-within .menu-panel {
  display: block;
  pointer-events: auto;
  animation: menuDropIn 0.22s ease;
}

.nav-item--menu:hover .nav-link--menu,
.nav-item--menu.is-open .nav-link--menu,
.nav-item--menu:focus-within .nav-link--menu {
  color: var(--brand-red);
}

.nav-item--menu:hover .nav-link--menu::after,
.nav-item--menu.is-open .nav-link--menu::after,
.nav-item--menu:focus-within .nav-link--menu::after {
  transform: rotate(-135deg) translateY(-2px);
}

@keyframes menuDropIn {
  from {
    opacity: 0;
    transform: translateX(-50%) translateY(6px);
  }
  to {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
}

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

.menu-card {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 0.75rem;
  align-items: center;
  padding: 0.65rem 0.75rem;
  border-radius: 14px;
  border: 1px solid transparent;
  transition: background 0.2s ease, transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.menu-card:hover {
  background: rgba(255, 188, 13, 0.12);
  border-color: rgba(255, 188, 13, 0.35);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(219, 0, 7, 0.08);
}

.menu-card img {
  width: 52px;
  height: 52px;
  object-fit: contain;
  padding: 0.35rem;
  border-radius: 12px;
  background: linear-gradient(145deg, #fff9ec, #fff3d6);
}

.menu-card span {
  font-size: 0.88rem;
  font-weight: 500;
  line-height: 1.25;
}

.hero-shell,
.section-shell,
.page-hero,
.summary-card,
.content-card,
.empty-state {
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.hero-section {
  padding: 2rem 0 1.2rem;
}

.hero-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
  overflow: hidden;
}

.hero-visual {
  min-height: 470px;
  padding: 2rem;
  display: flex;
  align-items: flex-end;
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.35), transparent 28%),
    linear-gradient(135deg, #b61d11 0%, #da291c 48%, #ff9900 100%);
  position: relative;
}

.hero-visual img {
  width: 100%;
  height: 100%;
  max-height: 360px;
  object-fit: contain;
  margin-inline: auto;
  filter: drop-shadow(0 28px 34px rgba(0, 0, 0, 0.22));
}

.hero-copy {
  padding: 2.4rem;
  display: grid;
  align-content: center;
}

.hero-copy h1,
.section-heading h2,
.product-card h3,
.product-info h1,
.summary-card h2,
.page-hero-copy h1,
.content-card h2 {
  margin: 0;
  line-height: 1.05;
}

.hero-copy h1 {
  font-size: clamp(2.4rem, 4.5vw, 4.3rem);
  max-width: 11ch;
}

.hero-copy p {
  color: var(--muted);
  max-width: 54ch;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.mini-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1rem;
}

.pill {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0.5rem 0.9rem;
  border-radius: 999px;
  border: 1px solid rgba(41, 41, 41, 0.08);
  background: #fff;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 600;
}

.pill.is-active,
.pill:hover {
  border-color: rgba(218, 41, 28, 0.25);
  color: var(--brand-red);
  background: rgba(255, 188, 13, 0.12);
}

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

.hero-side-card {
  padding: 1.35rem;
  border: 1px solid rgba(41, 41, 41, 0.06);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 4px 18px rgba(17, 15, 14, 0.05);
}

.hero-side-card h3 {
  margin: 0 0 0.5rem;
}

.section {
  padding: 1.2rem 0 3rem;
}

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

.section-heading p {
  margin: 0.55rem 0 0;
  color: var(--muted);
  max-width: 58ch;
}

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

.category-card {
  display: grid;
  gap: 0.75rem;
  padding: 1rem;
  border-radius: 20px;
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.category-card img {
  width: 62px;
  height: 62px;
  object-fit: contain;
}

.category-card strong {
  font-size: 1rem;
}

.category-card span {
  color: var(--muted);
  font-size: 0.9rem;
}

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

.product-card {
  display: grid;
  overflow: hidden;
  border-radius: 24px;
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.product-card-media {
  min-height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  background: linear-gradient(180deg, #fff 0%, #f8f5ef 100%);
}

.product-card-media img {
  width: 100%;
  height: 200px;
  object-fit: contain;
}

.product-card-body {
  display: grid;
  gap: 0.65rem;
  padding: 1.1rem 1.15rem 1.15rem;
}

.product-card-body h3 {
  font-size: 1.02rem;
  line-height: 1.25;
}

.product-card-body p {
  font-size: 0.88rem;
  line-height: 1.45;
  margin: 0.25rem 0 0;
}

.product-card-actions {
  display: grid;
  gap: 0.45rem;
  margin-top: 0.15rem;
}

.product-card-actions--single .button {
  width: 100%;
}

.product-booking-card {
  display: grid;
  gap: 0.55rem;
  margin: 0 0 1.1rem;
  padding: 1rem 1.05rem;
  border-radius: 16px;
  background: var(--surface);
}

.product-booking-card p {
  margin: 0;
}

.product-booking-hours {
  font-size: 0.86rem;
  color: var(--muted);
}

.product-booking-note--alert {
  margin: 0 0 0.75rem;
  padding: 0.7rem 0.85rem;
  border-radius: 12px;
  background: rgba(201, 162, 39, 0.12);
  color: inherit;
  font-size: 0.88rem;
}

.badge {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  background: rgba(255, 188, 13, 0.18);
  color: #7a5400;
  font-size: 0.74rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.product-card p,
.product-card li,
.content-card p,
.page-hero-copy p,
.product-info p,
.summary-card p,
.cart-item-meta {
  color: var(--muted);
}

.price-row {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.75rem;
}

.price {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text);
}

.quick-cart-form,
.inline-form,
.stack-form {
  display: grid;
  gap: 0.8rem;
}

.quick-cart-form .button,
.product-card-actions .button-primary {
  width: 100%;
}

.content-card .button {
  margin-top: 0.5rem;
}

.page-hero-section,
.menu-section,
.product-page-section,
.cart-section,
.checkout-section,
.content-section,
.success-section {
  padding: 2rem 0 3rem;
}

.page-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.9fr);
  overflow: hidden;
}

.page-hero-copy {
  padding: 2.2rem;
}

.page-hero-copy h1 {
  font-size: clamp(2.1rem, 4vw, 3.6rem);
  margin-bottom: 1rem;
}

.page-hero-copy p {
  max-width: 58ch;
}

.page-hero-media {
  min-height: 340px;
  background: linear-gradient(135deg, #201d1c 0%, #5e4228 52%, #d58e29 100%);
}

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

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-bottom: 1rem;
  color: var(--muted);
  font-size: 0.92rem;
}

.breadcrumbs a:hover {
  color: var(--brand-red);
}

.product-layout,
.checkout-layout,
.cart-layout {
  display: grid;
  gap: 1.4rem;
}

.product-layout {
  grid-template-columns: minmax(0, 1fr) minmax(350px, 420px);
}

.product-gallery,
.product-info,
.cart-table,
.form-card,
.summary-card,
.content-card,
.empty-state {
  padding: 1.5rem;
}

.product-gallery {
  display: flex;
  flex-direction: column;
  padding: 1.25rem;
  border-radius: 26px;
  background: linear-gradient(180deg, #fff 0%, #f7f3ec 100%);
  box-shadow: var(--shadow-soft);
}

.product-gallery-main {
  min-height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-gallery-main img {
  width: 100%;
  max-height: 360px;
  object-fit: contain;
}

.product-tag-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.45rem;
  margin: 0.5rem 0 1rem;
}

.info-tag {
  display: inline-flex;
  align-items: center;
  height: 30px;
  padding: 0 0.75rem;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 600;
  line-height: 1;
  white-space: nowrap;
  background: #f3f0ea;
  color: #5c5348;
}

.info-tag--accent {
  background: rgba(255, 188, 13, 0.22);
  color: #7a5400;
  text-transform: uppercase;
  font-size: 0.7rem;
  letter-spacing: 0.04em;
}

.product-info {
  border-radius: 26px;
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.product-info h1 {
  font-size: clamp(2.2rem, 4vw, 3.5rem);
}

.product-meta {
  display: grid;
  gap: 0.9rem;
  margin: 1rem 0 1.3rem;
}

.product-meta-card {
  display: grid;
  gap: 0.4rem;
  padding: 0.95rem 1rem;
  border-radius: 16px;
  background: var(--surface);
}

.qty-row {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.product-description {
  line-height: 1.65;
  margin: 0 0 1rem;
}

.product-description p {
  margin: 0 0 0.6rem;
}

.product-options {
  display: grid;
  gap: 0.9rem;
  margin: 0 0 1rem;
}

.product-option-group {
  margin: 0;
  padding: 0.9rem 1rem;
  border: 1px solid rgba(41, 41, 41, 0.1);
  border-radius: 16px;
  background: var(--surface);
}

.product-option-group legend {
  font-weight: 700;
  padding: 0 0.35rem;
}

.product-option-hint {
  margin: 0 0 0.55rem;
  font-size: 0.82rem;
  color: var(--muted);
}

.product-option-list {
  display: grid;
  gap: 0.4rem;
}

.product-option {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.45rem 0.2rem;
  cursor: pointer;
}

.product-option em {
  font-style: normal;
  color: var(--muted);
  margin-left: 0.3rem;
  font-size: 0.85rem;
}

.cart-item-options,
.summary-line-options,
.success-items small {
  display: block;
  margin-top: 0.2rem;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 500;
}

.success-items {
  list-style: none;
  margin: 0.6rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.55rem;
}

.success-items li {
  display: flex;
  justify-content: space-between;
  gap: 0.8rem;
  align-items: flex-start;
}

.success-box--items {
  margin-top: 1rem;
}

.qty-control {
  display: inline-flex;
  align-items: center;
  padding: 0.35rem;
  gap: 0.35rem;
  border: 1px solid rgba(41, 41, 41, 0.12);
  border-radius: 999px;
  background: #fff;
}

.qty-button {
  width: 34px;
  height: 34px;
  background: #f6f3ee;
}

.qty-input {
  width: 64px;
  border: 0;
  text-align: center;
  background: transparent;
}

.detail-list {
  margin: 0;
  padding-left: 1.1rem;
  color: var(--muted);
}

.detail-list li + li {
  margin-top: 0.3rem;
}

.menu-toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.category-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.results-count {
  color: var(--muted);
  font-size: 0.95rem;
}

.cart-layout,
.checkout-layout {
  grid-template-columns: minmax(0, 1fr) minmax(320px, 380px);
  align-items: start;
}

.cart-table,
.form-card {
  border-radius: 26px;
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.cart-table h1,
.form-card h1,
.summary-card h2,
.empty-state h1 {
  margin-top: 0;
}

.cart-items {
  display: grid;
  gap: 1rem;
}

.cart-item {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 1rem;
  padding: 1rem 0;
  border-top: 1px solid rgba(41, 41, 41, 0.08);
}

.cart-item:first-child {
  border-top: 0;
  padding-top: 0;
}

.cart-item img {
  width: 100%;
  height: 96px;
  object-fit: contain;
  border-radius: 16px;
  background: #f7f4ee;
}

.cart-item-body {
  display: grid;
  gap: 0.7rem;
}

.cart-item-top {
  display: flex;
  justify-content: space-between;
  gap: 0.8rem;
}

.cart-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.text-button {
  border: 0;
  padding: 0;
  background: transparent;
  color: var(--brand-red);
  font-weight: 700;
  cursor: pointer;
}

.summary-card {
  position: sticky;
  top: 110px;
}

.summary-lines {
  display: grid;
  gap: 0.75rem;
  margin: 1.1rem 0;
}

.summary-line,
.summary-total {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}

.summary-total {
  padding-top: 1rem;
  border-top: 1px solid rgba(41, 41, 41, 0.08);
  font-size: 1.08rem;
  font-weight: 800;
}

.alert,
.checkout-notice {
  padding: 0.95rem 1rem;
  border-radius: 14px;
  margin-bottom: 1rem;
}

.alert-error {
  background: rgba(180, 35, 24, 0.08);
  color: var(--danger);
}

.alert-success,
.checkout-notice {
  background: rgba(17, 132, 91, 0.08);
  color: var(--success);
}

.form-card {
  display: grid;
  gap: 1rem;
}

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

.field {
  display: grid;
  gap: 0.45rem;
}

.field label {
  font-weight: 700;
}

.field input,
.field textarea,
.field select {
  width: 100%;
  min-height: 48px;
  padding: 0.85rem 0.95rem;
  border: 1px solid rgba(41, 41, 41, 0.14);
  border-radius: 14px;
  background: #fff;
}

.field textarea {
  min-height: 120px;
  resize: vertical;
}

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

.checkout-disclaimer {
  color: var(--muted);
  font-size: 0.92rem;
}

.success-card {
  max-width: 780px;
  margin: 0 auto;
  padding: 2rem;
  border-radius: 30px;
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.success-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  min-height: 36px;
  padding: 0.55rem 0.95rem;
  border-radius: 999px;
  background: rgba(17, 132, 91, 0.1);
  color: var(--success);
  font-weight: 700;
}

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

.success-box {
  padding: 1rem;
  border-radius: 18px;
  background: var(--surface);
}

.success-box small {
  display: block;
  margin-top: 0.35rem;
  font-size: 0.78rem;
  color: var(--muted);
  word-break: break-all;
}

.success-footnote {
  margin-top: 1.25rem;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.55;
}

.success-footnote a {
  color: var(--brand-red);
  font-weight: 600;
}

.content-layout {
  display: grid;
  gap: 1.25rem;
}

.section-heading .button {
  flex-shrink: 0;
}

.content-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 100%;
  padding: 1.5rem;
}

.content-card h2 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.content-card p {
  font-size: 0.92rem;
  flex: 1;
}

.content-card p:last-child {
  margin-bottom: 0;
}

.content-stack,
.content-split {
  display: grid;
  gap: 1rem;
}

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

.empty-state {
  max-width: 760px;
  margin: 0 auto;
  padding: 2rem;
  text-align: center;
}

.site-footer {
  padding: 3rem 0 2rem;
  background: var(--surface);
  border-top: 1px solid rgba(41, 41, 41, 0.08);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.5rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(41, 41, 41, 0.08);
}

.footer-column {
  display: grid;
  gap: 0.72rem;
}

.footer-column h2 {
  margin: 0 0 0.35rem;
  font-size: 1rem;
}

.footer-column a,
.footer-legal {
  color: var(--muted);
  font-size: 0.93rem;
}

.footer-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.6rem 0;
  border-bottom: 1px solid rgba(41, 41, 41, 0.08);
}

.footer-social,
.footer-apps {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.social-link {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(41, 41, 41, 0.12);
  border-radius: 50%;
  background: #fff;
}

.social-link img {
  width: 18px;
  height: 18px;
  object-fit: contain;
}

.footer-apps img {
  height: 40px;
  width: auto;
}

.footer-bottom {
  align-items: flex-start;
  gap: 1.2rem;
  padding-top: 1.3rem;
}

.footer-copy {
  color: var(--muted);
  font-size: 0.87rem;
  text-align: right;
}

.is-scrolled {
  box-shadow: 0 8px 26px rgba(0, 0, 0, 0.06);
}

@media (max-width: 1180px) {
  .product-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

  .hero-shell,
  .page-hero,
  .product-layout {
    grid-template-columns: 1fr;
  }

  .menu-panel {
    left: 50%;
    width: min(680px, calc(100vw - 2.5rem));
    max-width: calc(100vw - 2.5rem);
    transform: translateX(-50%);
    display: none;
    animation: none;
  }

  .nav-item--menu:hover .menu-panel,
  .nav-item--menu.is-open .menu-panel {
    display: block;
    animation: menuDropIn 0.22s ease;
  }
}

@media (max-width: 959px) {
  .utility-bar {
    display: none;
  }

  .main-nav {
    flex-wrap: nowrap;
    padding: 0.75rem 0;
    min-height: 64px;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .primary-nav {
    /* drawer styles in mobile-nav.css */
    order: unset;
  }

  .primary-nav:not(.is-open) {
    pointer-events: none;
    visibility: hidden;
  }

  .nav-item,
  .nav-link,
  .primary-nav > a {
    width: 100%;
  }

  .product-grid,
  .cart-layout,
  .checkout-layout,
  .success-grid,
  .content-split,
  .hero-side,
  .footer-grid,
  .footer-meta,
  .footer-bottom {
    grid-template-columns: 1fr;
    flex-direction: column;
    align-items: flex-start;
  }

  .summary-card {
    position: static;
  }
}

@media (max-width: 700px) {
  .header-actions {
    width: auto;
    margin-left: auto;
    justify-content: flex-end;
    flex-wrap: nowrap;
    gap: 0.55rem;
  }

  .header-cart,
  .nav-cta {
    flex: 0 0 auto;
  }

  .hero-visual,
  .page-hero-media {
    min-height: 280px;
  }

  .hero-copy,
  .page-hero-copy,
  .success-card,
  .empty-state {
    padding: 1.5rem;
  }

  .category-strip,
  .product-grid,
  .menu-panel-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .footer-apps img {
    height: 36px;
  }

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