:root {
  --bg: #fffdf8;
  --surface: #ffffff;
  --surface-soft: #fffdf8;
  --text: #1f241f;
  --muted: #6f6a5f;
  --accent: #f4a62a;
  --green: #1f6b3a;
  --red: #b93a2f;
  --border: rgba(31, 36, 31, 0.12);
  --bg-2: #faf4ea;
  --panel: var(--surface);
  --panel-2: var(--surface-soft);
  --panel-3: #f7efe3;
  --cream: var(--text);
  --line: var(--border);
  --saffron: var(--accent);
  --label-orange: #b85f00;
  --green-dark: #245934;
  --shadow: 0 24px 70px rgba(75, 55, 26, 0.13);
  --shadow-soft: 0 14px 38px rgba(75, 55, 26, 0.09);
  --radius: 18px;
  --radius-lg: 28px;
  --pad: clamp(18px, 5vw, 74px);
  --site-home-bg: url("../images/storefront.jpg");
  --site-cafe-bg: url("../images/storefront.jpg");
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 76px;
  max-width: 100%;
  overflow-x: hidden;
}

body {
  margin: 0;
  background-color: var(--bg);
  background-image: var(--site-home-bg);
  background-position: center top;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  color: var(--cream);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  max-width: 100%;
  overflow-x: hidden;
  -webkit-text-size-adjust: 100%;
}

body.nav-open {
  overflow: hidden;
}

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

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

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

:focus-visible {
  outline: 3px solid rgba(244, 166, 42, 0.72);
  outline-offset: 3px;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(255, 252, 244, 0.58);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(255, 250, 241, 0.72));
  box-shadow: 0 1px 0 rgba(31, 36, 31, 0.055), 0 12px 34px rgba(75, 55, 26, 0.055);
  -webkit-backdrop-filter: blur(20px) saturate(1.08);
  backdrop-filter: blur(20px) saturate(1.08);
}

.mobile-top-stack {
  display: contents;
}

.header-main {
  display: grid;
  grid-template-columns: auto minmax(260px, 1fr) auto auto;
  align-items: center;
  gap: 12px;
  padding: 2px var(--pad);
}

.brand {
  display: flex;
  align-items: center;
  gap: 0;
  font-size: 17px;
  font-weight: 900;
  letter-spacing: 0;
  white-space: nowrap;
}

.brand span {
  display: none;
}

.brand-logo {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  object-fit: contain;
  background: rgba(255, 255, 255, 0.72);
  box-shadow:
    0 10px 28px rgba(75, 55, 26, 0.07),
    inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

.header-search {
  position: relative;
  justify-self: center;
  width: min(100%, 680px);
}

.header-search-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 6px;
  padding: 4px;
  border-radius: 999px;
  border: 1px solid rgba(255, 252, 244, 0.62);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.72), rgba(255, 250, 241, 0.6));
  box-shadow:
    0 12px 30px rgba(75, 55, 26, 0.065),
    inset 0 1px 0 rgba(255, 255, 255, 0.76);
  -webkit-backdrop-filter: blur(12px) saturate(1.08);
  backdrop-filter: blur(12px) saturate(1.08);
}

.header-search-form input {
  min-height: 36px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: #171b18;
  padding: 8px 14px;
  outline: none;
}

.header-search-form input:focus {
  box-shadow: none;
}

.header-search-button,
.btn,
.add-button {
  border: 0;
  cursor: pointer;
  font-weight: 900;
}

.header-search-button {
  min-height: 36px;
  padding: 7px 14px;
  border-radius: 999px;
  background: var(--saffron);
  color: #241607;
  transition: background 180ms ease, transform 180ms ease;
}

.header-search-button:hover {
  background: #e99517;
  transform: translateY(-1px);
}

.header-search-results {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  right: 0;
  display: none;
  max-height: min(70vh, 540px);
  overflow-y: auto;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.98);
  box-shadow: var(--shadow);
}

.header-search.active .header-search-results,
.header-search:focus-within .header-search-results {
  display: grid;
  gap: 9px;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.store-status,
.icon-action,
.cart-action {
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.74);
  color: var(--cream);
  box-shadow: inset 0 0 0 1px var(--line);
}

.store-status {
  display: grid;
  gap: 1px;
  min-width: 146px;
  padding: 7px 11px;
}

.store-status span {
  color: var(--muted);
  font-size: 12px;
}

.store-status strong {
  color: var(--green);
  font-size: 13px;
}

.icon-action,
.cart-action {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  justify-content: center;
  padding: 7px 11px;
  font-size: 13px;
  font-weight: 800;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.icon-action:hover,
.cart-action:hover {
  transform: translateY(-1px);
}

.cart-action {
  background: rgba(31, 107, 58, 0.1);
  color: var(--green);
}

button.cart-action {
  border: 0;
  cursor: pointer;
  font-weight: 900;
}

.cart-action span {
  display: inline-grid;
  min-width: 22px;
  min-height: 22px;
  place-items: center;
  margin-left: 5px;
  border-radius: 999px;
  background: rgba(31, 107, 58, 0.14);
  color: var(--green);
  font-size: 12px;
}

.menu-toggle {
  display: none;
  position: relative;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 16px;
  background: var(--panel-2);
  cursor: pointer;
}

.menu-toggle span {
  position: absolute;
  left: 12px;
  width: 22px;
  height: 2px;
  border-radius: 2px;
  background: var(--green-dark);
  transition: top 180ms ease, transform 180ms ease;
}

.menu-toggle span:first-child {
  top: 17px;
}

.menu-toggle span:last-child {
  top: 27px;
}

.nav-open .menu-toggle span:first-child {
  top: 22px;
  transform: rotate(45deg);
}

.nav-open .menu-toggle span:last-child {
  top: 22px;
  transform: rotate(-45deg);
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: 4px;
  padding: 0 var(--pad) 6px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.site-nav a {
  padding: 5px 10px;
  border-radius: 999px;
  transition: background 160ms ease, color 160ms ease;
}

.site-nav a:hover {
  background: var(--panel-2);
  color: var(--cream);
}

.promo-strip {
  width: min(100% - 48px, 840px);
  margin: 8px auto -6px;
  padding: 7px 16px;
  border: 1px solid rgba(255, 252, 244, 0.6);
  border-radius: 999px;
  background:
    linear-gradient(90deg, rgba(255, 253, 248, 0.46), rgba(255, 248, 236, 0.34)),
    radial-gradient(circle at 12% 50%, rgba(244, 166, 42, 0.12), transparent 8rem),
    radial-gradient(circle at 88% 50%, rgba(31, 107, 58, 0.1), transparent 8rem);
  color: #1d1008;
  box-shadow:
    0 12px 30px rgba(75, 55, 26, 0.07),
    inset 0 1px 0 rgba(255, 255, 255, 0.72);
  font-size: 13px;
  font-weight: 900;
  text-align: center;
  -webkit-backdrop-filter: blur(12px) saturate(1.06);
  backdrop-filter: blur(12px) saturate(1.06);
}

.mobile-action-row {
  display: none;
}

@media (min-width: 861px) {
  html,
  body {
    scroll-snap-type: y mandatory;
    scroll-snap-stop: always;
  }

  .hero-content {
    align-content: center;
    justify-items: start;
  }

  .hero-copy-panel {
    margin-top: clamp(8px, 1.5vw, 20px);
  }

  .hero-shop-panel {
    margin-top: 0;
    justify-self: start;
  }

  .hero-quick-grid {
    grid-template-columns: repeat(6, minmax(118px, 1fr));
  }
}

.snap-wrapper {
  position: relative;
  isolation: isolate;
}

.snap-wrapper::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 18% 26%, rgba(244, 166, 42, 0.045), transparent 24rem),
    radial-gradient(circle at 86% 38%, rgba(31, 107, 58, 0.04), transparent 28rem),
    linear-gradient(180deg, rgba(255, 250, 240, 0.015), rgba(255, 250, 240, 0.04));
  opacity: 0.24;
}

.snap-wrapper > * {
  position: relative;
  z-index: 1;
}

.snap-panel {
  position: relative;
  min-height: calc(100vh - 76px);
  scroll-snap-align: start;
  scroll-snap-stop: always;
  scroll-margin-top: 0;
  overflow: visible;
}

.section.snap-panel {
  background: transparent;
  isolation: isolate;
}

.section.snap-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0;
  filter: blur(14px);
  transform: scale(1.02);
  -webkit-mask-image: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.12) 16%, rgba(0, 0, 0, 0.82) 42%, #000 100%);
  mask-image: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.12) 16%, rgba(0, 0, 0, 0.82) 42%, #000 100%);
  transition: opacity 900ms ease;
}

.section.snap-panel.active::before {
  opacity: 0;
}

.snap-panel > .section-heading,
.snap-panel > .row-heading,
.snap-panel > .quick-card-grid,
.snap-panel > .department-grid,
.snap-panel > .product-row,
.snap-panel > .service-grid,
.snap-panel > .social-row,
.snap-panel > .catering-panel,
.snap-panel > .chat-shell,
.snap-panel > .about-layout,
.snap-panel > .contact-layout,
.hero-content {
  position: relative;
  z-index: 1;
  transition:
    opacity 760ms ease,
    transform 760ms cubic-bezier(0.16, 0.84, 0.28, 1);
}

.snap-panel:not(.active) > .section-heading,
.snap-panel:not(.active) > .row-heading,
.snap-panel:not(.active) > .quick-card-grid,
.snap-panel:not(.active) > .department-grid,
.snap-panel:not(.active) > .product-row,
.snap-panel:not(.active) > .service-grid,
.snap-panel:not(.active) > .social-row,
.snap-panel:not(.active) > .catering-panel,
.snap-panel:not(.active) > .chat-shell,
.snap-panel:not(.active) > .about-layout,
.snap-panel:not(.active) > .contact-layout,
.snap-panel:not(.active) .hero-content {
  opacity: 0.72;
  transform: translateY(18px);
}

.hero {
  position: relative;
  min-height: clamp(680px, calc(100vh - 76px), 820px);
  display: grid;
  align-items: center;
  overflow: hidden;
  background: transparent;
}

.hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  height: clamp(90px, 16vh, 190px);
  pointer-events: none;
  background: transparent;
}

.hero-bg,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-bg {
  display: none;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.08) contrast(1.1) brightness(0.96);
}

.hero-overlay {
  display: none;
  background: transparent;
}

.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  width: min(1120px, 100%);
  max-width: none;
  gap: clamp(18px, 2.2vw, 26px);
  padding: clamp(34px, 5vw, 62px) var(--pad) clamp(34px, 4vw, 56px);
}

.hero-copy-panel {
  width: min(100%, 620px);
  padding: clamp(18px, 2.4vw, 28px);
  border: 1px solid rgba(255, 252, 244, 0.64);
  border-radius: 30px;
  background:
    linear-gradient(145deg, rgba(255, 253, 248, 0.72), rgba(255, 248, 236, 0.52)),
    radial-gradient(circle at 18% 18%, rgba(244, 166, 42, 0.1), transparent 14rem),
    radial-gradient(circle at 92% 82%, rgba(31, 107, 58, 0.08), transparent 14rem);
  box-shadow:
    0 24px 70px rgba(47, 35, 21, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.78);
  -webkit-backdrop-filter: blur(16px) saturate(1.08);
  backdrop-filter: blur(16px) saturate(1.08);
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--saffron);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1 {
  margin-bottom: 20px;
  color: var(--cream);
  font-size: clamp(44px, 8vw, 94px);
  line-height: 0.96;
  letter-spacing: 0;
}

.hero h1 {
  max-width: 560px;
  color: var(--text);
  font-size: clamp(30px, 3.5vw, 48px);
  line-height: 1.06;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.42);
}

.hero-flavor-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: -4px 0 16px;
}

.hero-flavor-row span {
  padding: 7px 11px;
  border: 1px solid rgba(255, 252, 244, 0.6);
  border-radius: 999px;
  background: rgba(255, 253, 248, 0.48);
  color: var(--green-dark);
  font-size: 12px;
  font-weight: 900;
  box-shadow:
    0 10px 24px rgba(47, 35, 21, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.76);
  -webkit-backdrop-filter: blur(10px) saturate(1.06);
  backdrop-filter: blur(10px) saturate(1.06);
}

h2 {
  margin-bottom: 20px;
  color: var(--cream);
  font-size: clamp(30px, 4.5vw, 58px);
  line-height: 1.04;
}

h3 {
  margin-bottom: 8px;
  color: var(--cream);
  font-size: 19px;
}

.hero-content p,
.section-heading p,
.about-lead,
.catering-panel p,
.service-card p,
.department-card p,
.quick-card small,
.info-row p,
.site-footer,
.product-card p,
.product-result-card p,
.empty-results span {
  color: var(--muted);
}

.hero-content > p {
  max-width: 660px;
  margin-bottom: 20px;
  color: var(--muted);
  font-size: clamp(15px, 1.35vw, 17px);
  text-shadow: 0 1px 14px rgba(255, 250, 240, 0.46);
}

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

.hero-mobile-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0;
}

.hero-mobile-actions .btn {
  min-height: 44px;
  padding: 10px 18px;
}

.hero-shop-panel {
  display: grid;
  width: min(100%, 980px);
  max-width: 1000px;
  gap: 14px;
  padding: clamp(14px, 2.1vw, 20px);
  border: 1px solid rgba(255, 252, 244, 0.62);
  border-radius: 26px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.68), rgba(255, 248, 236, 0.56)),
    radial-gradient(circle at 14% 10%, rgba(244, 166, 42, 0.1), transparent 50%),
    radial-gradient(circle at 86% 92%, rgba(31, 107, 58, 0.08), transparent 54%);
  box-shadow:
    0 26px 70px rgba(92, 67, 30, 0.13),
    0 8px 26px rgba(255, 248, 236, 0.38),
    inset 0 1px 0 rgba(255, 255, 255, 0.82),
    inset 0 -1px 0 rgba(255, 248, 236, 0.38);
  -webkit-backdrop-filter: blur(16px) saturate(1.08);
  backdrop-filter: blur(16px) saturate(1.08);
}

.hero-shop-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.hero-shop-heading span {
  width: fit-content;
  padding: 5px 9px;
  border-radius: 999px;
  background: rgba(255, 248, 236, 0.68);
  color: var(--label-orange);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
}

.hero-shop-heading strong {
  color: var(--text);
  font-size: clamp(15px, 1.35vw, 18px);
}

.hero-quick-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 9px;
}

.hero-quick-link {
  position: relative;
  display: grid;
  min-height: 88px;
  align-content: space-between;
  gap: 10px;
  padding: 14px;
  border: 1px solid rgba(255, 252, 244, 0.58);
  border-radius: 20px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.58), rgba(255, 250, 241, 0.46)),
    radial-gradient(circle at 18% 10%, rgba(244, 166, 42, 0.08), transparent 58%);
  box-shadow:
    0 14px 34px rgba(92, 67, 30, 0.085),
    inset 0 1px 0 rgba(255, 255, 255, 0.72);
  -webkit-backdrop-filter: blur(12px) saturate(1.08);
  backdrop-filter: blur(12px) saturate(1.08);
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.hero-quick-link::after {
  content: "";
  position: absolute;
  right: 12px;
  bottom: 12px;
  width: 7px;
  height: 7px;
  border-top: 2px solid rgba(31, 107, 58, 0.7);
  border-right: 2px solid rgba(31, 107, 58, 0.7);
  transform: rotate(45deg);
  transition: transform 180ms ease, opacity 180ms ease;
  opacity: 0.72;
}

.hero-quick-link:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.78);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.74), rgba(255, 250, 241, 0.62)),
    radial-gradient(circle at 18% 10%, rgba(244, 166, 42, 0.12), transparent 60%);
  box-shadow:
    0 20px 44px rgba(92, 67, 30, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.84);
}

.hero-quick-link:hover::after {
  transform: translate(2px, -2px) rotate(45deg);
  opacity: 1;
}

.hero-quick-link span {
  width: fit-content;
  padding: 4px 7px;
  border-radius: 999px;
  background: rgba(255, 248, 236, 0.62);
  color: var(--label-orange);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.48);
}

.hero-quick-link strong {
  color: var(--text);
  font-size: clamp(14px, 1.16vw, 17px);
  line-height: 1.18;
}

.btn {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

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

.btn.primary {
  background: var(--saffron);
  color: #241607;
}

.btn.secondary {
  background: var(--green);
  color: #ffffff;
  box-shadow: 0 12px 28px rgba(31, 107, 58, 0.16);
}

.section {
  padding: clamp(58px, 8vw, 96px) var(--pad);
}

.departments-section {
  background: transparent;
}

.product-row-section:not(.deals-band) {
  background: transparent;
}

.catering-section {
  background: transparent;
}

.market-highlights {
  background: transparent;
}

.departments-section::before {
  background:
    radial-gradient(ellipse at 18% 28%, rgba(255, 250, 240, 0.3), transparent 34rem),
    radial-gradient(ellipse at 84% 48%, rgba(31, 107, 58, 0.08), transparent 30rem),
    radial-gradient(ellipse at 52% 92%, rgba(244, 166, 42, 0.09), transparent 34rem);
  opacity: 0;
  -webkit-mask-image: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.04) 18%, rgba(0, 0, 0, 0.46) 48%, #000 100%);
  mask-image: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.04) 18%, rgba(0, 0, 0, 0.46) 48%, #000 100%);
}

.departments-section.active::before {
  opacity: 0;
}

.product-row-section:not(.deals-band)::before {
  background:
    radial-gradient(ellipse at 20% 24%, rgba(255, 255, 255, 0.3), transparent 31rem),
    radial-gradient(ellipse at 76% 36%, rgba(31, 107, 58, 0.1), transparent 28rem),
    radial-gradient(ellipse at 54% 86%, rgba(255, 250, 240, 0.16), transparent 34rem);
}

.catering-section::before {
  background:
    radial-gradient(ellipse at 26% 30%, rgba(31, 107, 58, 0.09), transparent 30rem),
    radial-gradient(ellipse at 72% 56%, rgba(244, 166, 42, 0.12), transparent 32rem),
    radial-gradient(ellipse at 50% 96%, rgba(255, 250, 240, 0.18), transparent 32rem);
}

.market-feature-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  max-width: 980px;
}

.market-feature-card {
  position: relative;
  display: grid;
  min-height: 380px;
  overflow: hidden;
  border: 1px solid rgba(255, 252, 244, 0.66);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.58), rgba(255, 248, 236, 0.42)),
    radial-gradient(circle at 18% 12%, rgba(244, 166, 42, 0.12), transparent 56%);
  box-shadow:
    0 24px 66px rgba(47, 35, 21, 0.12),
    0 0 28px rgba(255, 248, 236, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.78);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
  -webkit-backdrop-filter: blur(12px) saturate(1.08);
  backdrop-filter: blur(12px) saturate(1.08);
}

.market-feature-card:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 255, 255, 0.82);
  box-shadow:
    0 30px 78px rgba(47, 35, 21, 0.15),
    0 0 34px rgba(255, 248, 236, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.86);
}

.market-feature-card img {
  width: 100%;
  height: 100%;
  min-height: 380px;
  object-fit: cover;
  filter: saturate(1.04) contrast(1.04);
}

.market-feature-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 26%, rgba(18, 24, 18, 0.34) 66%, rgba(18, 24, 18, 0.7)),
    radial-gradient(circle at 16% 18%, rgba(255, 248, 236, 0.14), transparent 14rem);
  pointer-events: none;
}

.market-feature-card div {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 1;
  display: grid;
  gap: 6px;
}

.market-feature-card span {
  width: fit-content;
  padding: 5px 9px;
  border-radius: 999px;
  background: rgba(255, 248, 236, 0.86);
  color: #8f4a00;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.market-feature-card h3 {
  max-width: 520px;
  margin: 0;
  color: #fffdf8;
  font-size: clamp(19px, 2.3vw, 28px);
  line-height: 1.08;
  text-shadow: 0 10px 24px rgba(0, 0, 0, 0.34);
}

.section-heading,
.row-heading {
  margin-bottom: 24px;
}

.section-heading {
  max-width: 790px;
}

.row-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
}

.row-heading a,
.social-row a {
  color: var(--saffron);
  font-weight: 900;
}

.quick-card-grid,
.service-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 14px;
}

.quick-card,
.service-card,
.department-card,
.product-card,
.about-card,
.contact-info,
.contact-form,
.chat-shell,
.catering-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: linear-gradient(145deg, #ffffff, #fffdf8);
  box-shadow: var(--shadow-soft);
}

.quick-card,
.department-card {
  border-color: rgba(255, 252, 244, 0.62);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.7), rgba(255, 248, 236, 0.56)),
    radial-gradient(circle at 18% 14%, rgba(244, 166, 42, 0.1), transparent 58%);
  box-shadow:
    0 22px 58px rgba(92, 67, 30, 0.095),
    0 6px 22px rgba(255, 248, 236, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.78),
    inset 0 -1px 0 rgba(255, 248, 236, 0.36);
  -webkit-backdrop-filter: blur(12px) saturate(1.08);
  backdrop-filter: blur(12px) saturate(1.08);
}

.quick-card {
  display: grid;
  min-height: 168px;
  gap: 10px;
  align-content: space-between;
  padding: 18px;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.quick-card:hover,
.department-card:hover,
.product-card:hover,
.service-card:hover {
  transform: translateY(-4px);
  background: linear-gradient(145deg, #fffdf8, var(--panel-2));
}

.quick-card:hover,
.department-card:hover {
  border-color: rgba(255, 255, 255, 0.78);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.78), rgba(255, 250, 241, 0.66)),
    radial-gradient(circle at 20% 16%, rgba(244, 166, 42, 0.14), transparent 60%);
  box-shadow:
    0 28px 68px rgba(92, 67, 30, 0.13),
    0 8px 26px rgba(255, 248, 236, 0.46),
    inset 0 1px 0 rgba(255, 255, 255, 0.88),
    inset 0 -1px 0 rgba(255, 248, 236, 0.44);
}

.quick-card span,
.department-card span,
.service-card span {
  width: fit-content;
  padding: 7px 11px;
  border-radius: 999px;
  background: rgba(255, 248, 236, 0.72);
  color: var(--label-orange);
  font-size: 13px;
  font-weight: 900;
  box-shadow: inset 0 0 0 1px rgba(184, 95, 0, 0.08);
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
}

.quick-card strong {
  font-size: 18px;
}

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

.department-card {
  min-height: 172px;
  padding: 18px;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.department-card.has-visual {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 76px;
  align-items: start;
  gap: 8px 12px;
}

.department-card.has-visual img {
  grid-row: 1 / span 3;
  grid-column: 2;
  align-self: center;
  width: 76px;
  height: 76px;
  object-fit: contain;
  border-radius: 20px;
  filter: drop-shadow(0 14px 22px rgba(75, 55, 26, 0.14));
}

@supports not ((backdrop-filter: blur(12px)) or (-webkit-backdrop-filter: blur(12px))) {
  .quick-card,
  .department-card {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.9), rgba(255, 250, 241, 0.84));
  }
}

.product-row-section {
  overflow: hidden;
}

.deals-band {
  background: transparent;
}

.deals-band::before {
  background:
    radial-gradient(ellipse at 16% 28%, rgba(244, 166, 42, 0.12), transparent 30rem),
    radial-gradient(ellipse at 82% 46%, rgba(255, 250, 240, 0.24), transparent 33rem),
    radial-gradient(ellipse at 52% 88%, rgba(31, 107, 58, 0.07), transparent 30rem);
}

.weekly-flyer-section {
  position: relative;
}

.homepage-flyer-card {
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
  gap: 10px;
  align-self: stretch;
  height: 100%;
  min-height: 0;
  padding: clamp(10px, 1.25vw, 14px);
  border: 1px solid rgba(255, 255, 255, 0.64);
  border-radius: 28px;
  background:
    linear-gradient(145deg, rgba(255, 253, 248, 0.76), rgba(255, 248, 236, 0.58)),
    radial-gradient(circle at 18% 8%, rgba(244, 166, 42, 0.12), transparent 12rem),
    radial-gradient(circle at 88% 88%, rgba(31, 107, 58, 0.1), transparent 14rem);
  box-shadow:
    0 24px 70px rgba(44, 29, 6, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.84);
  -webkit-backdrop-filter: blur(18px) saturate(1.08);
  backdrop-filter: blur(18px) saturate(1.08);
}

.homepage-flyer-heading {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.homepage-flyer-card .weekly-flyer-image-button {
  align-self: stretch;
  height: 100%;
  min-height: 0;
  padding: 7px;
  border-radius: 22px;
}

.homepage-flyer-card .weekly-flyer-image-button img {
  width: 100%;
  height: 100%;
  max-height: none;
  object-fit: contain;
  border-radius: 16px;
}

.homepage-flyer-card .weekly-flyer-deals {
  padding: 12px;
  border-radius: 20px;
}

.homepage-flyer-card .weekly-flyer-deals .product-row {
  grid-auto-columns: minmax(190px, 220px);
}

.weekly-flyer-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(360px, 1.15fr);
  gap: clamp(18px, 3vw, 34px);
  align-items: start;
}

.weekly-flyer-image-button {
  display: grid;
  place-items: center;
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.64);
  border-radius: 28px;
  background: rgba(255, 250, 241, 0.72);
  box-shadow: 0 24px 70px rgba(44, 29, 6, 0.2);
  cursor: zoom-in;
  overflow: hidden;
  padding: 10px;
  backdrop-filter: blur(18px);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.weekly-flyer-image-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 30px 80px rgba(44, 29, 6, 0.25);
}

.weekly-flyer-image-button img {
  display: block;
  width: 100%;
  height: auto;
  max-height: min(76vh, 760px);
  border-radius: 20px;
  object-fit: contain;
  background: rgba(255, 255, 255, 0.86);
}

.weekly-flyer-deals {
  display: grid;
  gap: 14px;
  padding: clamp(16px, 2vw, 24px);
  border: 1px solid rgba(255, 255, 255, 0.54);
  border-radius: 28px;
  background: rgba(255, 250, 241, 0.74);
  box-shadow: 0 24px 70px rgba(44, 29, 6, 0.16);
  backdrop-filter: blur(18px);
}

.weekly-flyer-deals h3 {
  margin: 0;
  font-size: clamp(22px, 2.4vw, 34px);
}

.flyer-modal {
  position: fixed;
  inset: 0;
  z-index: 12000;
  display: none;
}

.flyer-modal.open {
  display: block;
}

.flyer-modal-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(31, 36, 31, 0.5);
  backdrop-filter: blur(10px);
}

.flyer-modal-panel {
  position: absolute;
  inset: 4vh 4vw;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
  gap: 12px;
  padding: clamp(12px, 2vw, 20px);
  border: 1px solid rgba(255, 255, 255, 0.54);
  border-radius: 28px;
  background: rgba(255, 250, 241, 0.92);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.24);
}

.flyer-modal-panel img {
  width: 100%;
  height: 100%;
  min-height: 0;
  border-radius: 20px;
  object-fit: contain;
}

body.flyer-modal-open {
  overflow: hidden;
}

@media (max-width: 768px) {
  .weekly-flyer-layout {
    grid-template-columns: 1fr;
  }

  .weekly-flyer-image-button {
    border-radius: 22px;
    padding: 7px;
  }

  .weekly-flyer-image-button img {
    max-height: 70vh;
    border-radius: 17px;
  }

  .flyer-modal-panel {
    inset: 10px;
    border-radius: 22px;
  }

  .flyer-modal-panel img {
    border-radius: 16px;
  }
}

.product-row {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(218px, 250px);
  gap: 16px;
  overflow-x: auto;
  padding: 4px 2px 16px;
  scroll-snap-type: x proximity;
}

.product-card {
  display: grid;
  grid-template-rows: 150px auto;
  overflow: hidden;
  scroll-snap-align: start;
}

.product-image {
  display: grid;
  place-items: center;
  background: radial-gradient(circle at 50% 35%, rgba(244, 166, 42, 0.18), rgba(31, 107, 58, 0.07));
}

.product-image img {
  width: 72%;
  height: 118px;
  object-fit: contain;
}

.image-coming-soon {
  display: grid;
  width: 78%;
  min-height: 92px;
  place-items: center;
  border: 1px dashed rgba(42, 60, 48, 0.22);
  border-radius: 18px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
  text-align: center;
}

.product-body {
  display: grid;
  gap: 9px;
  padding: 16px;
}

.product-label {
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.product-price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.product-price {
  color: var(--green);
  font-size: 19px;
  font-weight: 900;
}

.add-button {
  min-width: 64px;
  min-height: 36px;
  border-radius: 999px;
  background: var(--green);
  color: #ffffff;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.add-button:hover {
  background: var(--green-dark);
  transform: translateY(-1px);
}

.product-result-card,
.empty-results {
  display: grid;
  gap: 8px;
  padding: 14px;
  border-radius: var(--radius);
  background: var(--panel-2);
}

.product-result-card {
  grid-template-columns: 74px minmax(0, 1fr);
  align-items: start;
}

.product-result-image {
  display: grid;
  place-items: center;
  width: 74px;
  aspect-ratio: 1;
  overflow: hidden;
  border: 1px solid rgba(255, 250, 240, 0.72);
  border-radius: 18px;
  background: rgba(255, 250, 240, 0.66);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.34);
}

.product-result-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-result-image span {
  max-width: 58px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 800;
  line-height: 1.15;
  text-align: center;
}

.product-result-body {
  display: grid;
  min-width: 0;
  gap: 7px;
}

.availability-note {
  font-size: 12px;
}

.product-category {
  color: var(--saffron);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.product-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.product-meta span {
  padding: 5px 9px;
  border-radius: 999px;
  background: rgba(47, 125, 69, 0.08);
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.save-list-button {
  width: fit-content;
  border: 1px solid rgba(31, 107, 58, 0.14);
  background: rgba(31, 107, 58, 0.08);
  color: var(--green-dark);
}

.shopping-list-drawer {
  position: fixed;
  inset: 0;
  z-index: 13000;
  display: none;
}

.shopping-list-drawer.open {
  display: block;
}

.shopping-list-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(31, 36, 31, 0.32);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
}

.shopping-list-panel {
  position: absolute;
  top: 18px;
  right: 18px;
  bottom: 18px;
  display: grid;
  grid-template-rows: auto auto minmax(0, 1fr) auto auto;
  gap: 12px;
  width: min(430px, calc(100vw - 28px));
  padding: 18px;
  border: 1px solid rgba(255, 252, 244, 0.78);
  border-radius: 30px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.9), rgba(255, 248, 236, 0.8)),
    radial-gradient(circle at 90% 8%, rgba(244, 166, 42, 0.16), transparent 16rem);
  box-shadow: 0 30px 90px rgba(47, 35, 21, 0.22);
  -webkit-backdrop-filter: blur(22px) saturate(1.12);
  backdrop-filter: blur(22px) saturate(1.12);
}

.shopping-list-note {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.shopping-list-items {
  display: grid;
  gap: 10px;
  overflow-y: auto;
  padding-right: 4px;
}

.shopping-list-item {
  display: grid;
  gap: 10px;
  padding: 12px;
  border: 1px solid rgba(31, 36, 31, 0.08);
  border-radius: 20px;
  background: rgba(255, 253, 248, 0.74);
  box-shadow: 0 10px 24px rgba(75, 55, 26, 0.07);
}

.shopping-list-item strong {
  color: var(--text);
}

.shopping-list-item p {
  margin: 3px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.shopping-list-controls {
  display: grid;
  grid-template-columns: 74px minmax(0, 1fr) auto;
  gap: 8px;
  align-items: end;
}

.shopping-list-controls label {
  display: grid;
  gap: 4px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 900;
}

.shopping-list-controls input {
  min-height: 36px;
  padding: 7px 9px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.82);
}

.shopping-list-actions,
.deals-drawer-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

.shopping-list-open {
  overflow: hidden;
}

.shopping-list-fab {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 80;
  border: 1px solid rgba(31, 107, 58, 0.18);
  border-radius: 999px;
  background: rgba(255, 250, 240, 0.96);
  color: var(--green);
  box-shadow: 0 14px 34px rgba(57, 42, 25, 0.14);
  cursor: pointer;
  font-weight: 900;
  padding: 10px 13px;
}

.import-preview-row {
  border-left: 4px solid rgba(111, 106, 95, 0.24);
}

.import-create {
  border-left-color: rgba(31, 107, 58, 0.64);
}

.import-update {
  border-left-color: rgba(244, 166, 42, 0.84);
}

.import-invalid {
  border-left-color: rgba(185, 58, 47, 0.72);
}

.import-status-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 70px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255, 250, 240, 0.76);
  color: var(--text);
  font-size: 12px;
  font-weight: 900;
}

.import-status-pill.success {
  background: rgba(31, 107, 58, 0.12);
  color: var(--green);
}

.import-status-pill.warning {
  background: rgba(244, 166, 42, 0.16);
  color: #8a5205;
}

.import-error-text {
  color: var(--red) !important;
  font-weight: 800;
}

.search-page {
  min-height: 100vh;
  background:
    linear-gradient(180deg, rgba(255, 250, 240, 0.82), rgba(255, 248, 235, 0.9)),
    var(--site-home-bg) center / cover fixed;
  color: var(--text);
}

.search-page-header {
  position: sticky;
  top: 14px;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(100% - 32px, 1120px);
  margin: 14px auto 0;
  padding: 10px 14px;
  border: 1px solid rgba(255, 250, 240, 0.76);
  border-radius: 24px;
  background: rgba(255, 250, 240, 0.76);
  box-shadow: 0 18px 42px rgba(47, 35, 21, 0.12);
  backdrop-filter: blur(18px);
}

.search-page-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: flex-end;
}

.search-page-nav a {
  padding: 9px 12px;
  border-radius: 999px;
  color: var(--text);
  font-size: 13px;
  font-weight: 800;
  transition: background 180ms ease, transform 180ms ease;
}

.search-page-nav a:hover {
  background: rgba(255, 255, 255, 0.72);
  transform: translateY(-1px);
}

.search-page-main {
  width: min(100% - 32px, 1120px);
  margin: 24px auto 80px;
}

.search-hero-panel,
.search-results-section {
  border: 1px solid rgba(255, 250, 240, 0.72);
  border-radius: 30px;
  background: rgba(255, 250, 240, 0.8);
  box-shadow: 0 22px 56px rgba(47, 35, 21, 0.12);
  backdrop-filter: blur(20px);
}

.search-hero-panel {
  display: grid;
  gap: 12px;
  padding: clamp(24px, 5vw, 46px);
}

.search-hero-panel h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(34px, 6vw, 72px);
  line-height: 0.95;
}

.search-hero-panel p {
  max-width: 720px;
  color: var(--muted);
  font-size: clamp(15px, 2vw, 18px);
}

.search-page-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  max-width: 760px;
  margin-top: 8px;
}

.search-page-form input {
  min-height: 52px;
  padding: 0 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.84);
  color: var(--text);
  font: inherit;
  font-weight: 700;
  outline: none;
}

.search-suggestion-row {
  justify-content: flex-start;
  margin-top: 2px;
}

.search-filter-bar {
  display: grid;
  grid-template-columns: minmax(170px, 1fr) minmax(170px, 1fr) auto auto auto;
  gap: 10px;
  align-items: end;
  max-width: 960px;
  margin-top: 8px;
  padding: 12px;
  border: 1px solid rgba(31, 36, 31, 0.08);
  border-radius: 22px;
  background: rgba(255, 253, 248, 0.62);
}

.search-filter-bar label {
  display: grid;
  gap: 5px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
}

.search-filter-bar select {
  min-height: 40px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.86);
  color: var(--text);
  font: inherit;
  font-size: 13px;
  font-weight: 800;
  padding: 0 10px;
}

.search-filter-check {
  display: flex !important;
  min-height: 40px;
  align-items: center;
  gap: 8px !important;
  padding: 9px 11px;
  border-radius: 999px;
  background: rgba(31, 107, 58, 0.08);
  color: var(--green-dark) !important;
}

.search-filter-check input {
  width: 16px;
  height: 16px;
}

.search-results-section {
  display: grid;
  gap: 18px;
  margin-top: 22px;
  padding: clamp(18px, 4vw, 30px);
}

.compact-heading {
  margin-bottom: 0;
}

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

.search-page-card {
  grid-template-columns: 92px minmax(0, 1fr);
  background: rgba(255, 255, 255, 0.68);
  border: 1px solid rgba(255, 250, 240, 0.78);
  box-shadow: 0 12px 28px rgba(47, 35, 21, 0.08);
}

.search-page-card .product-result-image {
  width: 92px;
  border-radius: 22px;
}

.search-empty-state {
  grid-column: 1 / -1;
}

@media (max-width: 760px) {
  .search-page {
    background-attachment: scroll;
  }

  .search-page-header,
  .search-page-main {
    width: min(100% - 24px, 430px);
  }

  .search-page-header {
    align-items: flex-start;
    border-radius: 22px;
  }

  .search-page-nav {
    max-width: 230px;
  }

  .search-page-nav a {
    padding: 8px 10px;
    font-size: 12px;
  }

  .search-hero-panel,
  .search-results-section {
    border-radius: 24px;
  }

  .search-page-form,
  .search-results-grid,
  .search-filter-bar {
    grid-template-columns: 1fr;
  }

  .search-filter-bar {
    padding: 10px;
    border-radius: 20px;
  }

  .search-page-card {
    grid-template-columns: 78px minmax(0, 1fr);
  }

  .search-page-card .product-result-image {
    width: 78px;
    border-radius: 18px;
  }

  .shopping-list-panel {
    inset: auto 10px 10px;
    max-height: min(82vh, 720px);
    width: calc(100vw - 20px);
    border-radius: 26px;
    padding: 14px;
  }

  .shopping-list-controls {
    grid-template-columns: 68px minmax(0, 1fr);
  }

  .shopping-list-controls .danger {
    grid-column: 1 / -1;
    width: fit-content;
  }

  .shopping-list-fab {
    right: 76px;
    bottom: 16px;
    min-height: 42px;
    padding: 9px 12px;
  }
}

.service-section {
  background: transparent;
}

.service-section::before {
  background:
    radial-gradient(ellipse at 24% 30%, rgba(255, 250, 240, 0.26), transparent 32rem),
    radial-gradient(ellipse at 78% 38%, rgba(31, 107, 58, 0.11), transparent 30rem),
    radial-gradient(ellipse at 48% 88%, rgba(244, 166, 42, 0.07), transparent 28rem);
}

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

.service-card {
  min-height: 210px;
  padding: 22px;
}

.social-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.social-row a {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.74);
  box-shadow: inset 0 0 0 1px var(--line);
}

.catering-panel {
  max-width: 980px;
  padding: clamp(24px, 5vw, 44px);
  background:
    linear-gradient(135deg, rgba(185, 75, 55, 0.16), rgba(217, 130, 36, 0.14)),
    var(--panel);
}

.assistant-section {
  background: transparent;
}

.assistant-section::before {
  background:
    radial-gradient(ellipse at 20% 26%, rgba(255, 255, 255, 0.28), transparent 30rem),
    radial-gradient(ellipse at 78% 50%, rgba(244, 166, 42, 0.09), transparent 31rem),
    radial-gradient(ellipse at 48% 92%, rgba(31, 107, 58, 0.07), transparent 30rem);
}

.chat-shell {
  max-width: 920px;
  overflow: hidden;
}

.chat-log {
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-height: 260px;
  max-height: 360px;
  overflow-y: auto;
  padding: 20px;
}

.chat-message {
  width: fit-content;
  max-width: min(78%, 620px);
  padding: 12px 14px;
  border-radius: var(--radius);
}

.chat-message.bot {
  background: var(--panel-2);
}

.chat-message.user {
  align-self: flex-end;
  background: var(--saffron);
  color: #211206;
}

.chat-form {
  display: flex;
  gap: 10px;
  padding: 14px;
  background: rgba(47, 125, 69, 0.06);
}

.chat-form input {
  flex: 1;
}

.about-section,
.contact-section {
  background: transparent;
}

.about-section::before,
.contact-section::before {
  background:
    radial-gradient(ellipse at 18% 32%, rgba(255, 250, 240, 0.3), transparent 32rem),
    radial-gradient(ellipse at 80% 42%, rgba(244, 166, 42, 0.1), transparent 30rem),
    radial-gradient(ellipse at 46% 90%, rgba(31, 107, 58, 0.08), transparent 30rem);
}

.about-layout,
.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.85fr);
  gap: 22px;
  align-items: start;
}

.about-card,
.contact-info,
.contact-form {
  padding: 24px;
}

.about-detail,
.info-row {
  padding-bottom: 16px;
  margin-bottom: 16px;
  box-shadow: inset 0 -1px 0 var(--line);
}

.about-detail:last-child,
.info-row:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  box-shadow: none;
}

.about-detail span,
.info-row span,
label {
  display: block;
  margin-bottom: 7px;
  color: var(--saffron);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.about-detail strong {
  font-size: 18px;
}

.visit-photo {
  margin: 0;
}

.visit-photo img {
  width: 100%;
  aspect-ratio: 16 / 10;
  border-radius: 22px;
  object-fit: cover;
}

label {
  display: grid;
  gap: 8px;
  text-transform: none;
}

input,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fffdf8;
  color: var(--cream);
  padding: 13px 14px;
  outline: none;
}

input:focus,
textarea:focus {
  border-color: var(--saffron);
  box-shadow: 0 0 0 4px rgba(244, 161, 61, 0.15);
}

textarea {
  resize: vertical;
}

.form-status,
.loading {
  color: var(--muted);
}

.toggle-row {
  display: flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  padding: 12px 14px;
  border: 1px solid rgba(255, 252, 244, 0.62);
  border-radius: 999px;
  background: rgba(255, 250, 241, 0.68);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

.toggle-row input {
  width: 18px;
  height: 18px;
  accent-color: var(--green);
}

.toggle-row span {
  color: var(--text);
  font-weight: 900;
}

.phone-verification-box {
  display: grid;
  gap: 12px;
  margin-top: 18px;
  padding: 14px;
  border: 1px solid rgba(255, 252, 244, 0.62);
  border-radius: 22px;
  background: rgba(255, 250, 241, 0.62);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.76);
}

.inline-account-form,
.verification-actions {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  align-items: end;
}

.verification-actions {
  grid-template-columns: auto minmax(0, 1fr);
}

.verified-badge,
.unverified-badge {
  display: inline-flex;
  width: fit-content;
  padding: 5px 10px;
  border-radius: 999px;
  font-weight: 900;
}

.verified-badge {
  background: rgba(31, 107, 58, 0.12);
  color: var(--green);
}

.unverified-badge {
  background: rgba(185, 58, 47, 0.1);
  color: var(--red);
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) 2fr;
  gap: 28px;
  padding: 44px var(--pad);
  background: rgba(255, 253, 248, 0.9);
  backdrop-filter: blur(5px);
  box-shadow: inset 0 1px 0 var(--line);
}

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

.footer-logo {
  width: 58px;
  height: 58px;
  border-radius: 16px;
  object-fit: contain;
  background: #ffffff;
  box-shadow: 0 10px 24px rgba(75, 55, 26, 0.08);
}

.footer-brand strong,
.footer-columns h3 {
  color: var(--cream);
}

.footer-brand p {
  margin-bottom: 0;
  color: var(--muted);
}

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

.footer-columns div {
  display: grid;
  gap: 7px;
  align-content: start;
}

.footer-columns h3 {
  margin-bottom: 4px;
  font-size: 14px;
}

.footer-columns a {
  color: var(--muted);
  font-size: 14px;
}

.support-widget {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 80;
}

.support-toggle {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  border: 1px solid rgba(244, 161, 61, 0.34);
  border-radius: 999px;
  background: rgba(255, 250, 240, 0.96);
  color: #1d1008;
  box-shadow: 0 14px 34px rgba(57, 42, 25, 0.14);
  cursor: pointer;
  font-weight: 900;
  padding: 7px 9px 7px 14px;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.support-toggle:hover {
  border-color: rgba(244, 161, 61, 0.58);
  box-shadow: 0 18px 40px rgba(57, 42, 25, 0.16);
  transform: translateY(-1px);
}

.support-toggle strong {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border-radius: 50%;
  background: var(--green-dark);
  color: #fff8ea;
  font-size: 11px;
}

@keyframes supportGlowPulse {
  0%,
  100% {
    box-shadow:
      0 14px 34px rgba(57, 42, 25, 0.14),
      0 0 0 rgba(244, 166, 42, 0);
  }
  50% {
    box-shadow:
      0 18px 42px rgba(57, 42, 25, 0.15),
      0 0 22px rgba(244, 166, 42, 0.2);
  }
}

.support-panel {
  position: absolute;
  right: 0;
  bottom: 72px;
  display: none;
  width: min(390px, calc(100vw - 30px));
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 30px;
  background: rgba(255, 250, 242, 0.98);
  box-shadow: var(--shadow);
}

.support-widget.open .support-panel {
  display: block;
  animation: supportPanelIn 180ms ease both;
}

.deals-drawer {
  display: none;
}

.support-panel-header {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 14px;
  padding: 18px 18px 12px;
  background:
    radial-gradient(circle at 80% 0%, rgba(244, 161, 61, 0.2), transparent 14rem),
    var(--panel);
}

.support-panel-header h2 {
  margin-bottom: 0;
  font-size: 22px;
}

.support-close {
  border: 0;
  border-radius: 999px;
  background: rgba(47, 125, 69, 0.08);
  color: var(--cream);
  cursor: pointer;
  font-size: 12px;
  font-weight: 900;
  padding: 8px 10px;
}

.support-quick-actions {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding: 12px 14px;
  background: rgba(47, 125, 69, 0.04);
}

.support-quick-actions button {
  flex: 0 0 auto;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--panel-2);
  color: var(--cream);
  cursor: pointer;
  font-size: 12px;
  font-weight: 800;
  padding: 8px 11px;
}

.support-messages {
  display: flex;
  min-height: 270px;
  max-height: 360px;
  flex-direction: column;
  gap: 10px;
  overflow-y: auto;
  padding: 16px;
}

.support-message {
  width: fit-content;
  max-width: 88%;
  border-radius: 18px;
  padding: 11px 13px;
  color: var(--cream);
  font-size: 14px;
}

.support-message.bot {
  background: var(--panel-2);
}

.support-message.user {
  align-self: flex-end;
  background: var(--saffron);
  color: #211206;
}

.support-message.typing {
  color: var(--muted);
  font-style: italic;
}

.support-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px;
  padding: 12px;
  background: rgba(47, 125, 69, 0.06);
}

.support-form input {
  min-height: 46px;
  border-radius: 999px;
}

.support-form button {
  border: 0;
  border-radius: 999px;
  background: var(--green);
  color: #ffffff;
  cursor: pointer;
  font-weight: 900;
  padding: 10px 15px;
}

@keyframes supportPanelIn {
  from {
    opacity: 0;
    transform: translateY(10px) scale(0.98);
  }

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

.admin-main,
.account-main {
  padding: 42px var(--pad) 80px;
}

.admin-main {
  --admin-gap: 12px;
  --admin-radius: 20px;
  max-width: 1360px;
  margin: 0 auto;
  padding-top: 24px;
  padding-bottom: 48px;
}

.admin-body .site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 4px var(--pad);
}

.admin-body .brand-logo {
  width: 58px;
  height: 58px;
  border-radius: 16px;
}

.admin-body .site-nav {
  justify-content: flex-end;
  padding: 0;
}

.admin-login {
  max-width: 560px;
  margin: 34px auto;
}

.admin-form {
  display: grid;
  gap: 10px;
}

.admin-dashboard h1,
.account-section h1 {
  font-size: clamp(38px, 6vw, 72px);
}

.admin-dashboard h1 {
  margin-bottom: 6px;
  font-size: clamp(30px, 4vw, 48px);
}

.admin-card h2 {
  margin-bottom: 8px;
  font-size: clamp(20px, 2vw, 28px);
}

.admin-topline {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 14px;
}

.admin-tabs {
  display: flex;
  gap: 6px;
  margin-bottom: 12px;
  overflow-x: auto;
  padding-bottom: 3px;
}

.admin-tabs button {
  flex: 0 0 auto;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--panel);
  color: var(--muted);
  cursor: pointer;
  font-size: 13px;
  font-weight: 900;
  padding: 7px 11px;
}

.admin-tabs button.active {
  background: var(--saffron);
  color: #211206;
}

.admin-dashboard[data-active-section="products"] .admin-card[data-admin-section]:not([data-admin-section="products"]),
.admin-dashboard[data-active-section="search-insights"] .admin-card[data-admin-section]:not([data-admin-section="search-insights"]),
.admin-dashboard[data-active-section="images"] .admin-card[data-admin-section]:not([data-admin-section="images"]),
.admin-dashboard[data-active-section="site-images"] .admin-card[data-admin-section]:not([data-admin-section="site-images"]),
.admin-dashboard[data-active-section="homepage"] .admin-card[data-admin-section]:not([data-admin-section="homepage"]),
.admin-dashboard[data-active-section="inventory"] .admin-card[data-admin-section]:not([data-admin-section="inventory"]),
.admin-dashboard[data-active-section="deals"] .admin-card[data-admin-section]:not([data-admin-section="deals"]),
.admin-dashboard[data-active-section="imports"] .admin-card[data-admin-section]:not([data-admin-section="imports"]),
.admin-dashboard[data-active-section="deployment"] .admin-card[data-admin-section]:not([data-admin-section="deployment"]),
.admin-dashboard[data-active-section="support"] .admin-card[data-admin-section]:not([data-admin-section="support"]),
.admin-dashboard[data-active-section="cafe"] .admin-card[data-admin-section]:not([data-admin-section="cafe"]),
.admin-dashboard[data-active-section="grocery"] .admin-card[data-admin-section]:not([data-admin-section="grocery"]),
.admin-dashboard[data-active-section="business"] .admin-card[data-admin-section]:not([data-admin-section="business"]) {
  display: none;
}

.admin-grid,
.account-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--admin-gap, 18px);
}

.compact-admin-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 9px;
}

.product-admin-card,
.messages-card {
  grid-column: auto;
}

.admin-card,
.admin-form {
  border: 1px solid var(--line);
  border-radius: var(--admin-radius, var(--radius-lg));
  background: linear-gradient(145deg, var(--panel), #f8efe1);
  box-shadow: var(--shadow-soft);
}

.admin-card {
  padding: 14px;
}

.admin-form {
  padding: 12px;
}

.deployment-card {
  min-height: auto;
}

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

.system-health-item {
  min-height: 0;
}

.system-warning-list {
  border-color: rgba(244, 166, 42, 0.28);
  background: rgba(255, 246, 225, 0.7);
}

.search-insight-grid {
  display: grid;
  gap: 12px;
}

.compact-search-row {
  box-shadow: none;
}

.empty-results-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.admin-main label {
  gap: 5px;
  margin-bottom: 0;
  font-size: 11px;
}

.admin-main input,
.admin-main textarea,
.admin-main select {
  min-height: 38px;
  border-radius: 14px;
  font-size: 13px;
  padding: 9px 10px;
}

.admin-main textarea {
  min-height: 76px;
}

.admin-main .btn {
  min-height: 38px;
  width: fit-content;
  padding: 8px 14px;
  font-size: 13px;
}

.admin-main .small-button,
.admin-main .text-button {
  min-height: 30px;
  padding: 6px 10px;
  font-size: 12px;
}

.admin-main .toggle-row {
  padding: 8px 10px;
}

.admin-main .toggle-row input {
  width: 16px;
  height: 16px;
}

.admin-main .loading,
.admin-main .form-status {
  margin-bottom: 8px;
  font-size: 13px;
}

.admin-list {
  display: grid;
  gap: 9px;
  margin-top: 10px;
}

.inline-upload-form,
.inline-url-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  align-items: end;
}

.admin-item {
  display: grid;
  gap: 8px;
  padding: 10px;
  border-radius: 16px;
  background: var(--panel-2);
}

.admin-item-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.deals-manager-layout {
  display: grid;
  grid-template-columns: minmax(420px, 0.95fr) minmax(520px, 1.05fr);
  gap: 22px;
  align-items: start;
}

.deal-tool-card,
.deal-editor-form,
.deal-list-group {
  background: rgba(255, 250, 241, 0.84);
  backdrop-filter: blur(14px);
}

.deal-tool-card,
.deal-editor-form {
  gap: 16px;
  padding: clamp(18px, 2.1vw, 26px);
}

.admin-card[data-admin-section="deals"] {
  grid-column: 1 / -1;
  padding: clamp(18px, 2vw, 26px);
}

.admin-card[data-admin-section="deals"] label {
  gap: 7px;
  font-size: 12px;
}

.admin-card[data-admin-section="deals"] input,
.admin-card[data-admin-section="deals"] textarea,
.admin-card[data-admin-section="deals"] select {
  min-height: 43px;
  border-radius: 16px;
}

.admin-dashboard[data-active-section="deals"] .admin-grid {
  grid-template-columns: 1fr;
  gap: 22px;
}

.nested-admin-form {
  border: 0;
  box-shadow: none;
  padding: 0;
  background: transparent;
}

.deal-tool-card .nested-admin-form {
  gap: 12px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(31, 36, 31, 0.09);
}

.deal-tool-card .nested-admin-form:last-of-type {
  border-bottom: 0;
}

.deal-editor-column {
  display: grid;
  gap: 10px;
}

.deal-editor-form .compact-admin-grid,
.deal-tool-card .compact-admin-grid {
  grid-template-columns: repeat(2, minmax(190px, 1fr));
  gap: 13px;
}

.deal-date-tools {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 7px;
  padding: 11px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.45);
}

.deal-date-tools span,
.deal-state-pill {
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
}

.advanced-options {
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 9px;
  background: rgba(255, 255, 255, 0.42);
}

.advanced-options summary {
  cursor: pointer;
  font-size: 12px;
  font-weight: 900;
}

.deal-preview-card {
  display: grid;
  gap: 8px;
  padding: 12px;
  border: 1px solid rgba(244, 166, 42, 0.32);
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(255, 250, 241, 0.94), rgba(255, 255, 255, 0.72));
  box-shadow: 0 18px 40px rgba(79, 53, 18, 0.12);
}

.deal-preview-card > span {
  color: #9b5d00;
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.deal-preview-content {
  display: grid;
  grid-template-columns: 86px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
}

.deal-preview-content img,
.deal-preview-empty {
  width: 86px;
  height: 72px;
  border-radius: 16px;
  object-fit: cover;
}

.deal-preview-empty {
  display: grid;
  place-items: center;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  background: rgba(255, 255, 255, 0.64);
}

.deal-preview-price {
  color: var(--green);
  font-size: 20px;
  font-weight: 950;
}

.deal-warning-list {
  margin: 0;
  padding: 8px 8px 8px 26px;
  border-radius: 14px;
  color: #7a4600;
  background: rgba(244, 166, 42, 0.14);
}

.ai-draft-card,
.deal-admin-item {
  border: 1px solid rgba(31, 36, 31, 0.1);
  background: rgba(255, 255, 255, 0.54);
}

.deal-list-group {
  display: grid;
  gap: 9px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 18px;
}

.deal-list-heading h3 {
  margin: 0;
  font-size: 15px;
}

.deal-list-heading span {
  display: inline-grid;
  min-width: 28px;
  min-height: 28px;
  place-items: center;
  border-radius: 999px;
  background: rgba(31, 107, 58, 0.12);
  color: var(--green);
  font-weight: 950;
}

.flyer-admin-thumb {
  width: 100%;
  max-height: 220px;
  border-radius: 16px;
  object-fit: contain;
  background: rgba(255, 255, 255, 0.64);
}

.site-asset-item {
  grid-template-columns: 140px minmax(0, 1fr);
  align-items: start;
}

.site-asset-preview {
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 250, 241, 0.76);
}

.site-asset-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.site-asset-meta {
  display: grid;
  gap: 8px;
}

.site-asset-meta code {
  color: var(--muted);
  font-size: 12px;
  overflow-wrap: anywhere;
}

.site-asset-forms {
  display: grid;
  gap: 8px;
}

.site-assets-group {
  display: grid;
  gap: 12px;
}

.site-assets-group + .site-assets-group {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(31, 36, 31, 0.12);
}

.site-assets-group-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 14px;
  border-radius: 10px;
  background: rgba(233, 241, 235, 0.82);
}

.site-assets-group-heading span {
  color: #1f6b3a;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.site-assets-group-heading h3,
.site-assets-group-heading p {
  margin: 0;
}

.site-assets-group-heading p {
  max-width: 520px;
  color: var(--muted);
  font-size: 13px;
}

.site-assets-group-list {
  display: grid;
  gap: 10px;
}

.site-asset-label-fields {
  grid-template-columns: minmax(0, 1.35fr) minmax(120px, 0.65fr);
  padding: 10px;
  border: 1px solid rgba(31, 36, 31, 0.1);
  border-radius: 10px;
  background: rgba(255, 250, 241, 0.62);
}

.site-asset-label-fields .wide-field {
  grid-column: 1 / -1;
}

@media (max-width: 720px) {
  .site-assets-group-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .site-asset-label-fields {
    grid-template-columns: 1fr;
  }

  .site-asset-label-fields .wide-field {
    grid-column: auto;
  }

  .deals-manager-layout,
  .deal-preview-content {
    grid-template-columns: 1fr;
  }

  .deal-editor-form .compact-admin-grid,
  .deal-tool-card .compact-admin-grid {
    grid-template-columns: 1fr;
  }

  .deal-preview-content img,
  .deal-preview-empty {
    width: 100%;
    height: 120px;
  }

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

  .inline-upload-form,
  .inline-url-form {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 1180px) {
  .deals-manager-layout {
    grid-template-columns: 1fr;
  }
}

.item-actions,
.admin-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.admin-status-list {
  display: grid;
  gap: 6px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.admin-status-list li {
  display: grid;
  gap: 2px;
  border-radius: 13px;
  background: rgba(255, 253, 248, 0.72);
  padding: 8px 10px;
}

.admin-status-list span,
.admin-status-list em {
  color: var(--muted);
  font-size: 12px;
}

.admin-status-list em {
  color: var(--green);
  font-style: normal;
  font-weight: 800;
}

.small-button,
.text-button {
  min-height: 36px;
  border: 0;
  border-radius: 999px;
  background: var(--panel-3);
  color: var(--cream);
  cursor: pointer;
  font-weight: 800;
  padding: 8px 12px;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.small-button:hover,
.text-button:hover {
  transform: translateY(-1px);
}

.danger {
  background: rgba(198, 75, 53, 0.22);
  color: #8f2c20;
}

.check-row {
  display: flex;
  align-items: center;
  gap: 10px;
}

.check-row input {
  width: auto;
}

select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fffdf8;
  color: var(--cream);
  padding: 13px 14px;
}

.hidden {
  display: none !important;
}

.account-page {
  min-height: 100vh;
}

.account-header-main {
  grid-template-columns: auto 1fr;
}

.account-nav {
  justify-content: end;
  padding: 0;
}

.account-auth-view {
  display: grid;
  min-height: calc(100vh - 180px);
  align-content: center;
  justify-items: center;
  gap: 24px;
}

.account-auth-heading {
  max-width: 680px;
  margin-bottom: 0;
  text-align: center;
}

.account-auth-heading h1 {
  font-size: clamp(38px, 6vw, 68px);
  letter-spacing: 0;
}

.account-auth-heading p:last-child {
  color: var(--muted);
  font-size: clamp(16px, 1.8vw, 20px);
}

.account-auth-card {
  display: grid;
  width: min(100%, 520px);
  gap: 16px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 34px;
  background: linear-gradient(145deg, rgba(255, 250, 242, 0.96), rgba(248, 239, 225, 0.98));
  box-shadow: var(--shadow);
}

.account-tabs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 6px;
  padding: 6px;
  border-radius: 999px;
  background: rgba(47, 125, 69, 0.07);
}

.account-tabs button {
  min-height: 44px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font-weight: 900;
}

.account-tabs button.active {
  background: var(--saffron);
  color: #211206;
  box-shadow: 0 10px 24px rgba(244, 161, 61, 0.22);
}

.account-form {
  display: grid;
  gap: 14px;
  padding: 6px;
}

.account-dashboard {
  display: grid;
  gap: 22px;
}

.account-dashboard-hero {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  padding: clamp(22px, 4vw, 36px);
  border: 1px solid var(--line);
  border-radius: 34px;
  background:
    linear-gradient(135deg, rgba(101, 185, 111, 0.16), transparent 42%),
    linear-gradient(145deg, #fffaf2, #f4ecde);
  box-shadow: var(--shadow-soft);
}

.account-dashboard-hero h1 {
  margin: 0;
  font-size: clamp(34px, 5vw, 62px);
  letter-spacing: 0;
}

.account-dashboard-hero p {
  margin: 8px 0 0;
  color: var(--muted);
}

.account-portal {
  display: grid;
  grid-template-columns: 250px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
}

.account-sidebar {
  position: sticky;
  top: 128px;
  display: grid;
  gap: 8px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: rgba(255, 250, 242, 0.9);
  box-shadow: var(--shadow-soft);
}

.account-sidebar button {
  min-height: 44px;
  border: 0;
  border-radius: 18px;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font-weight: 900;
  padding: 10px 12px;
  text-align: left;
}

.account-sidebar button.active,
.account-sidebar button:hover {
  background: rgba(244, 161, 61, 0.16);
  color: var(--cream);
}

.account-dashboard-content {
  min-width: 0;
}

.dashboard-panel {
  display: none;
  gap: 18px;
}

.dashboard-panel.active {
  display: grid;
}

.dashboard-card {
  border: 1px solid var(--line);
  border-radius: 30px;
  background: linear-gradient(145deg, rgba(255, 250, 242, 0.96), rgba(248, 239, 225, 0.98));
  box-shadow: var(--shadow-soft);
  padding: clamp(18px, 3vw, 28px);
}

.dashboard-card h2,
.dashboard-card h3,
.dashboard-card p {
  margin-top: 0;
}

.dashboard-kicker {
  display: inline-flex;
  color: var(--green);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.preferred-store-card,
.dashboard-card-heading,
.account-deal-row,
.help-actions,
.support-ticket-empty {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.preferred-store-card p,
.dashboard-card-heading small,
.empty-state-card p,
.help-card p,
.dashboard-empty {
  color: var(--muted);
}

.store-hours-pill {
  flex: 0 0 auto;
  border-radius: 999px;
  background: rgba(101, 185, 111, 0.16);
  color: var(--green-dark);
  font-weight: 900;
  padding: 10px 14px;
}

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

.dashboard-card.mini {
  display: grid;
  gap: 6px;
}

.dashboard-card.mini span {
  color: var(--muted);
  font-weight: 800;
}

.dashboard-card.mini strong {
  color: var(--saffron);
  font-size: 38px;
  line-height: 1;
}

.dashboard-card.mini p {
  color: var(--muted);
  margin: 0;
}

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

.account-deal-card {
  display: grid;
  grid-template-rows: 150px 1fr;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255, 253, 248, 0.72);
}

.account-deal-card > div:last-child {
  display: grid;
  gap: 8px;
  padding: 14px;
}

.account-deal-card span {
  color: var(--green);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.account-deal-card h3 {
  font-size: 17px;
  margin: 0;
}

.account-deal-card p {
  color: var(--muted);
  font-size: 14px;
  margin: 0;
}

.account-deal-image {
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, #f3eadb, #fffdf8);
}

.account-deal-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.account-deal-row strong {
  color: var(--saffron);
}

.account-deal-row em {
  color: var(--muted);
  font-size: 12px;
  font-style: normal;
  font-weight: 800;
}

.empty-state-card {
  min-height: 300px;
  align-content: center;
}

.account-details-list {
  display: grid;
  gap: 12px;
  margin: 18px 0 0;
}

.account-details-list div,
.support-ticket-empty {
  border-radius: 18px;
  background: rgba(47, 125, 69, 0.06);
  padding: 14px;
}

.account-details-list dt {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.account-details-list dd {
  margin: 4px 0 0;
  font-weight: 900;
}

.help-actions {
  justify-content: flex-start;
  margin: 20px 0;
}

.support-ticket-empty span {
  color: var(--muted);
}

.cafe-body {
  min-height: 100vh;
  background-color: var(--bg);
  background-image:
    linear-gradient(180deg, rgba(255, 250, 240, 0.1), rgba(255, 250, 240, 0.08)),
    radial-gradient(circle at 14% 8%, rgba(244, 166, 42, 0.09), transparent 28rem),
    radial-gradient(circle at 88% 18%, rgba(31, 107, 58, 0.08), transparent 30rem),
    url("../images/storefront.jpg");
  background-position: center, 14% 8%, 88% 18%, center;
  background-repeat: no-repeat;
  background-size: auto, auto, auto, cover;
  background-attachment: fixed, fixed, fixed, fixed;
  color: var(--text);
}

.cafe-body .site-header {
  border-bottom: 1px solid rgba(255, 252, 244, 0.58);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(255, 250, 241, 0.72));
  box-shadow: 0 1px 0 rgba(31, 36, 31, 0.055), 0 12px 34px rgba(75, 55, 26, 0.055);
  -webkit-backdrop-filter: blur(20px) saturate(1.08);
  backdrop-filter: blur(20px) saturate(1.08);
}

.cafe-body .header-main {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 4px var(--pad);
}

.cafe-body .brand {
  gap: 0;
  font-size: 17px;
}

.cafe-body .brand-logo {
  width: 68px;
  height: 68px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow:
    0 10px 28px rgba(75, 55, 26, 0.07),
    inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

.cafe-body .site-nav {
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 4px;
  padding: 0;
  font-size: 13px;
}

.cafe-body .site-nav a {
  padding: 7px 11px;
  color: var(--muted);
}

.cafe-body .site-nav a:hover {
  background: rgba(255, 248, 236, 0.78);
  color: var(--text);
}

.cafe-hero,
.cafe-section,
.cafe-confirmation {
  animation: cafeFadeIn 240ms ease-out both;
  padding: clamp(34px, 5vw, 68px) var(--pad);
}

.cafe-hero {
  display: grid;
  min-height: clamp(340px, 46vh, 560px);
  align-items: center;
  background: transparent;
}

.cafe-hero > div {
  max-width: 680px;
  width: min(680px, 100%);
  padding: clamp(22px, 4vw, 38px);
  border: 1px solid rgba(255, 252, 244, 0.62);
  border-radius: 30px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.68), rgba(255, 248, 236, 0.56)),
    radial-gradient(circle at 14% 10%, rgba(244, 166, 42, 0.1), transparent 52%);
  box-shadow:
    0 26px 70px rgba(92, 67, 30, 0.13),
    0 8px 26px rgba(255, 248, 236, 0.38),
    inset 0 1px 0 rgba(255, 255, 255, 0.82);
  -webkit-backdrop-filter: blur(16px) saturate(1.08);
  backdrop-filter: blur(16px) saturate(1.08);
}

.cafe-hero h1 {
  color: var(--text);
  font-size: clamp(36px, 6vw, 68px);
  line-height: 0.98;
}

.cafe-hero p {
  max-width: 620px;
  color: #2d3028;
  font-size: clamp(16px, 1.8vw, 21px);
  font-weight: 650;
}

.cafe-ordering-notice {
  width: fit-content;
  margin: 14px 0 18px;
  padding: 11px 14px;
  border: 1px solid rgba(185, 58, 47, 0.18);
  border-radius: 999px;
  background: rgba(255, 248, 236, 0.78);
  color: var(--red);
  font-size: 14px;
  font-weight: 900;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.74);
}

.cafe-checkout-form.ordering-disabled {
  opacity: 0.72;
}

.cafe-posters,
.cafe-confirmation {
  background: transparent;
}

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

.menu-poster-card {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 14px;
  border: 1px solid rgba(255, 252, 244, 0.62);
  border-radius: 28px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.74), rgba(255, 250, 241, 0.62)),
    radial-gradient(circle at 18% 14%, rgba(244, 166, 42, 0.08), transparent 58%);
  box-shadow:
    0 22px 58px rgba(92, 67, 30, 0.095),
    inset 0 1px 0 rgba(255, 255, 255, 0.78);
  -webkit-backdrop-filter: blur(12px) saturate(1.08);
  backdrop-filter: blur(12px) saturate(1.08);
}

.menu-poster-card img {
  width: 100%;
  max-height: 760px;
  border-radius: 20px;
  object-fit: contain;
  background: #fff8eb;
}

.menu-poster-card figcaption {
  color: var(--text);
  font-size: 20px;
  font-weight: 900;
}

.menu-poster-fallback {
  margin: 0;
  border-radius: 18px;
  background: #fff8eb;
  color: var(--muted);
  font-weight: 900;
  padding: 28px;
  text-align: center;
}

.cafe-order-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(310px, 390px);
  gap: clamp(16px, 2.4vw, 24px);
  align-items: start;
  background: transparent;
}

.cafe-menu-list {
  display: grid;
  gap: 18px;
}

.cafe-menu-category {
  display: grid;
  gap: 14px;
  padding: clamp(14px, 2vw, 18px);
  border: 1px solid rgba(255, 252, 244, 0.58);
  border-radius: 30px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.36), rgba(255, 248, 236, 0.24)),
    radial-gradient(circle at 12% 12%, rgba(244, 166, 42, 0.08), transparent 34rem),
    radial-gradient(circle at 92% 82%, rgba(31, 107, 58, 0.06), transparent 30rem);
  box-shadow:
    0 24px 70px rgba(92, 67, 30, 0.095),
    inset 0 1px 0 rgba(255, 255, 255, 0.76),
    inset 0 -1px 0 rgba(255, 248, 236, 0.34);
  -webkit-backdrop-filter: blur(18px) saturate(1.1);
  backdrop-filter: blur(18px) saturate(1.1);
}

.cafe-category-label {
  width: fit-content;
  border-radius: 999px;
  background: rgba(255, 248, 236, 0.78);
  color: var(--label-orange);
  font-size: 16px;
  font-weight: 900;
  padding: 9px 16px;
  box-shadow:
    0 10px 24px rgba(92, 67, 30, 0.08),
    inset 0 0 0 1px rgba(184, 95, 0, 0.08);
  -webkit-backdrop-filter: blur(8px) saturate(1.06);
  backdrop-filter: blur(8px) saturate(1.06);
}

.cafe-menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
  gap: 12px;
}

.cafe-menu-card,
.cafe-cart,
.cafe-confirmation {
  border: 1px solid rgba(255, 252, 244, 0.62);
  border-radius: 28px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.58), rgba(255, 248, 236, 0.42)),
    radial-gradient(circle at 18% 14%, rgba(244, 166, 42, 0.09), transparent 58%);
  box-shadow:
    0 18px 46px rgba(92, 67, 30, 0.1),
    0 6px 22px rgba(255, 248, 236, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.82),
    inset 0 -1px 0 rgba(255, 248, 236, 0.34);
  -webkit-backdrop-filter: blur(16px) saturate(1.1);
  backdrop-filter: blur(16px) saturate(1.1);
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease, background 180ms ease;
}

.cafe-menu-card {
  display: grid;
  min-height: 176px;
  align-content: space-between;
  gap: 16px;
  padding: 16px;
}

.cafe-menu-card:hover {
  border-color: rgba(255, 255, 255, 0.78);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.7), rgba(255, 250, 241, 0.52)),
    radial-gradient(circle at 18% 14%, rgba(244, 166, 42, 0.12), transparent 60%);
  box-shadow:
    0 28px 68px rgba(92, 67, 30, 0.13),
    0 8px 26px rgba(255, 248, 236, 0.46),
    inset 0 1px 0 rgba(255, 255, 255, 0.88);
  transform: translateY(-2px);
}

.cafe-menu-card.sold-out {
  opacity: 0.58;
}

.cafe-menu-card span {
  width: fit-content;
  padding: 4px 7px;
  border-radius: 999px;
  background: rgba(255, 248, 236, 0.68);
  color: var(--label-orange);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  box-shadow: inset 0 0 0 1px rgba(184, 95, 0, 0.08);
}

.cafe-menu-card h3 {
  color: var(--text);
  font-size: clamp(18px, 2vw, 21px);
  line-height: 1.15;
}

.cafe-menu-card p {
  color: var(--muted);
  font-size: 14px;
}

.cafe-menu-card-bottom,
.cafe-cart-heading,
.cafe-cart-item-top,
.cafe-cart-summary div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.cafe-menu-card-bottom strong {
  color: var(--green);
  font-size: 22px;
  font-weight: 900;
}

.cafe-menu-card-bottom em {
  color: var(--red);
  font-style: normal;
  font-weight: 900;
}

.cafe-cart {
  position: sticky;
  top: 84px;
  display: grid;
  gap: 16px;
  padding: 16px;
}

.cafe-cart-heading h2 {
  font-size: 26px;
  margin-bottom: 0;
}

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

.cafe-cart-item {
  display: grid;
  gap: 12px;
  border-radius: 22px;
  background: rgba(255, 250, 241, 0.68);
  padding: 14px;
  transition: background 180ms ease, transform 180ms ease;
}

.cafe-cart-item:hover {
  background: rgba(255, 248, 236, 0.82);
}

.cafe-cart-item-top strong {
  display: block;
  color: var(--text);
}

.cafe-cart-item-top span,
.cafe-cart-summary small {
  color: var(--muted);
}

.cafe-quantity-controls {
  display: flex;
  align-items: center;
  gap: 8px;
}

.cafe-quantity-controls button {
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 50%;
  background: var(--green);
  color: #ffffff;
  cursor: pointer;
  font-size: 20px;
  font-weight: 900;
  transition: background 180ms ease, transform 180ms ease;
}

.cafe-quantity-controls button:hover {
  background: var(--green-dark);
  transform: translateY(-1px);
}

.cafe-quantity-controls strong {
  min-width: 34px;
  text-align: center;
}

.cafe-cart-summary {
  display: grid;
  gap: 8px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 14px 0;
}

.cafe-cart-summary strong {
  color: var(--green);
  font-size: 24px;
}

.cafe-checkout-form {
  display: grid;
  gap: 12px;
}

.cafe-payment-methods {
  display: grid;
  gap: 10px;
  margin: 2px 0 0;
  padding: 12px;
  border: 1px solid rgba(255, 252, 244, 0.62);
  border-radius: 24px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.46), rgba(255, 248, 236, 0.34)),
    radial-gradient(circle at 18% 14%, rgba(244, 166, 42, 0.08), transparent 56%);
  box-shadow:
    0 12px 30px rgba(92, 67, 30, 0.075),
    inset 0 1px 0 rgba(255, 255, 255, 0.78);
  -webkit-backdrop-filter: blur(12px) saturate(1.06);
  backdrop-filter: blur(12px) saturate(1.06);
}

.cafe-payment-methods legend {
  padding: 0 7px;
  color: var(--text);
  font-size: 13px;
  font-weight: 900;
}

.payment-choice {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  min-height: 58px;
  padding: 10px 12px;
  border: 1px solid rgba(31, 36, 31, 0.08);
  border-radius: 18px;
  background: rgba(255, 253, 248, 0.68);
  cursor: pointer;
  transition: background 180ms ease, border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.payment-choice:hover,
.payment-choice:has(input:checked) {
  border-color: rgba(31, 107, 58, 0.24);
  background: rgba(255, 250, 241, 0.9);
  box-shadow: 0 12px 26px rgba(92, 67, 30, 0.075);
  transform: translateY(-1px);
}

.payment-choice input {
  width: 18px;
  height: 18px;
  accent-color: var(--green);
}

.payment-choice span {
  display: grid;
  gap: 2px;
}

.payment-choice strong {
  color: var(--text);
  font-size: 14px;
}

.payment-choice small {
  color: var(--muted);
  line-height: 1.35;
}

.stripe-online-panel {
  display: grid;
  gap: 12px;
  padding: 14px;
  border: 1px solid rgba(255, 252, 244, 0.66);
  border-radius: 24px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.58), rgba(255, 248, 236, 0.42)),
    radial-gradient(circle at 18% 12%, rgba(31, 107, 58, 0.08), transparent 58%),
    radial-gradient(circle at 82% 86%, rgba(244, 166, 42, 0.1), transparent 58%);
  box-shadow:
    0 18px 44px rgba(92, 67, 30, 0.095),
    inset 0 1px 0 rgba(255, 255, 255, 0.82);
  -webkit-backdrop-filter: blur(16px) saturate(1.08);
  backdrop-filter: blur(16px) saturate(1.08);
}

.stripe-online-heading {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: flex-start;
}

.stripe-online-heading div {
  display: grid;
  gap: 2px;
}

.stripe-online-heading strong {
  color: var(--text);
  font-size: 15px;
}

.stripe-online-heading span,
.stripe-online-heading small,
.stripe-payment-note,
.stripe-wallet-fallback {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.4;
}

.stripe-express-box {
  min-height: 52px;
  padding: 6px;
  border-radius: 18px;
  background: rgba(255, 253, 248, 0.64);
  box-shadow: inset 0 0 0 1px rgba(31, 36, 31, 0.08);
}

.stripe-wallet-fallback {
  margin: 0;
  padding: 10px 12px;
  border-radius: 16px;
  background: rgba(255, 250, 241, 0.68);
}

.stripe-payment-note {
  margin: 0;
  color: var(--green);
  font-weight: 800;
}

.checkout-requirement-card {
  display: grid;
  gap: 8px;
  padding: 13px;
  border: 1px solid rgba(244, 166, 42, 0.28);
  border-radius: 20px;
  background:
    linear-gradient(145deg, rgba(255, 250, 241, 0.82), rgba(255, 246, 230, 0.68)),
    radial-gradient(circle at 14% 12%, rgba(244, 166, 42, 0.12), transparent 58%);
  box-shadow:
    0 14px 34px rgba(92, 67, 30, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.78);
  -webkit-backdrop-filter: blur(12px) saturate(1.06);
  backdrop-filter: blur(12px) saturate(1.06);
}

.checkout-requirement-card strong {
  color: var(--label-orange);
  font-size: 14px;
}

.checkout-requirement-card p {
  margin: 0;
  color: var(--text);
  font-size: 14px;
  font-weight: 700;
}

.checkout-requirement-card .btn {
  justify-self: start;
  min-height: 38px;
  padding: 8px 14px;
}

.cafe-checkout-form.checkout-blocked .stripe-online-panel {
  opacity: 0.72;
}

.cafe-order-payment {
  color: var(--green);
  font-size: 13px;
  font-weight: 900;
}

.customization-modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: 22px;
  background: rgba(31, 36, 31, 0.32);
  -webkit-backdrop-filter: blur(14px) saturate(1.06);
  backdrop-filter: blur(14px) saturate(1.06);
  opacity: 0;
  transition: opacity 180ms ease;
}

.customization-panel {
  width: min(760px, 100%);
  max-height: min(820px, 92vh);
  overflow: auto;
  padding: clamp(22px, 4vw, 34px);
  border: 1px solid rgba(255, 252, 244, 0.62);
  border-radius: 30px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.86), rgba(255, 248, 236, 0.74)),
    radial-gradient(circle at 18% 14%, rgba(244, 166, 42, 0.08), transparent 58%);
  box-shadow:
    0 28px 76px rgba(31, 36, 31, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.84);
  -webkit-backdrop-filter: blur(14px) saturate(1.08);
  backdrop-filter: blur(14px) saturate(1.08);
  transform: translateY(12px) scale(0.985);
  transition: transform 180ms ease, opacity 180ms ease;
  opacity: 0;
}

.customization-modal.is-open {
  opacity: 1;
}

.customization-modal.is-open .customization-panel {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.customization-modal.is-closing {
  opacity: 0;
}

.customization-heading,
.option-choice,
.option-choice-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.cafe-menu-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  flex-wrap: wrap;
}

.cafe-menu-actions .add-button {
  background: var(--saffron);
  color: #241607;
  box-shadow: 0 10px 22px rgba(244, 166, 42, 0.18);
}

.cafe-menu-actions .add-button:hover {
  background: #e99517;
}

.cafe-menu-actions .small-button {
  min-height: 40px;
  border-radius: 999px;
  background: var(--green);
  color: #ffffff;
  box-shadow: 0 10px 22px rgba(31, 107, 58, 0.14);
}

.cafe-menu-actions .small-button:hover {
  background: var(--green-dark);
}

.customization-heading h2 {
  margin: 0;
  color: var(--text);
}

.customization-form {
  display: grid;
  gap: 18px;
}

.option-group {
  display: grid;
  gap: 10px;
  margin: 0 0 16px;
  padding: 16px;
  border: 1px solid rgba(255, 252, 244, 0.62);
  border-radius: 22px;
  background: rgba(255, 250, 241, 0.64);
}

.option-group legend {
  padding: 0 8px;
  color: var(--text);
  font-weight: 800;
}

.option-group legend span {
  color: var(--red);
  font-size: 12px;
}

.option-choice {
  min-height: 42px;
  padding: 10px 12px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.68);
  transition: background 160ms ease, box-shadow 160ms ease;
}

.option-choice:hover,
.option-choice:has(input:checked) {
  background: #fff7e8;
  box-shadow: inset 0 0 0 1px rgba(244, 166, 42, 0.26);
}

.option-choice span {
  flex: 1;
}

.cart-option-list,
.cart-note {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.cafe-my-orders {
  background: transparent;
}

.cafe-order-card {
  border-color: rgba(255, 252, 244, 0.62);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.74), rgba(255, 248, 236, 0.6));
  box-shadow: 0 16px 38px rgba(92, 67, 30, 0.085);
  -webkit-backdrop-filter: blur(10px) saturate(1.06);
  backdrop-filter: blur(10px) saturate(1.06);
  transition: border-color 180ms ease, background 180ms ease, opacity 180ms ease, transform 180ms ease;
}

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

.cafe-order-card.status-cancelled,
.cafe-order-card.status-completed {
  background: rgba(255, 250, 242, 0.72);
  color: var(--muted);
  opacity: 0.72;
}

.cafe-order-card.status-cancelled strong,
.cafe-order-card.status-completed strong {
  color: var(--muted);
}

@supports not ((backdrop-filter: blur(12px)) or (-webkit-backdrop-filter: blur(12px))) {
  .cafe-hero > div,
  .menu-poster-card,
  .cafe-menu-category,
  .cafe-menu-card,
  .cafe-cart,
  .cafe-confirmation,
  .customization-panel,
  .cafe-order-card {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.92), rgba(255, 250, 241, 0.86));
  }
}

.option-admin-group {
  display: grid;
  gap: 14px;
}

.option-group-edit,
.inline-option-choice-form {
  display: grid;
  gap: 12px;
}

.option-choice-list {
  display: grid;
  gap: 8px;
}

.option-choice-row {
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--surface-soft);
  flex-wrap: wrap;
}

.option-choice-row input[name="name"] {
  flex: 1 1 180px;
}

.option-choice-row input[name="price_delta"] {
  width: 110px;
}

.inline-option-choice-form {
  grid-template-columns: minmax(180px, 1fr) 140px auto auto;
  align-items: end;
}

.cafe-confirmation {
  max-width: 900px;
  margin: 48px auto;
}

.cafe-confirmation h2 {
  color: var(--text);
}

.cafe-confirmation p {
  color: var(--muted);
}

@media (max-width: 1120px) {
  .cafe-body .header-main {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
    padding-top: 7px;
    padding-bottom: 9px;
  }

  .cafe-body .site-nav {
    justify-content: flex-start;
    width: 100%;
  }

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

  .cafe-cart {
    position: static;
  }
}

@media (max-width: 900px) {
  html {
    scroll-padding-top: 92px;
  }

  .cafe-body .header-main {
    flex-direction: row;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px 12px;
    padding: 7px 16px;
  }

  .cafe-body .brand {
    min-width: 0;
    font-size: 15px;
  }

  .cafe-body .brand span {
    display: none;
    white-space: normal;
  }

  .cafe-body .brand-logo {
    width: 58px;
    height: 58px;
    border-radius: 16px;
  }

  .cafe-body .site-nav {
    position: static;
    inset: auto;
    display: flex;
    grid-column: auto;
    flex: 1 1 100%;
    align-content: initial;
    justify-items: initial;
    justify-content: flex-start;
    gap: 5px;
    padding: 0;
    background: transparent;
    font-size: 12px;
    opacity: 1;
    pointer-events: auto;
    transform: none;
    overflow-x: auto;
  }

  .cafe-body .site-nav a {
    flex: 0 0 auto;
    width: auto;
    padding: 6px 10px;
    text-align: left;
    white-space: nowrap;
  }

  .cafe-hero,
  .cafe-section,
  .cafe-confirmation {
    padding-left: 16px;
    padding-right: 16px;
  }

  .cafe-hero {
    min-height: 330px;
  }

  .cafe-hero > div {
    border-radius: 24px;
    padding: 22px;
  }

  .cafe-menu-card {
    min-height: auto;
  }

  .cafe-menu-card-bottom,
  .cafe-cart-heading,
  .cafe-cart-item-top,
  .cafe-cart-summary div,
  .admin-item-row {
    align-items: flex-start;
    flex-direction: column;
  }

  .cafe-menu-actions,
  .item-actions {
    justify-content: flex-start;
    width: 100%;
  }

  .cafe-menu-actions .add-button,
  .cafe-menu-actions .small-button {
    flex: 1 1 138px;
  }

  .customization-modal {
    align-items: end;
    padding: 12px;
  }

  .customization-panel {
    width: 100%;
    max-height: 88vh;
    border-radius: 24px;
    padding: 20px;
  }

  .customization-heading,
  .option-choice {
    align-items: flex-start;
  }
}

@media (max-width: 460px) {
  .cafe-body .brand {
    width: auto;
  }

  .cafe-body .site-nav {
    padding-bottom: 2px;
  }

  .cafe-hero h1 {
    font-size: clamp(32px, 12vw, 42px);
  }

  .cafe-hero p {
    font-size: 15px;
  }

  .cafe-menu-actions .add-button,
  .cafe-menu-actions .small-button,
  .cafe-checkout-form .btn {
    width: 100%;
  }

  .option-choice {
    display: grid;
    grid-template-columns: auto 1fr;
  }

  .option-choice strong {
    grid-column: 2;
  }
}

button:disabled,
.small-button:disabled,
.btn:disabled,
.add-button:disabled {
  cursor: not-allowed;
  background: #ebe6dc !important;
  color: #8b8378 !important;
  box-shadow: none !important;
  opacity: 1;
  transform: none !important;
}

.is-loading {
  filter: saturate(0.86);
}

@keyframes cafeFadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.kitchen-body {
  min-height: 100vh;
  background-color: #fff8ea;
  background-image: none;
}

.kitchen-login-body {
  display: grid;
  place-items: center;
  padding: 20px;
}

.kitchen-login-shell {
  width: min(100%, 460px);
}

.kitchen-login-card {
  display: grid;
  gap: 14px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: rgba(255, 253, 248, 0.94);
  box-shadow: var(--shadow-soft);
  padding: clamp(22px, 5vw, 36px);
}

.kitchen-login-card h1 {
  margin: 0;
  font-size: clamp(34px, 9vw, 52px);
  line-height: 0.98;
}

.kitchen-login-card p {
  margin: 0;
  color: var(--muted);
  font-weight: 700;
}

.kitchen-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px var(--pad);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 253, 248, 0.96);
  box-shadow: 0 18px 44px rgba(75, 55, 26, 0.1);
  backdrop-filter: blur(18px);
}

.kitchen-header h1 {
  margin: 0;
  color: var(--text);
  font-size: clamp(34px, 5vw, 62px);
  line-height: 0.95;
}

.kitchen-meta {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}

.kitchen-meta div {
  display: grid;
  min-width: 132px;
  gap: 3px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #ffffff;
}

.kitchen-meta span,
.kitchen-order-grid span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.kitchen-meta strong {
  color: var(--text);
  font-size: 18px;
}

.kitchen-main {
  padding: 22px var(--pad) 36px;
}

.kitchen-alert {
  position: sticky;
  top: 118px;
  z-index: 15;
  margin-bottom: 14px;
  border-radius: 20px;
  background: var(--saffron);
  color: #241607;
  font-size: 20px;
  font-weight: 900;
  padding: 14px 18px;
  box-shadow: var(--shadow-soft);
}

.kitchen-board {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  align-items: start;
}

.kitchen-column {
  min-height: calc(100vh - 190px);
  border: 1px solid var(--line);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.kitchen-column-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 18px;
  border-bottom: 1px solid var(--line);
  background: #ffffff;
}

.kitchen-column-heading h2 {
  margin: 0;
  font-size: clamp(22px, 2.5vw, 32px);
}

.kitchen-column-heading span {
  display: grid;
  min-width: 42px;
  min-height: 42px;
  place-items: center;
  border-radius: 50%;
  background: var(--green);
  color: #ffffff;
  font-size: 20px;
  font-weight: 900;
}

.kitchen-column-list {
  display: grid;
  gap: 14px;
  padding: 14px;
}

.kitchen-empty {
  margin: 0;
  border: 1px dashed var(--line);
  border-radius: 22px;
  color: var(--muted);
  font-size: 20px;
  font-weight: 800;
  padding: 28px 18px;
  text-align: center;
}

.kitchen-order-card {
  display: grid;
  gap: 14px;
  border: 2px solid transparent;
  border-radius: 24px;
  background: #ffffff;
  box-shadow: 0 14px 34px rgba(75, 55, 26, 0.11);
  padding: 16px;
}

.kitchen-order-card.status-new {
  border-color: rgba(244, 166, 42, 0.62);
}

.kitchen-order-card.status-preparing {
  border-color: rgba(185, 58, 47, 0.5);
}

.kitchen-order-card.status-ready {
  border-color: rgba(31, 107, 58, 0.56);
  background: #f7fff6;
}

.kitchen-order-top {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 12px;
}

.kitchen-order-top h3 {
  margin: 4px 0 0;
  color: var(--text);
  font-size: 25px;
}

.kitchen-order-number {
  color: var(--saffron);
  font-size: 18px;
  font-weight: 900;
}

.kitchen-status {
  border-radius: 999px;
  background: rgba(31, 107, 58, 0.1);
  color: var(--green);
  font-size: 13px;
  font-weight: 900;
  padding: 7px 10px;
  text-transform: uppercase;
}

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

.kitchen-order-grid div {
  display: grid;
  gap: 3px;
  border-radius: 16px;
  background: #fffaf1;
  padding: 10px;
}

.kitchen-order-grid strong {
  color: var(--text);
  font-size: 17px;
}

.kitchen-item-list {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.kitchen-item-list li {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  padding: 12px;
  border-radius: 18px;
  background: #f8fbf5;
}

.kitchen-item-list li > strong {
  display: grid;
  min-height: 48px;
  place-items: center;
  border-radius: 16px;
  background: var(--green);
  color: #ffffff;
  font-size: 30px;
  line-height: 1;
}

.kitchen-item-list span {
  display: block;
  color: var(--text);
  font-size: 21px;
  font-weight: 900;
}

.kitchen-item-list em {
  display: block;
  margin-top: 4px;
  color: var(--red);
  font-size: 15px;
  font-style: normal;
  font-weight: 900;
}

.kitchen-option-list {
  display: grid;
  gap: 3px;
  margin: 6px 0 0;
  padding-left: 18px;
  color: var(--text);
  font-size: 15px;
  font-weight: 800;
}

.kitchen-warning {
  margin: 0;
  border-radius: 16px;
  background: rgba(185, 58, 47, 0.12);
  color: #8f2c20;
  font-size: 15px;
  font-weight: 900;
  padding: 10px 12px;
}

.kitchen-notes {
  margin: 0;
  border-radius: 18px;
  background: rgba(244, 166, 42, 0.13);
  font-size: 16px;
  padding: 12px;
}

.kitchen-ready-buttons,
.kitchen-order-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.kitchen-ready-buttons button {
  min-height: 42px;
  border: 1px solid rgba(244, 166, 42, 0.4);
  border-radius: 999px;
  background: #fff8eb;
  color: #6a3d08;
  cursor: pointer;
  font-weight: 900;
  padding: 8px 12px;
}

.kitchen-order-actions .btn {
  min-height: 44px;
  padding: 10px 14px;
}

.kitchen-order-actions .btn.danger,
.btn.danger {
  border-color: rgba(185, 58, 47, 0.32);
  background: rgba(185, 58, 47, 0.12);
  color: #8f2c20;
}

.ready-state {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  border-radius: 999px;
  background: var(--green);
  color: #ffffff;
  font-weight: 900;
  padding: 10px 14px;
}

@media (max-width: 1180px) {
  .kitchen-header {
    align-items: start;
    flex-direction: column;
  }

  .kitchen-meta {
    flex-wrap: wrap;
    justify-content: flex-start;
  }

  .kitchen-board {
    grid-template-columns: 1fr;
  }

  .kitchen-column {
    min-height: auto;
  }
}

@media (max-width: 620px) {
  .kitchen-header,
  .kitchen-main {
    padding-left: 14px;
    padding-right: 14px;
  }

  .kitchen-meta div,
  .kitchen-meta .btn {
    width: 100%;
  }

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

.picker-body {
  min-height: 100vh;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(244, 166, 42, 0.16), transparent 34%),
    radial-gradient(circle at top right, rgba(31, 107, 58, 0.12), transparent 30%),
    #fff8ea;
}

.picker-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 16px var(--pad);
  border-bottom: 1px solid rgba(255, 253, 248, 0.72);
  background: rgba(255, 253, 248, 0.82);
  box-shadow: 0 18px 44px rgba(75, 55, 26, 0.1);
  backdrop-filter: blur(22px);
}

.picker-header h1 {
  margin: 0;
  color: var(--text);
  font-size: clamp(32px, 5vw, 58px);
  line-height: 0.96;
}

.picker-meta {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}

.picker-meta div {
  display: grid;
  min-width: 126px;
  gap: 3px;
  padding: 9px 11px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.72);
}

.picker-meta span,
.picker-order-grid span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.picker-meta strong {
  color: var(--text);
  font-size: 17px;
}

.picker-main {
  padding: 22px var(--pad) 36px;
}

.picker-alert {
  position: sticky;
  top: 112px;
  z-index: 15;
  margin-bottom: 14px;
  border-radius: 20px;
  background: var(--saffron);
  color: #241607;
  font-size: 18px;
  font-weight: 900;
  padding: 13px 16px;
  box-shadow: var(--shadow-soft);
}

.picker-board {
  display: grid;
  grid-template-columns: repeat(4, minmax(260px, 1fr));
  gap: 16px;
  align-items: start;
}

.picker-column {
  min-height: calc(100vh - 190px);
  border: 1px solid rgba(255, 253, 248, 0.66);
  border-radius: 28px;
  background: rgba(255, 253, 248, 0.62);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(18px);
  overflow: hidden;
}

.picker-column-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px;
  border-bottom: 1px solid rgba(31, 36, 31, 0.08);
  background: rgba(255, 253, 248, 0.78);
}

.picker-column-heading h2 {
  margin: 0;
  font-size: clamp(20px, 2.2vw, 28px);
}

.picker-column-heading span {
  display: grid;
  min-width: 38px;
  min-height: 38px;
  place-items: center;
  border-radius: 50%;
  background: var(--green);
  color: #ffffff;
  font-size: 18px;
  font-weight: 900;
}

.picker-column-list {
  display: grid;
  gap: 13px;
  padding: 13px;
}

.picker-empty {
  margin: 0;
  border: 1px dashed rgba(31, 36, 31, 0.14);
  border-radius: 22px;
  color: var(--muted);
  font-size: 17px;
  font-weight: 800;
  padding: 22px 14px;
  text-align: center;
}

.picker-order-card {
  display: grid;
  gap: 13px;
  border: 1px solid rgba(255, 253, 248, 0.72);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 14px 34px rgba(75, 55, 26, 0.11);
  padding: 15px;
  backdrop-filter: blur(14px);
}

.picker-order-card.status-new {
  border-color: rgba(244, 166, 42, 0.58);
}

.picker-order-card.status-needs_confirmation {
  border-color: rgba(185, 58, 47, 0.42);
}

.picker-order-card.status-ready {
  border-color: rgba(31, 107, 58, 0.5);
  background: rgba(247, 255, 246, 0.82);
}

.picker-order-top {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 12px;
}

.picker-order-top h3 {
  margin: 4px 0 0;
  color: var(--text);
  font-size: 22px;
}

.picker-order-number {
  color: #a76408;
  font-size: 16px;
  font-weight: 900;
}

.picker-status {
  border-radius: 999px;
  background: rgba(31, 107, 58, 0.1);
  color: var(--green);
  font-size: 12px;
  font-weight: 900;
  padding: 7px 10px;
  text-transform: uppercase;
}

.picker-order-card.status-needs_confirmation .picker-status {
  background: rgba(185, 58, 47, 0.12);
  color: var(--red);
}

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

.picker-order-grid div {
  display: grid;
  gap: 3px;
  border-radius: 16px;
  background: rgba(255, 250, 241, 0.88);
  padding: 9px;
}

.picker-order-grid strong {
  color: var(--text);
  font-size: 15px;
}

.picker-item-list {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.picker-item {
  display: grid;
  gap: 10px;
  padding: 11px;
  border-radius: 18px;
  background: rgba(248, 251, 245, 0.86);
}

.picker-item.status-picked {
  background: rgba(231, 246, 228, 0.88);
}

.picker-item.status-unavailable,
.picker-item.status-substituted {
  background: rgba(255, 244, 238, 0.9);
}

.picker-item-main {
  display: grid;
  grid-template-columns: 50px minmax(0, 1fr);
  gap: 11px;
  align-items: start;
}

.picker-item-main > strong {
  display: grid;
  min-height: 44px;
  place-items: center;
  border-radius: 15px;
  background: var(--green);
  color: #ffffff;
  font-size: 25px;
  line-height: 1;
}

.picker-item-main span {
  display: block;
  color: var(--text);
  font-size: 17px;
  font-weight: 900;
}

.picker-item-main small,
.picker-item-main em {
  display: block;
  margin-top: 3px;
  color: var(--muted);
  font-size: 12px;
  font-style: normal;
  font-weight: 800;
}

.picker-item-main em {
  color: var(--red);
}

.picker-item-actions,
.picker-order-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.picker-mini-button {
  min-height: 36px;
  border: 1px solid rgba(31, 36, 31, 0.12);
  border-radius: 999px;
  background: rgba(255, 253, 248, 0.82);
  color: var(--text);
  cursor: pointer;
  font-size: 12px;
  font-weight: 900;
  padding: 7px 10px;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.picker-mini-button:hover,
.picker-mini-button.active {
  background: var(--saffron);
  box-shadow: 0 8px 20px rgba(244, 166, 42, 0.22);
  transform: translateY(-1px);
}

.picker-notes {
  margin: 0;
  border-radius: 18px;
  background: rgba(244, 166, 42, 0.13);
  font-size: 15px;
  padding: 11px;
}

.picker-order-actions .btn {
  min-height: 42px;
  padding: 9px 13px;
}

.picker-ready-state {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  border-radius: 999px;
  background: var(--green);
  color: #ffffff;
  font-weight: 900;
  padding: 9px 13px;
}

@media (max-width: 1380px) {
  .picker-board {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .picker-column {
    min-height: auto;
  }
}

@media (max-width: 820px) {
  .picker-header {
    align-items: start;
    flex-direction: column;
  }

  .picker-meta {
    flex-wrap: wrap;
    justify-content: flex-start;
  }

  .picker-board {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .picker-header,
  .picker-main {
    padding-left: 14px;
    padding-right: 14px;
  }

  .picker-meta div,
  .picker-meta .btn {
    width: 100%;
  }

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

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

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

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

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

@media (max-width: 1220px) {
  .header-main {
    grid-template-columns: auto minmax(280px, 1fr) auto;
    gap: 10px 14px;
  }

  .site-nav {
    grid-column: 1 / -1;
  }

  .header-search {
    width: 100%;
  }

  .header-actions {
    justify-self: end;
  }

  .store-status {
    min-width: auto;
  }

  .store-status span {
    display: none;
  }

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

  .quick-card-grid,
  .department-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

@media (max-width: 1100px) {
  .admin-main {
    padding-top: 18px;
  }

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

@media (max-width: 860px) {
  :root {
    --mobile-gutter: 20px;
    --mobile-content: min(calc(100vw - (var(--mobile-gutter) * 2)), 420px);
  }

  html {
    scroll-snap-type: y proximity;
    scroll-padding-top: 76px;
  }

  body {
    background-color: transparent;
    background-image: none;
    background-attachment: scroll;
    background-position: center 18%;
  }

  body::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: -2;
    pointer-events: none;
    background-image: url("../images/storefront.jpg");
    background-position: center 18%;
    background-repeat: no-repeat;
    background-size: cover;
    filter: saturate(1.06) contrast(1.04) brightness(0.98);
    transform: translateZ(0);
  }

  body::after {
    content: "";
    position: fixed;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    background:
      radial-gradient(ellipse at 50% 7%, rgba(255, 253, 248, 0.1), transparent 18rem),
      radial-gradient(ellipse at 18% 34%, rgba(244, 166, 42, 0.05), transparent 18rem),
      radial-gradient(ellipse at 86% 42%, rgba(31, 107, 58, 0.04), transparent 20rem);
  }

  .picker-body::before,
  .picker-body::after {
    content: none;
  }

  .site-header {
    position: relative;
    top: auto;
    z-index: auto;
    width: 100%;
    margin: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
    overflow: visible;
    transition: transform 220ms ease, filter 220ms ease;
  }

  .account-page .site-header,
  .cafe-body .site-header,
  .admin-body .site-header {
    position: sticky;
    top: 0;
    z-index: 80;
  }

  .mobile-top-stack {
    position: fixed;
    top: calc(env(safe-area-inset-top, 0px) + 6px);
    left: 0;
    right: 0;
    z-index: 9999;
    display: grid;
    isolation: isolate;
    width: var(--mobile-content);
    gap: 6px;
    margin-inline: auto;
    pointer-events: none;
    transition: gap 220ms ease, filter 220ms ease;
  }

  .mobile-top-stack::before {
    content: "";
    position: absolute;
    inset: -5px -6px;
    z-index: -1;
    border: 1px solid rgba(255, 252, 244, 0.38);
    border-radius: 24px;
    background:
      linear-gradient(145deg, rgba(255, 253, 248, 0.28), rgba(255, 248, 236, 0.16)),
      radial-gradient(circle at 18% 20%, rgba(244, 166, 42, 0.06), transparent 10rem);
    box-shadow:
      0 18px 42px rgba(47, 35, 21, 0.1),
      inset 0 1px 0 rgba(255, 255, 255, 0.46);
    opacity: 0;
    transform: scaleY(0.96);
    transform-origin: top center;
    transition: opacity 220ms ease, transform 220ms ease, background 220ms ease, box-shadow 220ms ease;
    -webkit-backdrop-filter: blur(12px) saturate(1.05);
    backdrop-filter: blur(12px) saturate(1.05);
  }

  .mobile-top-stack > * {
    pointer-events: auto;
  }

  body:not(.account-page):not(.cafe-body):not(.admin-body):not(.kitchen-body) .snap-wrapper {
    padding-top: calc(132px + env(safe-area-inset-top, 0px));
  }

  .site-header::after {
    display: none;
  }

  .snap-panel {
    min-height: auto;
    scroll-snap-align: none;
    scroll-snap-stop: normal;
  }

  .snap-wrapper::before {
    opacity: 0.035;
  }

  .section.snap-panel::before {
    filter: blur(8px);
    transform: none;
  }

  .section.snap-panel.active::before,
  .departments-section.active::before {
    opacity: 0;
  }

  .header-main {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 4px 10px;
    width: 100%;
    margin-inline: auto;
    padding: 6px 0;
    background: transparent;
    transition: padding 220ms ease, gap 220ms ease, transform 220ms ease;
  }

  .header-actions {
    display: none;
  }

  .brand span {
    display: none;
    font-size: 16px;
  }

  body:not(.account-page):not(.cafe-body):not(.admin-body) .site-header .brand {
    display: none;
  }

  .brand-logo {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    background: transparent;
    box-shadow: none;
  }

  .header-search {
    grid-column: 1;
    grid-row: 1;
    justify-self: stretch;
  }

  .header-search-form {
    border: 0;
    border-radius: 0;
    grid-template-columns: minmax(0, 1fr) 38px;
    gap: 8px;
    padding: 0;
    background: transparent;
    box-shadow: none;
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
    transition: gap 220ms ease;
  }

  .header-search-form input,
  .header-search-button {
    min-height: 38px;
    transition:
      min-height 220ms ease,
      height 220ms ease,
      width 220ms ease,
      padding 220ms ease,
      background 220ms ease,
      box-shadow 220ms ease,
      opacity 220ms ease,
      transform 220ms ease;
  }

  .header-search-form input {
    border: 1px solid rgba(255, 252, 244, 0.64);
    border-radius: 999px;
    background: rgba(255, 253, 248, 0.7);
    box-shadow:
      0 8px 20px rgba(47, 35, 21, 0.07),
      inset 0 1px 0 rgba(255, 255, 255, 0.8);
    padding: 6px 12px;
    font-size: 13px;
    -webkit-backdrop-filter: blur(8px) saturate(1.04);
    backdrop-filter: blur(8px) saturate(1.04);
  }

  .header-search-button {
    position: relative;
    display: grid;
    place-items: center;
    width: 38px;
    height: 38px;
    padding: 6px 10px;
    font-size: 0;
    line-height: 1;
    box-shadow: 0 8px 18px rgba(244, 166, 42, 0.16);
  }

  .header-search-button::before,
  .header-search-button::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    display: block;
  }

  .header-search-button::before {
    width: 12px;
    height: 12px;
    border: 2px solid #241607;
    border-radius: 50%;
    transform: translate(-50%, -50%);
  }

  .header-search-button::after {
    width: 7px;
    height: 2px;
    border-radius: 999px;
    background: #241607;
    transform: translate(2px, 4px) rotate(45deg);
    transform-origin: left center;
  }

  .menu-toggle {
    display: block;
    grid-column: 2;
    grid-row: 1;
    justify-self: end;
    width: 38px;
    height: 38px;
    z-index: 240;
    background: rgba(255, 253, 248, 0.72);
    border: 1px solid rgba(255, 252, 244, 0.7);
    box-shadow:
      0 10px 24px rgba(75, 55, 26, 0.08),
      0 0 18px rgba(244, 166, 42, 0.12),
      inset 0 1px 0 rgba(255, 255, 255, 0.72);
    transition:
      width 220ms ease,
      height 220ms ease,
      background 220ms ease,
      box-shadow 220ms ease,
      transform 220ms ease;
  }

  .menu-toggle span {
    left: 8px;
    width: 22px;
  }

  .menu-toggle span:first-child {
    top: 14px;
  }

  .menu-toggle span:last-child {
    top: 23px;
  }

  .nav-open .menu-toggle span:first-child,
  .nav-open .menu-toggle span:last-child {
    top: 18px;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    z-index: 220;
    display: grid;
    width: max-content;
    min-width: 210px;
    max-width: min(calc(100vw - 32px), 270px);
    min-height: 0;
    max-height: min(68vh, 430px);
    align-content: start;
    justify-items: stretch;
    gap: 8px;
    overflow-y: auto;
    padding: 10px;
    border: 1px solid rgba(255, 252, 244, 0.78);
    border-radius: 24px;
    background:
      linear-gradient(145deg, rgba(255, 253, 248, 0.94), rgba(255, 248, 236, 0.88)),
      radial-gradient(circle at 18% 18%, rgba(244, 166, 42, 0.11), transparent 12rem),
      radial-gradient(circle at 88% 28%, rgba(31, 107, 58, 0.08), transparent 14rem);
    box-shadow:
      0 20px 44px rgba(47, 35, 21, 0.18),
      inset 0 1px 0 rgba(255, 255, 255, 0.82);
    font-size: 14px;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px) scale(0.98);
    transform-origin: top right;
    transition: opacity 180ms ease, transform 180ms ease, background 180ms ease;
    -webkit-backdrop-filter: blur(20px) saturate(1.1);
    backdrop-filter: blur(20px) saturate(1.1);
  }

  .nav-open .site-header {
    z-index: 230;
  }

  .nav-open .site-nav {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0) scale(1);
  }

  .site-nav a {
    display: flex;
    width: 100%;
    min-height: 40px;
    align-items: center;
    justify-content: flex-start;
    border: 1px solid rgba(31, 36, 31, 0.08);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.46);
    color: var(--text);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72);
    font-weight: 850;
    text-align: left;
    white-space: nowrap;
    padding: 0 12px;
    transition: background 160ms ease, transform 160ms ease, color 160ms ease;
  }

  .site-nav a:hover,
  .site-nav a:focus-visible {
    background: rgba(255, 255, 255, 0.72);
    color: var(--green);
    transform: translateX(2px);
  }

  .promo-strip {
    position: relative;
    top: auto;
    z-index: 1;
    width: 100%;
    margin: 0 auto;
    overflow: hidden;
    padding: 6px 12px;
    border: 1px solid rgba(255, 252, 244, 0.58);
    border-radius: 999px;
    background:
      linear-gradient(90deg, rgba(255, 250, 241, 0.42), rgba(255, 255, 255, 0.32), rgba(255, 250, 241, 0.42)),
      radial-gradient(circle at 12% 50%, rgba(244, 166, 42, 0.12), transparent 7rem),
      radial-gradient(circle at 88% 50%, rgba(31, 107, 58, 0.09), transparent 7rem);
    box-shadow:
      0 12px 30px rgba(75, 55, 26, 0.08),
      inset 0 1px 0 rgba(255, 255, 255, 0.82);
    -webkit-backdrop-filter: blur(14px) saturate(1.08);
    backdrop-filter: blur(14px) saturate(1.08);
    color: var(--text);
    font-size: 12px;
    line-height: 1.35;
    max-height: 38px;
    transform-origin: top center;
    transition:
      max-height 240ms ease,
      margin 240ms ease,
      padding 240ms ease,
      opacity 220ms ease,
      transform 240ms ease,
      border-color 220ms ease,
      box-shadow 220ms ease;
  }

  .promo-strip::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(90deg, transparent, rgba(244, 166, 42, 0.16), transparent);
    transform: translateX(-65%);
    transition: transform 600ms ease;
  }

  .promo-strip:hover::before {
    transform: translateX(65%);
  }

  .mobile-action-row {
    position: relative;
    top: auto;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 6px;
    width: 100%;
    margin: 0 auto;
    transform-origin: top center;
    transition:
      top 220ms ease,
      gap 220ms ease,
      margin 220ms ease,
      transform 220ms ease;
  }

  .mobile-action-row a {
    display: flex;
    min-height: 37px;
    align-items: center;
    justify-content: center;
    gap: 5px;
    padding: 6px 7px;
    border: 1px solid rgba(255, 252, 244, 0.62);
    border-radius: 999px;
    background:
      linear-gradient(145deg, rgba(255, 255, 255, 0.46), rgba(255, 248, 236, 0.28)),
      radial-gradient(circle at 18% 20%, rgba(244, 166, 42, 0.09), transparent 8rem);
    color: var(--text);
    box-shadow:
      0 12px 28px rgba(47, 35, 21, 0.08),
      inset 0 1px 0 rgba(255, 255, 255, 0.78);
    font-size: 10.5px;
    font-weight: 900;
    line-height: 1;
    text-align: center;
    -webkit-backdrop-filter: blur(12px) saturate(1.08);
    backdrop-filter: blur(12px) saturate(1.08);
    transition:
      min-height 220ms ease,
      padding 220ms ease,
      opacity 200ms ease,
      transform 220ms ease,
      max-width 220ms ease,
      background 220ms ease,
      box-shadow 220ms ease;
  }

  .mobile-action-row a:first-child {
    color: var(--green-dark);
  }

  .mobile-action-row a:first-child span {
    display: block;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--green);
    color: var(--green);
    font-size: 0;
  }

  .mobile-compact-deals {
    display: none !important;
  }

  body.mobile-header-compact:not(.account-page):not(.cafe-body):not(.admin-body):not(.kitchen-body) .site-header {
    filter: drop-shadow(0 12px 24px rgba(47, 35, 21, 0.08));
  }

  body.mobile-header-compact:not(.account-page):not(.cafe-body):not(.admin-body):not(.kitchen-body) .mobile-top-stack,
  .mobile-top-stack.is-compact {
    gap: 3px;
    filter: drop-shadow(0 14px 28px rgba(47, 35, 21, 0.12));
  }

  body.mobile-header-compact:not(.account-page):not(.cafe-body):not(.admin-body):not(.kitchen-body) .mobile-top-stack::before,
  .mobile-top-stack.is-compact::before {
    opacity: 1;
    transform: scaleY(1);
    background:
      linear-gradient(145deg, rgba(255, 253, 248, 0.96), rgba(255, 248, 236, 0.84)),
      radial-gradient(circle at 18% 18%, rgba(244, 166, 42, 0.18), transparent 10rem),
      radial-gradient(circle at 88% 84%, rgba(31, 107, 58, 0.12), transparent 11rem);
    box-shadow:
      0 24px 62px rgba(47, 35, 21, 0.22),
      0 0 38px rgba(255, 248, 236, 0.34),
      inset 0 1px 0 rgba(255, 255, 255, 0.92),
      inset 0 -1px 0 rgba(255, 248, 236, 0.6);
  }

  body.mobile-header-compact:not(.account-page):not(.cafe-body):not(.admin-body):not(.kitchen-body) .header-main {
    gap: 4px 8px;
    padding: 3px 0;
  }

  body.mobile-header-compact:not(.account-page):not(.cafe-body):not(.admin-body):not(.kitchen-body) .header-search-form {
    grid-template-columns: minmax(0, 1fr) 34px;
    gap: 6px;
  }

  body.mobile-header-compact:not(.account-page):not(.cafe-body):not(.admin-body):not(.kitchen-body) .header-search-form input,
  body.mobile-header-compact:not(.account-page):not(.cafe-body):not(.admin-body):not(.kitchen-body) .header-search-button {
    min-height: 34px;
  }

  body.mobile-header-compact:not(.account-page):not(.cafe-body):not(.admin-body):not(.kitchen-body) .header-search-form input {
    background: rgba(255, 253, 248, 0.88);
    box-shadow:
      0 10px 24px rgba(47, 35, 21, 0.1),
      inset 0 1px 0 rgba(255, 255, 255, 0.86);
    font-size: 12px;
    padding: 5px 11px;
  }

  body.mobile-header-compact:not(.account-page):not(.cafe-body):not(.admin-body):not(.kitchen-body) .header-search-button,
  body.mobile-header-compact:not(.account-page):not(.cafe-body):not(.admin-body):not(.kitchen-body) .menu-toggle {
    width: 34px;
    height: 34px;
    box-shadow:
      0 10px 22px rgba(47, 35, 21, 0.12),
      inset 0 1px 0 rgba(255, 255, 255, 0.76);
  }

  body.mobile-header-compact:not(.account-page):not(.cafe-body):not(.admin-body):not(.kitchen-body) .menu-toggle span {
    left: 7px;
    width: 20px;
  }

  body.mobile-header-compact:not(.account-page):not(.cafe-body):not(.admin-body):not(.kitchen-body) .menu-toggle span:first-child {
    top: 12px;
  }

  body.mobile-header-compact:not(.account-page):not(.cafe-body):not(.admin-body):not(.kitchen-body) .menu-toggle span:last-child {
    top: 21px;
  }

  body.mobile-header-compact.nav-open:not(.account-page):not(.cafe-body):not(.admin-body):not(.kitchen-body) .menu-toggle span:first-child,
  body.mobile-header-compact.nav-open:not(.account-page):not(.cafe-body):not(.admin-body):not(.kitchen-body) .menu-toggle span:last-child {
    top: 16px;
  }

  body.mobile-header-compact:not(.account-page):not(.cafe-body):not(.admin-body):not(.kitchen-body) .mobile-action-row {
    grid-template-columns: 1fr 1fr;
    gap: 5px;
    margin-top: 0;
  }

  body.mobile-header-compact:not(.account-page):not(.cafe-body):not(.admin-body):not(.kitchen-body) .mobile-action-row a {
    min-height: 31px;
    padding: 5px 8px;
    background:
      linear-gradient(145deg, rgba(255, 255, 255, 0.74), rgba(255, 248, 236, 0.56)),
      radial-gradient(circle at 18% 20%, rgba(244, 166, 42, 0.12), transparent 8rem);
    font-size: 10px;
    box-shadow:
      0 10px 24px rgba(47, 35, 21, 0.1),
      inset 0 1px 0 rgba(255, 255, 255, 0.82);
  }

  body.mobile-header-compact:not(.account-page):not(.cafe-body):not(.admin-body):not(.kitchen-body) .mobile-action-row a:nth-child(1),
  body.mobile-header-compact:not(.account-page):not(.cafe-body):not(.admin-body):not(.kitchen-body) .mobile-action-row a:nth-child(2),
  body.mobile-header-compact:not(.account-page):not(.cafe-body):not(.admin-body):not(.kitchen-body) .mobile-action-row a:nth-child(3) {
    position: absolute;
    width: 1px;
    min-width: 0;
    height: 1px;
    min-height: 0;
    overflow: hidden;
    padding: 0;
    border: 0;
    opacity: 0;
    pointer-events: none;
    transform: scale(0.92);
  }

  body.mobile-header-compact:not(.account-page):not(.cafe-body):not(.admin-body):not(.kitchen-body) .mobile-compact-deals {
    display: flex !important;
  }

  body.mobile-header-compact:not(.account-page):not(.cafe-body):not(.admin-body):not(.kitchen-body) .promo-strip {
    max-height: 0;
    margin-top: 0;
    padding-top: 0;
    padding-bottom: 0;
    border-color: transparent;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px) scale(0.98);
    box-shadow: none;
  }

  .admin-body .site-nav {
    position: static;
    display: flex;
    width: auto;
    min-height: auto;
    max-height: none;
    align-content: initial;
    justify-items: initial;
    justify-content: flex-end;
    padding: 0;
    background: transparent;
    box-shadow: none;
    font-size: 13px;
    opacity: 1;
    pointer-events: auto;
    transform: none;
    overflow: visible;
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
  }

  .admin-body .site-nav a {
    width: auto;
    min-height: 34px;
    padding: 6px 10px;
    box-shadow: none;
  }

  .account-page .site-header,
  .cafe-body .site-header {
    padding: 0;
  }

  .account-page .header-main,
  .cafe-body .header-main {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 8px 10px;
    padding: 7px 14px;
  }

  .account-page .site-nav,
  .cafe-body .site-nav {
    position: static;
    inset: auto;
    display: flex;
    width: auto;
    min-height: auto;
    max-height: none;
    flex: 1 1 auto;
    align-content: initial;
    justify-items: initial;
    justify-content: flex-end;
    gap: 6px;
    overflow-x: auto;
    padding: 0 0 2px;
    background: transparent;
    box-shadow: none;
    font-size: 12px;
    opacity: 1;
    pointer-events: auto;
    transform: none;
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
  }

  .account-page .site-nav a,
  .account-page .site-nav button,
  .cafe-body .site-nav a {
    flex: 0 0 auto;
    width: auto;
    min-height: 36px;
    padding: 7px 11px;
    border-radius: 999px;
    white-space: nowrap;
  }

  .hero h1 {
    font-size: clamp(22px, 6vw, 32px);
  }

  .hero-content {
    isolation: isolate;
    width: var(--mobile-content);
    margin-inline: auto;
    padding-right: 0;
    padding-left: 0;
    padding-top: 34px;
  }

  .hero-copy-panel {
    width: 100%;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
  }

  .hero-content::before {
    content: "";
    position: absolute;
    top: 6px;
    left: -18px;
    z-index: -1;
    width: min(108%, 540px);
    height: min(34vh, 250px);
    border: 0;
    border-radius: 0;
    background:
      radial-gradient(ellipse at 20% 22%, rgba(255, 253, 248, 0.78), rgba(255, 250, 241, 0.38) 44%, transparent 74%),
      radial-gradient(ellipse at 52% 46%, rgba(255, 248, 236, 0.34), transparent 68%),
      linear-gradient(90deg, rgba(255, 250, 241, 0.3), transparent 80%);
    box-shadow: none;
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
    filter: blur(10px);
    opacity: 0.82;
    -webkit-mask-image: radial-gradient(ellipse at 28% 36%, #000 0%, rgba(0, 0, 0, 0.72) 45%, transparent 76%);
    mask-image: radial-gradient(ellipse at 28% 36%, #000 0%, rgba(0, 0, 0, 0.72) 45%, transparent 76%);
  }

  .hero .eyebrow {
    color: #924b00;
    text-shadow: 0 1px 0 rgba(255, 255, 255, 0.42);
  }

  .hero h1 {
    max-width: 420px;
    font-weight: 900;
    text-shadow:
      0 1px 0 rgba(255, 255, 255, 0.46),
      0 12px 30px rgba(255, 248, 236, 0.38);
  }

  .hero-flavor-row {
    gap: 6px;
    margin: -2px 0 12px;
  }

  .hero-flavor-row span {
    padding: 6px 9px;
    background: rgba(255, 253, 248, 0.52);
    font-size: 11px;
  }

  .hero-mobile-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: -4px 0 14px;
  }

  .hero-mobile-actions .btn {
    min-height: 40px;
    padding: 9px 14px;
    border-radius: 999px;
    font-size: 13px;
  }

  .hero-shop-panel {
    width: 100%;
    border-radius: 28px;
    padding: 14px;
    border-color: rgba(255, 252, 244, 0.72);
    background:
      linear-gradient(145deg, rgba(255, 255, 255, 0.58), rgba(255, 248, 236, 0.36)),
      radial-gradient(circle at 12% 8%, rgba(244, 166, 42, 0.13), transparent 16rem),
      radial-gradient(circle at 88% 92%, rgba(31, 107, 58, 0.1), transparent 17rem);
    box-shadow:
      0 24px 66px rgba(47, 35, 21, 0.14),
      0 0 34px rgba(255, 248, 236, 0.28),
      inset 0 1px 0 rgba(255, 255, 255, 0.84);
    -webkit-backdrop-filter: blur(18px) saturate(1.12);
    backdrop-filter: blur(18px) saturate(1.12);
  }

  .hero {
    padding-bottom: 20px;
  }

  .market-highlights {
    padding-top: 18px;
    padding-bottom: 26px;
  }

  body:not(.account-page):not(.cafe-body):not(.admin-body):not(.kitchen-body) .section {
    padding-right: 0;
    padding-left: 0;
  }

  body:not(.account-page):not(.cafe-body):not(.admin-body):not(.kitchen-body) .section-heading,
  body:not(.account-page):not(.cafe-body):not(.admin-body):not(.kitchen-body) .row-heading,
  body:not(.account-page):not(.cafe-body):not(.admin-body):not(.kitchen-body) .market-feature-grid,
  body:not(.account-page):not(.cafe-body):not(.admin-body):not(.kitchen-body) .department-grid,
  body:not(.account-page):not(.cafe-body):not(.admin-body):not(.kitchen-body) .product-row,
  body:not(.account-page):not(.cafe-body):not(.admin-body):not(.kitchen-body) .service-grid,
  body:not(.account-page):not(.cafe-body):not(.admin-body):not(.kitchen-body) .social-row,
  body:not(.account-page):not(.cafe-body):not(.admin-body):not(.kitchen-body) .catering-panel,
  body:not(.account-page):not(.cafe-body):not(.admin-body):not(.kitchen-body) .chat-shell,
  body:not(.account-page):not(.cafe-body):not(.admin-body):not(.kitchen-body) .about-layout,
  body:not(.account-page):not(.cafe-body):not(.admin-body):not(.kitchen-body) .contact-layout {
    width: var(--mobile-content);
    max-width: var(--mobile-content);
    margin-right: auto;
    margin-left: auto;
  }

  .market-highlights .section-heading {
    margin-bottom: 12px;
  }

  .market-highlights .section-heading h2 {
    margin-bottom: 0;
    font-size: clamp(24px, 7vw, 34px);
    line-height: 1.05;
  }

  .market-feature-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .market-feature-card {
    min-height: 178px;
    border-radius: 26px;
  }

  .market-feature-card img {
    min-height: 178px;
  }

  .market-feature-card::after {
    background:
      linear-gradient(180deg, rgba(18, 24, 18, 0.02) 0%, rgba(18, 24, 18, 0.24) 52%, rgba(18, 24, 18, 0.74)),
      radial-gradient(circle at 15% 16%, rgba(255, 248, 236, 0.16), transparent 12rem);
  }

  .market-feature-card div {
    left: 14px;
    right: 14px;
    bottom: 14px;
  }

  .market-feature-card span {
    padding: 4px 8px;
    font-size: 11px;
  }

  .market-feature-card h3 {
    font-size: clamp(18px, 5.2vw, 24px);
  }

  .hero-shop-heading strong {
    font-size: 15px;
  }

  .hero-quick-link,
  .quick-card,
  .department-card,
  .product-card,
  .service-card,
  .market-feature-card,
  .chat-shell,
  .catering-panel,
  .about-card,
  .contact-info,
  .contact-form {
    border-color: rgba(255, 252, 244, 0.68);
    background:
      linear-gradient(145deg, rgba(255, 255, 255, 0.54), rgba(255, 248, 236, 0.38)),
      radial-gradient(circle at 16% 10%, rgba(244, 166, 42, 0.09), transparent 13rem),
      radial-gradient(circle at 92% 94%, rgba(31, 107, 58, 0.07), transparent 14rem);
    box-shadow:
      0 18px 48px rgba(47, 35, 21, 0.11),
      0 0 24px rgba(255, 248, 236, 0.26),
      inset 0 1px 0 rgba(255, 255, 255, 0.82);
    -webkit-backdrop-filter: blur(14px) saturate(1.1);
    backdrop-filter: blur(14px) saturate(1.1);
  }

  .hero-quick-link {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    min-height: 80px;
    align-content: space-between;
    gap: 8px 12px;
    padding: 14px 34px 14px 14px;
  }

  .hero-quick-link span {
    grid-column: 1;
  }

  .hero-quick-link strong {
    grid-column: 1 / -1;
  }

  .hero-quick-link::before {
    display: none;
  }

  .departments-section {
    padding-top: 22px;
  }

  .departments-section .section-heading {
    margin-bottom: 12px;
  }

  .departments-section .section-heading h2 {
    margin-bottom: 0;
    font-size: clamp(24px, 7vw, 34px);
  }

  .department-card.has-visual {
    grid-template-columns: minmax(0, 1fr) 66px;
    min-height: 148px;
  }

  .department-card.has-visual img {
    width: 66px;
    height: 66px;
    border-radius: 18px;
  }

  .departments-section .department-card.mobile-reveal {
    transform: translateY(30px) !important;
    transition-duration: 780ms, 780ms, 180ms, 180ms, 180ms;
  }

  .departments-section .department-card.mobile-reveal.is-visible {
    transform: translateY(0) !important;
  }

  .hero-quick-link:active,
  .quick-card:active,
  .department-card:active,
  .product-card:active,
  .service-card:active {
    transform: translateY(-2px) scale(0.99);
  }

  .section-heading,
  .row-heading {
    padding: 16px;
    border: 1px solid rgba(255, 252, 244, 0.46);
    border-radius: 24px;
    background: linear-gradient(145deg, rgba(255, 253, 248, 0.52), rgba(255, 250, 241, 0.24));
    box-shadow: 0 14px 38px rgba(47, 35, 21, 0.075);
    -webkit-backdrop-filter: blur(8px) saturate(1.06);
    backdrop-filter: blur(8px) saturate(1.06);
  }

  .support-toggle {
    min-width: 48px;
    min-height: 48px;
    justify-content: center;
    padding: 6px;
    border-color: rgba(255, 252, 244, 0.72);
    border-radius: 50%;
    background:
      linear-gradient(145deg, rgba(255, 255, 255, 0.76), rgba(255, 248, 236, 0.58)),
      radial-gradient(circle at 16% 50%, rgba(244, 166, 42, 0.18), transparent 7rem);
    color: var(--text);
    box-shadow:
      0 14px 36px rgba(47, 35, 21, 0.14),
      0 0 24px rgba(244, 166, 42, 0.15),
      inset 0 1px 0 rgba(255, 255, 255, 0.84);
    -webkit-backdrop-filter: blur(14px) saturate(1.1);
    backdrop-filter: blur(14px) saturate(1.1);
    animation: supportGlowPulse 4.2s ease-in-out infinite;
  }

  .support-toggle strong {
    background: linear-gradient(145deg, var(--green), var(--green-dark));
    box-shadow: 0 0 14px rgba(31, 107, 58, 0.24);
  }

  .support-toggle span {
    display: none;
  }

  .deals-drawer {
    position: fixed;
    inset: 0;
    z-index: 120;
    display: grid;
    align-items: end;
    pointer-events: none;
  }

  .deals-drawer-backdrop {
    position: absolute;
    inset: 0;
    border: 0;
    background: rgba(31, 36, 31, 0.26);
    opacity: 0;
    -webkit-backdrop-filter: blur(0);
    backdrop-filter: blur(0);
    transition: opacity 220ms ease, backdrop-filter 220ms ease;
  }

  .deals-drawer-panel {
    position: relative;
    display: grid;
    max-height: min(82vh, 720px);
    gap: 14px;
    overflow: auto;
    padding: 10px 14px calc(16px + env(safe-area-inset-bottom, 0px));
    border: 1px solid rgba(255, 252, 244, 0.72);
    border-radius: 30px 30px 0 0;
    background:
      linear-gradient(145deg, rgba(255, 255, 255, 0.82), rgba(255, 248, 236, 0.66)),
      radial-gradient(circle at 14% 10%, rgba(244, 166, 42, 0.14), transparent 16rem),
      radial-gradient(circle at 86% 82%, rgba(31, 107, 58, 0.11), transparent 16rem);
    box-shadow:
      0 -24px 70px rgba(47, 35, 21, 0.18),
      inset 0 1px 0 rgba(255, 255, 255, 0.88);
    transform: translateY(104%);
    transition: transform 260ms cubic-bezier(0.22, 1, 0.36, 1);
    -webkit-backdrop-filter: blur(18px) saturate(1.12);
    backdrop-filter: blur(18px) saturate(1.12);
  }

  .deals-drawer.open {
    pointer-events: auto;
  }

  .deals-drawer.open .deals-drawer-backdrop {
    opacity: 1;
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
  }

  .deals-drawer.open .deals-drawer-panel {
    transform: translateY(0);
  }

  .deals-drawer-open {
    overflow: hidden;
  }

  .deals-drawer-handle {
    justify-self: center;
    width: 44px;
    height: 5px;
    border-radius: 999px;
    background: rgba(31, 36, 31, 0.18);
  }

  .deals-drawer-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
  }

  .deals-drawer-header h2 {
    margin-bottom: 0;
    font-size: clamp(25px, 7vw, 36px);
  }

  .deals-close,
  .deals-view-all,
  .deals-drawer-card a,
  .deals-empty-state a {
    border: 0;
    border-radius: 999px;
    background: rgba(31, 107, 58, 0.1);
    color: var(--green-dark);
    cursor: pointer;
    font-size: 12px;
    font-weight: 900;
    padding: 9px 12px;
  }

  .deals-drawer-list {
    display: grid;
    gap: 10px;
  }

  .deals-drawer-card {
    display: grid;
    grid-template-columns: 82px minmax(0, 1fr);
    gap: 12px;
    padding: 10px;
    border: 1px solid rgba(255, 252, 244, 0.64);
    border-radius: 22px;
    background: rgba(255, 253, 248, 0.58);
    box-shadow:
      0 12px 30px rgba(47, 35, 21, 0.075),
      inset 0 1px 0 rgba(255, 255, 255, 0.76);
  }

  .deals-drawer-image {
    display: grid;
    min-height: 82px;
    place-items: center;
    overflow: hidden;
    border-radius: 18px;
    background: radial-gradient(circle at 45% 34%, rgba(244, 166, 42, 0.2), rgba(31, 107, 58, 0.08));
  }

  .deals-drawer-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .deals-drawer-image span {
    color: var(--muted);
    font-size: 11px;
    font-weight: 900;
    text-align: center;
  }

  .deals-drawer-card h3 {
    margin: 4px 0 5px;
    color: var(--text);
    font-size: 17px;
    line-height: 1.15;
  }

  .deals-drawer-card p {
    margin-bottom: 8px;
    color: var(--muted);
    font-size: 13px;
  }

  .deals-drawer-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
  }

  .deals-drawer-meta strong {
    color: var(--green);
    font-size: 18px;
  }

  .deals-drawer-meta small {
    color: var(--muted);
    font-weight: 800;
  }

  .deals-empty-state {
    display: grid;
    gap: 10px;
    padding: 18px;
    border-radius: 22px;
    background: rgba(255, 253, 248, 0.58);
  }

  .quick-card-grid,
  .department-grid,
  .service-grid,
  .about-layout,
  .contact-layout,
  .admin-grid,
  .account-grid,
  .compact-admin-grid,
  .account-portal,
  .dashboard-metrics,
  .account-deal-grid {
    grid-template-columns: 1fr;
  }

  .account-dashboard-hero,
  .preferred-store-card,
  .dashboard-card-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .account-sidebar {
    position: static;
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding: 8px;
  }

  .account-sidebar button {
    flex: 0 0 auto;
    min-height: 42px;
    text-align: center;
    white-space: nowrap;
  }

  .cafe-order-layout,
  .menu-poster-grid,
  .cafe-menu-grid,
  .inline-option-choice-form {
    grid-template-columns: 1fr;
  }

  .cafe-cart {
    position: relative;
    z-index: 2;
    border-radius: 26px;
  }

  .cafe-menu-actions .add-button,
  .cafe-menu-actions .small-button,
  .cafe-checkout-form .btn,
  .account-form .btn,
  .support-quick button {
    min-height: 44px;
  }

  .cafe-quantity-controls button {
    width: 44px;
    height: 44px;
  }

  .cafe-checkout-form input,
  .cafe-checkout-form textarea,
  .cafe-checkout-form select,
  .account-form input,
  .account-form textarea,
  .account-form select {
    min-height: 44px;
    font-size: 16px;
  }

  .admin-main {
    padding: 22px 14px 54px;
  }

  .admin-topline {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }

  .admin-tabs {
    margin-inline: -14px;
    padding: 0 14px 6px;
    scroll-snap-type: x proximity;
  }

  .admin-tabs button {
    scroll-snap-align: start;
  }

  .admin-card,
  .admin-form {
    border-radius: 18px;
  }

  .inline-upload-form,
  .inline-url-form {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 768px) {
  .inline-account-form,
  .verification-actions {
    grid-template-columns: 1fr;
  }

  .mobile-reveal {
    opacity: 0 !important;
    transform: translateY(24px) !important;
    transition:
      opacity 700ms cubic-bezier(0.22, 1, 0.36, 1),
      transform 700ms cubic-bezier(0.22, 1, 0.36, 1),
      border-color 180ms ease,
      background 180ms ease,
      box-shadow 180ms ease;
    will-change: opacity, transform;
  }

  .mobile-reveal.is-visible {
    opacity: 1 !important;
    transform: translateY(0) !important;
  }

  .hero-shop-panel.mobile-reveal {
    transition-duration: 760ms, 760ms, 180ms, 180ms, 180ms;
  }

  .department-card.mobile-reveal,
  .product-card.mobile-reveal,
  .service-card.mobile-reveal {
    transition-duration: 620ms, 620ms, 180ms, 180ms, 180ms;
  }
}

@media (max-width: 768px) and (prefers-reduced-motion: reduce) {
  .mobile-reveal {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
    will-change: auto;
  }
}

@media (max-width: 560px) {
  .brand-logo {
    width: 46px;
    height: 46px;
    border-radius: 13px;
  }

  .account-page .header-main,
  .cafe-body .header-main {
    gap: 6px;
    padding: 6px 12px;
  }

  .account-page .site-nav,
  .cafe-body .site-nav {
    flex-basis: 100%;
    justify-content: flex-start;
    margin-inline: -2px;
    padding-bottom: 0;
  }

  .account-page .site-nav a,
  .account-page .site-nav button,
  .cafe-body .site-nav a {
    min-height: 34px;
    padding: 6px 10px;
  }

  .header-search-form {
    grid-template-columns: minmax(0, 1fr) auto;
    border-radius: 16px;
  }

  .header-search-button {
    border-radius: 14px;
    padding-inline: 10px;
  }

  .hero-content {
    padding-top: 26px;
  }

  .hero-content::before {
    left: -24px;
    width: min(112%, 460px);
    height: 230px;
    opacity: 0.68;
    filter: blur(12px);
  }

  .hero h1 {
    font-size: clamp(22px, 7.2vw, 30px);
  }

  .hero-content > p {
    font-size: 15px;
  }

  body:not(.account-page):not(.cafe-body):not(.admin-body):not(.kitchen-body) .section,
  body:not(.account-page):not(.cafe-body):not(.admin-body):not(.kitchen-body) .hero {
    padding-left: 0;
    padding-right: 0;
  }

  .hero-shop-heading {
    align-items: start;
    flex-direction: column;
    gap: 4px;
  }

  .hero-quick-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .hero-quick-link {
    min-height: 76px;
    border-radius: 18px;
    padding: 12px;
  }

  .hero-quick-link::before {
    display: none;
  }

  .hero-quick-link span,
  .quick-card span,
  .department-card span,
  .service-card span {
    font-size: 11px;
  }

  .account-main {
    padding: 20px 14px 52px;
  }

  .account-auth-heading h1,
  .account-dashboard-hero h1 {
    font-size: clamp(30px, 10vw, 42px);
  }

  .account-auth-card,
  .account-dashboard-hero,
  .dashboard-card {
    border-radius: 22px;
  }

  .account-auth-view {
    min-height: auto;
    align-content: start;
    gap: 16px;
  }

  .account-sidebar {
    margin-inline: -2px;
  }

  .dashboard-card.mini strong {
    font-size: 30px;
  }

  .account-tabs {
    border-radius: 22px;
  }

  .account-tabs button {
    border-radius: 16px;
  }

  .help-actions,
  .support-ticket-empty,
  .account-deal-row,
  .cafe-cart-heading,
  .cafe-menu-card-bottom {
    align-items: stretch;
    flex-direction: column;
  }

  .cafe-hero,
  .cafe-section,
  .cafe-confirmation {
    padding-left: 14px;
    padding-right: 14px;
  }

  .cafe-cart {
    margin-left: -4px;
    margin-right: -4px;
    padding: 14px;
  }

  .cafe-cart-summary div {
    display: grid;
    grid-template-columns: 1fr auto;
  }

  .cafe-menu-card,
  .cafe-menu-category,
  .menu-poster-card,
  .customization-panel {
    border-radius: 22px;
  }

  .customization-modal {
    padding: 8px;
  }

  .customization-panel {
    max-height: 92vh;
    padding: 16px;
  }

  .option-group {
    padding: 12px;
    border-radius: 18px;
  }

  .option-choice {
    min-height: 48px;
  }

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

  .product-row {
    grid-auto-columns: minmax(210px, 82vw);
  }

  .chat-form {
    flex-direction: column;
  }

  .support-widget {
    right: 10px;
    bottom: 10px;
  }

  .support-toggle span {
    display: none;
  }

  .support-toggle {
    gap: 6px;
    width: 46px;
    min-width: 46px;
    min-height: 46px;
    padding: 6px;
    font-size: 12px;
  }

  .support-toggle strong {
    width: 28px;
    height: 28px;
    font-size: 10px;
  }

  .support-panel {
    right: 0;
    width: min(calc(100vw - 20px), 390px);
    bottom: 64px;
  }

  .support-messages {
    min-height: 230px;
    max-height: 50vh;
  }

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

@media (max-width: 860px) {
  .cafe-body,
  .account-page {
    background-color: transparent;
    background-image: none;
    color: var(--text);
  }

  .cafe-body::before,
  .account-page::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: -2;
    pointer-events: none;
    background-image: url("../images/storefront.jpg");
    background-position: center 18%;
    background-repeat: no-repeat;
    background-size: cover;
    filter: saturate(1.06) contrast(1.04) brightness(0.98);
  }

  .cafe-body::after,
  .account-page::after {
    content: "";
    position: fixed;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    background:
      radial-gradient(ellipse at 20% 12%, rgba(255, 253, 248, 0.16), transparent 18rem),
      radial-gradient(ellipse at 86% 36%, rgba(31, 107, 58, 0.06), transparent 20rem),
      radial-gradient(ellipse at 24% 72%, rgba(244, 166, 42, 0.07), transparent 18rem);
  }

  .cafe-body .site-header,
  .account-page .site-header {
    position: fixed;
    top: calc(env(safe-area-inset-top, 0px) + 6px);
    left: 50%;
    z-index: 9000;
    width: var(--mobile-content);
    border: 1px solid rgba(255, 252, 244, 0.72);
    border-radius: 24px;
    background:
      linear-gradient(145deg, rgba(255, 253, 248, 0.9), rgba(255, 248, 236, 0.76)),
      radial-gradient(circle at 16% 18%, rgba(244, 166, 42, 0.12), transparent 10rem),
      radial-gradient(circle at 88% 84%, rgba(31, 107, 58, 0.08), transparent 11rem);
    box-shadow:
      0 18px 44px rgba(47, 35, 21, 0.16),
      0 0 30px rgba(255, 248, 236, 0.24),
      inset 0 1px 0 rgba(255, 255, 255, 0.86);
    transform: translateX(-50%);
    -webkit-backdrop-filter: blur(22px) saturate(1.14);
    backdrop-filter: blur(22px) saturate(1.14);
  }

  .cafe-body .header-main,
  .account-page .header-main {
    width: 100%;
    padding: 6px 8px;
  }

  .cafe-body .brand-logo,
  .account-page .brand-logo {
    width: 42px;
    height: 42px;
    border-radius: 12px;
  }

  .cafe-body .brand span,
  .account-page .brand span {
    max-width: 116px;
    overflow: hidden;
    color: var(--text);
    font-size: 14px;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .cafe-body .site-nav,
  .account-page .site-nav {
    justify-content: flex-end;
    gap: 5px;
    overflow-x: auto;
    padding: 0;
    scrollbar-width: none;
  }

  .cafe-body .site-nav::-webkit-scrollbar,
  .account-page .site-nav::-webkit-scrollbar {
    display: none;
  }

  .cafe-body .site-nav a,
  .account-page .site-nav a,
  .account-page .site-nav button {
    flex: 0 0 auto;
    min-height: 34px;
    border: 1px solid rgba(255, 252, 244, 0.58);
    border-radius: 999px;
    background: rgba(255, 253, 248, 0.52);
    color: var(--text);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72);
    font-size: 12px;
    font-weight: 900;
    padding: 7px 10px;
  }

  .cafe-body main,
  .account-main {
    padding-top: calc(78px + env(safe-area-inset-top, 0px));
  }

  .cafe-hero,
  .cafe-section,
  .cafe-confirmation,
  .account-main {
    padding-right: 0;
    padding-left: 0;
  }

  .cafe-hero > div,
  .cafe-section > .section-heading,
  .menu-poster-grid,
  .cafe-order-layout,
  .cafe-my-orders > .admin-list,
  .cafe-confirmation,
  .account-auth-view,
  .account-dashboard {
    width: var(--mobile-content);
    max-width: var(--mobile-content);
    margin-right: auto;
    margin-left: auto;
  }

  .account-auth-heading,
  .account-auth-card,
  .account-dashboard-hero,
  .account-portal {
    width: 100%;
    max-width: 100%;
  }

  .cafe-hero {
    min-height: auto;
    padding-top: 18px;
    padding-bottom: 26px;
  }

  .cafe-hero > div,
  .cafe-section > .section-heading,
  .menu-poster-card,
  .cafe-menu-category,
  .cafe-menu-card,
  .cafe-cart,
  .cafe-confirmation,
  .customization-panel,
  .account-auth-heading,
  .account-auth-card,
  .account-dashboard-hero,
  .account-sidebar,
  .dashboard-card,
  .account-deal-card,
  .cafe-order-card,
  .account-order-card {
    border: 1px solid rgba(255, 252, 244, 0.68);
    background:
      linear-gradient(145deg, rgba(255, 255, 255, 0.62), rgba(255, 248, 236, 0.46)),
      radial-gradient(circle at 16% 10%, rgba(244, 166, 42, 0.1), transparent 13rem),
      radial-gradient(circle at 92% 94%, rgba(31, 107, 58, 0.07), transparent 14rem);
    box-shadow:
      0 18px 48px rgba(47, 35, 21, 0.12),
      0 0 24px rgba(255, 248, 236, 0.28),
      inset 0 1px 0 rgba(255, 255, 255, 0.84);
    -webkit-backdrop-filter: blur(16px) saturate(1.12);
    backdrop-filter: blur(16px) saturate(1.12);
  }

  .cafe-hero > div,
  .account-dashboard-hero,
  .account-auth-card {
    border-radius: 28px;
  }

  .cafe-hero h1,
  .account-auth-heading h1,
  .account-dashboard-hero h1 {
    font-size: clamp(28px, 8vw, 40px);
    line-height: 1.02;
  }

  .cafe-hero p,
  .account-auth-heading p:last-child,
  .account-dashboard-hero p {
    color: var(--text);
    font-size: 15px;
  }

  .menu-poster-grid,
  .cafe-order-layout,
  .cafe-menu-grid,
  .dashboard-metrics,
  .account-deal-grid,
  .account-portal {
    grid-template-columns: 1fr;
  }

  .menu-poster-card,
  .cafe-menu-card,
  .cafe-cart,
  .dashboard-card,
  .account-deal-card {
    border-radius: 24px;
  }

  .menu-poster-card {
    padding: 10px;
  }

  .menu-poster-card img {
    max-height: 70vh;
    border-radius: 18px;
    background: rgba(255, 248, 236, 0.72);
  }

  .cafe-menu-category {
    gap: 12px;
    padding: 12px;
    border-radius: 26px;
  }

  .cafe-menu-card {
    min-height: 160px;
    padding: 14px;
  }

  .cafe-menu-card:active,
  .menu-poster-card:active,
  .dashboard-card:active,
  .account-deal-card:active {
    transform: translateY(-2px) scale(0.99);
  }

  .cafe-menu-actions {
    justify-content: stretch;
  }

  .cafe-menu-actions .add-button,
  .cafe-menu-actions .small-button,
  .cafe-checkout-form .btn,
  .account-form .btn,
  .help-actions .btn {
    flex: 1 1 130px;
    min-height: 44px;
    border-radius: 999px;
    font-weight: 900;
  }

  .cafe-menu-actions .add-button,
  .cafe-checkout-form .btn.primary,
  .account-form .btn.primary,
  .help-actions .btn.primary {
    background: var(--saffron);
    color: #241607;
    box-shadow: 0 12px 26px rgba(244, 166, 42, 0.18);
  }

  .cafe-menu-actions .small-button,
  .help-actions .btn.secondary,
  .account-dashboard-hero .btn.secondary {
    background: var(--green);
    color: #fff;
    box-shadow: 0 12px 26px rgba(31, 107, 58, 0.16);
  }

  .cafe-cart {
    position: relative;
    top: auto;
    z-index: 2;
  }

  .cafe-cart-item,
  .option-group,
  .option-choice,
  .account-details-list div,
  .support-ticket-empty {
    border: 1px solid rgba(255, 252, 244, 0.54);
    background: rgba(255, 253, 248, 0.58);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72);
  }

  .cafe-cart-summary {
    border-color: rgba(31, 36, 31, 0.12);
  }

  .cafe-checkout-form input,
  .cafe-checkout-form textarea,
  .cafe-checkout-form select,
  .account-form input,
  .account-form textarea,
  .account-form select {
    min-height: 46px;
    border: 1px solid rgba(255, 252, 244, 0.68);
    border-radius: 18px;
    background: rgba(255, 253, 248, 0.72);
    color: var(--text);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.76);
    font-size: 16px;
    padding: 11px 12px;
    -webkit-backdrop-filter: blur(10px) saturate(1.08);
    backdrop-filter: blur(10px) saturate(1.08);
  }

  .customization-modal {
    z-index: 10000;
    align-items: end;
    padding: 8px;
    background: rgba(31, 36, 31, 0.28);
  }

  .customization-panel {
    width: min(calc(100vw - 16px), 420px);
    max-height: 88vh;
    border-radius: 30px 30px 22px 22px;
    background:
      linear-gradient(145deg, rgba(255, 253, 248, 0.92), rgba(255, 248, 236, 0.78)),
      radial-gradient(circle at 18% 14%, rgba(244, 166, 42, 0.12), transparent 58%);
    -webkit-backdrop-filter: blur(22px) saturate(1.14);
    backdrop-filter: blur(22px) saturate(1.14);
  }

  .account-auth-view {
    min-height: auto;
    align-content: start;
    gap: 16px;
  }

  .account-dashboard {
    gap: 14px;
  }

  .account-sidebar {
    position: static;
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding: 8px;
    scrollbar-width: none;
  }

  .account-sidebar::-webkit-scrollbar {
    display: none;
  }

  .account-sidebar button {
    flex: 0 0 auto;
    min-height: 40px;
    border-radius: 999px;
    white-space: nowrap;
  }

  .account-sidebar button.active,
  .account-sidebar button:hover {
    background: var(--saffron);
    color: #241607;
  }

  .account-order-card.status-cancelled,
  .account-order-card.status-completed,
  .cafe-order-card.status-cancelled,
  .cafe-order-card.status-completed {
    background:
      linear-gradient(145deg, rgba(255, 253, 248, 0.5), rgba(255, 248, 236, 0.34));
    opacity: 0.66;
    filter: saturate(0.76);
  }

  .small-button:disabled,
  .small-button[aria-disabled="true"],
  .text-button:disabled {
    background: rgba(255, 253, 248, 0.42);
    color: var(--muted);
    cursor: not-allowed;
    opacity: 0.58;
    pointer-events: none;
  }
}

@media (max-width: 768px) and (prefers-reduced-motion: reduce) {
  .cafe-body .mobile-reveal,
  .account-page .mobile-reveal {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

/* Restaurant-style cafe ordering refresh */
.cafe-body {
  background-color: #fff8ec;
  background-image: none;
  color: var(--text);
}

.cafe-body::before,
.cafe-body::after {
  content: none;
}

.cafe-page {
  background:
    linear-gradient(180deg, rgba(255, 253, 248, 0) 0, #fff8ec 520px),
    radial-gradient(circle at 10% 42%, rgba(244, 166, 42, 0.1), transparent 28rem),
    radial-gradient(circle at 94% 64%, rgba(31, 107, 58, 0.08), transparent 30rem);
}

.cafe-body .site-header {
  background: rgba(255, 253, 248, 0.88);
  border-bottom: 1px solid rgba(31, 36, 31, 0.08);
  box-shadow: 0 10px 30px rgba(92, 67, 30, 0.08);
}

.cafe-hero {
  position: relative;
  min-height: clamp(460px, 58vh, 680px);
  padding: clamp(54px, 8vw, 96px) var(--pad);
  display: grid;
  align-items: center;
  background:
    linear-gradient(90deg, rgba(31, 36, 31, 0.42), rgba(31, 36, 31, 0.12) 58%, rgba(31, 36, 31, 0.2)),
    url("../images/storefront.jpg") center 35% / cover no-repeat;
}

.cafe-hero-panel {
  width: min(660px, 100%);
  padding: clamp(22px, 3.2vw, 34px);
  border: 1px solid rgba(255, 252, 244, 0.52);
  border-radius: 34px;
  background:
    linear-gradient(145deg, rgba(255, 253, 248, 0.82), rgba(255, 248, 236, 0.64)),
    radial-gradient(circle at 18% 18%, rgba(244, 166, 42, 0.12), transparent 58%);
  box-shadow:
    0 30px 80px rgba(31, 36, 31, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.82);
  -webkit-backdrop-filter: blur(18px) saturate(1.08);
  backdrop-filter: blur(18px) saturate(1.08);
}

.cafe-hero h1 {
  max-width: 580px;
  color: var(--text);
  font-size: clamp(42px, 6vw, 72px);
  letter-spacing: 0;
}

.cafe-hero p {
  max-width: 560px;
  color: #2a3028;
  font-weight: 700;
}

.cafe-hero-actions,
.cafe-ordering-header {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.cafe-ordering-surface {
  width: min(100% - 36px, 1280px);
  margin: clamp(-42px, -4vw, -24px) auto 0;
  padding: clamp(18px, 3vw, 30px);
  border: 1px solid rgba(255, 252, 244, 0.7);
  border-radius: 36px;
  background:
    linear-gradient(145deg, rgba(255, 253, 248, 0.94), rgba(255, 248, 236, 0.88)),
    radial-gradient(circle at 12% 8%, rgba(244, 166, 42, 0.09), transparent 32rem),
    radial-gradient(circle at 90% 30%, rgba(31, 107, 58, 0.07), transparent 34rem);
  box-shadow:
    0 32px 90px rgba(92, 67, 30, 0.13),
    inset 0 1px 0 rgba(255, 255, 255, 0.86);
  -webkit-backdrop-filter: blur(16px) saturate(1.08);
  backdrop-filter: blur(16px) saturate(1.08);
}

.cafe-ordering-header {
  justify-content: space-between;
  margin-bottom: 18px;
}

.cafe-ordering-header h2 {
  color: var(--text);
  font-size: clamp(28px, 4vw, 46px);
}

.cafe-ordering-header p,
.cafe-section .section-heading p,
.cafe-menu-card p,
.default-option-hint {
  color: #565f51;
}

.cafe-posters,
.cafe-section,
.cafe-confirmation {
  padding: 0;
  background: transparent;
}

.menu-poster-details {
  margin-bottom: 16px;
  border: 1px solid rgba(31, 36, 31, 0.08);
  border-radius: 24px;
  background: rgba(255, 250, 241, 0.72);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.82);
}

.menu-poster-details summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 18px;
  cursor: pointer;
  list-style: none;
}

.menu-poster-details summary::-webkit-details-marker {
  display: none;
}

.menu-poster-details summary span {
  display: grid;
  gap: 2px;
}

.menu-poster-details summary strong {
  color: var(--text);
  font-size: 18px;
}

.menu-poster-details summary em {
  border-radius: 999px;
  background: rgba(31, 107, 58, 0.1);
  color: var(--green);
  padding: 7px 12px;
  font-style: normal;
  font-weight: 900;
}

.menu-poster-grid {
  padding: 0 16px 16px;
}

.menu-poster-card {
  background: rgba(255, 253, 248, 0.84);
}

.menu-poster-card img {
  max-height: 520px;
}

.cafe-category-nav {
  position: sticky;
  top: 74px;
  z-index: 30;
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding: 10px;
  margin-bottom: 20px;
  border: 1px solid rgba(31, 36, 31, 0.08);
  border-radius: 999px;
  background: rgba(255, 253, 248, 0.86);
  box-shadow:
    0 14px 36px rgba(92, 67, 30, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.84);
  -webkit-backdrop-filter: blur(16px) saturate(1.08);
  backdrop-filter: blur(16px) saturate(1.08);
  scrollbar-width: none;
}

.cafe-category-nav::-webkit-scrollbar {
  display: none;
}

.cafe-category-nav a {
  flex: 0 0 auto;
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 9px 14px;
  color: var(--text);
  font-weight: 900;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.cafe-category-nav a:hover {
  background: var(--saffron);
  color: #241607;
  transform: translateY(-1px);
}

.cafe-order-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 420px);
  gap: clamp(18px, 2.5vw, 30px);
  align-items: start;
}

.cafe-menu-column {
  display: grid;
  gap: 26px;
}

.cafe-popular-grid,
.cafe-menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
  gap: 14px;
}

.cafe-menu-list {
  gap: 22px;
}

.cafe-menu-category {
  scroll-margin-top: 140px;
  padding: 18px;
  border-color: rgba(31, 36, 31, 0.08);
  background: rgba(255, 253, 248, 0.62);
}

.cafe-category-label {
  background: rgba(244, 166, 42, 0.14);
  color: #8f4d00;
}

.cafe-menu-card {
  min-height: 190px;
  border-color: rgba(31, 36, 31, 0.09);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.92), rgba(255, 250, 241, 0.78));
  box-shadow:
    0 16px 38px rgba(92, 67, 30, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.cafe-menu-card.popular-card {
  border-color: rgba(244, 166, 42, 0.28);
}

.cafe-menu-card span {
  background: rgba(244, 166, 42, 0.12);
  color: #8f4d00;
}

.cafe-menu-card h3 {
  color: var(--text);
  font-size: 22px;
}

.default-option-hint {
  display: inline-flex;
  width: fit-content;
  margin-top: 8px;
  border-radius: 999px;
  padding: 6px 9px;
  background: rgba(31, 107, 58, 0.08);
  color: var(--green);
  font-size: 12px;
  font-weight: 900;
}

.cafe-menu-card-bottom {
  align-items: flex-end;
}

.cafe-cart {
  position: sticky;
  top: 92px;
  max-height: calc(100vh - 112px);
  overflow: auto;
  border-color: rgba(31, 36, 31, 0.1);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(255, 248, 236, 0.88));
}

.cart-drawer-close {
  display: none;
}

.checkout-step {
  display: grid;
  gap: 12px;
  padding: 14px;
  border: 1px solid rgba(31, 36, 31, 0.08);
  border-radius: 22px;
  background: rgba(255, 253, 248, 0.7);
}

.checkout-step-heading {
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--text);
}

.checkout-step-heading span {
  display: inline-grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  font-size: 13px;
  font-weight: 900;
}

.checkout-step-heading strong {
  font-size: 15px;
}

.cafe-cart-items {
  gap: 10px;
}

.cafe-cart-item {
  background: rgba(255, 248, 236, 0.84);
  border: 1px solid rgba(31, 36, 31, 0.06);
}

.cafe-payment-methods,
.stripe-online-panel,
.checkout-requirement-card {
  background: rgba(255, 250, 241, 0.76);
}

.mobile-cart-toggle {
  display: none;
}

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

  .cafe-cart {
    position: static;
    max-height: none;
  }
}

@media (max-width: 768px) {
  .cafe-page {
    padding-bottom: 86px;
  }

  .cafe-hero {
    min-height: 430px;
    padding: 58px 18px 72px;
  }

  .cafe-hero-panel {
    border-radius: 30px;
  }

  .cafe-hero h1 {
    font-size: clamp(36px, 11vw, 52px);
  }

  .cafe-ordering-surface {
    width: min(100% - 20px, 440px);
    margin-top: -46px;
    padding: 14px;
    border-radius: 30px;
  }

  .cafe-ordering-header {
    align-items: flex-start;
  }

  .cafe-category-nav {
    top: 72px;
    margin-inline: -4px;
    border-radius: 22px;
  }

  .menu-poster-grid,
  .cafe-popular-grid,
  .cafe-menu-grid {
    grid-template-columns: 1fr;
  }

  .cafe-menu-category {
    padding: 14px;
    border-radius: 26px;
  }

  .cafe-cart {
    position: fixed;
    left: 10px;
    right: 10px;
    bottom: 10px;
    top: auto;
    z-index: 10000;
    max-height: min(86vh, 760px);
    overflow: auto;
    padding: 16px;
    border-radius: 30px;
    box-shadow: 0 28px 90px rgba(31, 36, 31, 0.28);
    transform: translateY(calc(100% + 22px));
    opacity: 0;
    pointer-events: none;
    transition:
      transform 260ms cubic-bezier(0.22, 1, 0.36, 1),
      opacity 220ms ease;
  }

  body.cart-drawer-open .cafe-cart {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .cart-drawer-close {
    display: inline-flex;
    position: sticky;
    top: 0;
    justify-self: end;
    z-index: 1;
    border: 0;
    border-radius: 999px;
    background: rgba(31, 36, 31, 0.08);
    color: var(--text);
    padding: 8px 12px;
    font-weight: 900;
  }

  .mobile-cart-toggle {
    position: fixed;
    left: 14px;
    right: 14px;
    bottom: 14px;
    z-index: 9999;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 10px;
    min-height: 58px;
    border: 1px solid rgba(255, 252, 244, 0.7);
    border-radius: 999px;
    background:
      linear-gradient(145deg, rgba(31, 107, 58, 0.96), rgba(27, 86, 48, 0.96));
    color: #fff;
    box-shadow: 0 20px 54px rgba(31, 36, 31, 0.24);
    padding: 9px 16px;
    font-weight: 900;
  }

  body.cart-drawer-open .mobile-cart-toggle {
    display: none;
  }

  .mobile-cart-toggle span {
    color: rgba(255, 255, 255, 0.82);
  }

  .mobile-cart-toggle em {
    font-style: normal;
    justify-self: end;
  }
}

/* Ordering-first cafe and homepage polish */
.hero-subtitle {
  max-width: 600px;
  margin: 0;
  color: #30372f;
  font-size: clamp(16px, 1.35vw, 19px);
  font-weight: 750;
  line-height: 1.5;
}

.hero-action-deck {
  align-items: center;
}

.hero-action-deck .btn {
  min-width: 118px;
  justify-content: center;
}

.hero-action-deck .btn.ghost {
  border: 1px solid rgba(255, 252, 244, 0.72);
  background:
    linear-gradient(145deg, rgba(255, 253, 248, 0.82), rgba(255, 248, 236, 0.58));
  color: var(--text);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72);
  -webkit-backdrop-filter: blur(12px) saturate(1.05);
  backdrop-filter: blur(12px) saturate(1.05);
}

.hero-action-deck .btn.ghost:hover {
  transform: translateY(-1px);
  border-color: rgba(31, 107, 58, 0.2);
  background: rgba(255, 253, 248, 0.9);
}

@media (min-width: 861px) {
  .hero {
    min-height: min(760px, calc(100vh - 76px));
    padding-top: clamp(28px, 4vw, 54px);
    padding-bottom: clamp(22px, 3vw, 42px);
  }

  .hero-content {
    align-content: center;
    gap: clamp(16px, 2vw, 24px);
  }

  .hero-copy-panel {
    width: min(100%, 720px);
    padding: clamp(20px, 2.2vw, 30px);
  }

  .hero-shop-panel {
    width: min(100%, 1080px);
    padding: 16px;
  }

  .hero-quick-link {
    min-height: 78px;
  }

  .hero-flavor-row {
    margin-bottom: 4px;
  }
}

.cafe-body .site-header {
  min-height: auto;
}

.cafe-hero {
  min-height: clamp(280px, 34vh, 390px);
  padding: clamp(32px, 5vw, 58px) var(--pad) clamp(54px, 7vw, 80px);
  background:
    linear-gradient(90deg, rgba(31, 36, 31, 0.34), rgba(31, 36, 31, 0.08) 58%, rgba(31, 36, 31, 0.16)),
    url("../images/storefront.jpg") center 38% / cover no-repeat;
}

.cafe-hero-panel {
  width: min(560px, 100%);
  padding: clamp(18px, 2.4vw, 26px);
  border-radius: 28px;
}

.cafe-hero h1 {
  font-size: clamp(34px, 4.4vw, 56px);
  line-height: 0.96;
}

.cafe-hero p {
  max-width: 500px;
  font-size: clamp(15px, 1.2vw, 17px);
}

.cafe-hero-actions .btn {
  min-height: 42px;
  padding: 10px 17px;
}

.cafe-ordering-surface {
  margin-top: clamp(-48px, -5vw, -30px);
  padding: clamp(18px, 2.4vw, 28px);
}

.cafe-ordering-header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 16px;
}

.cafe-ordering-header h2 {
  max-width: 680px;
  font-size: clamp(28px, 3.2vw, 42px);
  line-height: 1;
}

.cafe-ordering-header p {
  max-width: 720px;
  font-weight: 700;
}

.menu-poster-details {
  overflow: hidden;
}

.cafe-category-nav {
  top: 68px;
}

.cafe-order-layout {
  grid-template-columns: minmax(0, 1fr) minmax(360px, 430px);
}

.cafe-cart {
  top: 82px;
  max-height: calc(100vh - 102px);
  overscroll-behavior: contain;
  scrollbar-width: thin;
}

.cafe-cart::-webkit-scrollbar {
  width: 8px;
}

.cafe-cart::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: rgba(31, 36, 31, 0.18);
}

.checkout-step {
  background: rgba(255, 253, 248, 0.78);
}

.cafe-menu-card {
  min-height: 176px;
}

.cafe-menu-card h3 {
  font-size: clamp(19px, 1.55vw, 22px);
}

.cafe-menu-card p {
  color: #414a3d;
  font-weight: 650;
}

.cafe-menu-card-bottom .btn {
  min-height: 40px;
  padding: 9px 13px;
}

@media (max-width: 980px) {
  .cafe-cart {
    max-height: none;
    overflow: visible;
  }
}

@media (max-width: 768px) {
  .hero-subtitle {
    font-size: 14px;
    line-height: 1.42;
  }

  .hero-action-deck {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }

  .hero-action-deck .btn {
    min-width: 0;
    min-height: 38px;
    padding: 8px 10px;
    font-size: 13px;
  }

  .hero-action-deck .btn:first-child {
    grid-column: span 1;
  }

  .hero {
    min-height: auto;
    padding-bottom: 14px;
  }

  .hero-content {
    gap: 12px;
  }

  .hero-copy-panel {
    gap: 8px;
  }

  .cafe-hero {
    min-height: 300px;
    padding: 74px 14px 60px;
  }

  .cafe-hero-panel {
    width: min(100% - 4px, 440px);
    margin-inline: auto;
    padding: 18px;
    border-radius: 26px;
  }

  .cafe-hero h1 {
    font-size: clamp(32px, 10vw, 44px);
  }

  .cafe-hero p {
    font-size: 14px;
  }

  .cafe-hero-actions {
    gap: 8px;
  }

  .cafe-hero-actions .btn {
    min-height: 39px;
    padding: 9px 14px;
  }

  .cafe-ordering-surface {
    margin-top: -40px;
  }

  .cafe-ordering-header {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .cafe-ordering-header h2 {
    font-size: clamp(24px, 7vw, 32px);
  }

  .cafe-ordering-header > .btn {
    width: 100%;
  }

  .cafe-cart {
    max-height: min(86vh, 760px);
    overflow: auto;
  }
}

/* Cafe direct-ordering refinement */
.cafe-body {
  min-height: 100vh;
  background:
    linear-gradient(180deg, rgba(255, 248, 236, 0.5), rgba(255, 248, 236, 0.74)),
    var(--site-cafe-bg) center / cover fixed no-repeat;
}

.cafe-body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(180deg, rgba(31, 36, 31, 0.1), rgba(255, 248, 236, 0.48)),
    var(--site-cafe-bg) center / cover no-repeat;
  pointer-events: none;
}

.cafe-body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 16% 8%, rgba(255, 253, 248, 0.44), transparent 28rem),
    radial-gradient(circle at 78% 18%, rgba(31, 107, 58, 0.1), transparent 26rem),
    linear-gradient(180deg, rgba(255, 248, 236, 0.16), rgba(255, 248, 236, 0.76));
  pointer-events: none;
}

.cafe-page {
  min-height: 100vh;
  padding: clamp(22px, 3vw, 38px) 0 54px;
  background: transparent;
}

.cafe-ordering-surface {
  width: min(100% - 36px, 1380px);
  margin: clamp(16px, 2vw, 28px) auto 0;
  padding: clamp(16px, 2vw, 24px);
  background:
    linear-gradient(145deg, rgba(255, 253, 248, 0.9), rgba(255, 248, 236, 0.82));
}

.cafe-ordering-header {
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  margin-bottom: 12px;
  padding: 4px 2px 8px;
}

.cafe-ordering-header h2 {
  font-size: clamp(30px, 3vw, 44px);
}

.cafe-ordering-header p {
  max-width: 760px;
  margin-top: 6px;
  color: #384132;
}

.cafe-ordering-notice {
  margin-top: 10px;
}

.menu-poster-details {
  margin-bottom: 12px;
}

.menu-poster-details summary {
  padding: 12px 16px;
}

.cafe-category-nav {
  top: 66px;
  margin-bottom: 14px;
  padding: 8px;
}

.cafe-category-nav a {
  min-height: 36px;
  padding: 8px 13px;
}

.cafe-order-layout {
  grid-template-columns: minmax(0, 1fr) minmax(350px, 410px);
  gap: clamp(16px, 2vw, 24px);
}

.cafe-menu-column {
  gap: 18px;
}

.cafe-popular-section .section-heading,
.cafe-menu-column > .cafe-section > .section-heading {
  margin-bottom: 12px;
}

.cafe-popular-section .section-heading h2,
.cafe-menu-column > .cafe-section > .section-heading h2 {
  font-size: clamp(24px, 2vw, 32px);
}

.cafe-menu-list {
  gap: 16px;
}

.cafe-menu-category {
  padding: 14px;
}

.cafe-menu-card {
  min-height: 164px;
  padding: 16px;
}

.cafe-menu-card h3 {
  margin-bottom: 6px;
}

.default-option-hint {
  margin-top: 6px;
  padding: 5px 8px;
}

.cafe-cart {
  top: 76px;
  max-height: calc(100vh - 92px);
  padding: 16px;
}

.cafe-cart-heading {
  margin-bottom: 10px;
}

.cafe-cart-heading h2 {
  font-size: 24px;
}

.checkout-step {
  gap: 9px;
  padding: 12px;
  border-radius: 18px;
}

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

.checkout-step-heading span {
  width: 24px;
  height: 24px;
  font-size: 12px;
}

.cafe-cart-items {
  max-height: 250px;
  overflow: auto;
  padding-right: 2px;
}

.cafe-cart-summary {
  position: sticky;
  bottom: -1px;
  z-index: 2;
  margin: 2px -4px 2px;
  padding: 12px;
  border: 1px solid rgba(31, 36, 31, 0.08);
  border-radius: 18px;
  background:
    linear-gradient(145deg, rgba(255, 253, 248, 0.96), rgba(255, 248, 236, 0.92));
  box-shadow: 0 -12px 28px rgba(92, 67, 30, 0.08);
}

.cafe-cart-summary strong {
  font-size: 20px;
}

.verified-phone-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 11px 12px;
  border: 1px solid rgba(31, 107, 58, 0.18);
  border-radius: 16px;
  background: rgba(31, 107, 58, 0.08);
}

.verified-phone-summary span {
  display: block;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.verified-phone-summary strong {
  color: var(--green);
  font-size: 14px;
}

.checkout-requirement-card {
  padding: 12px;
  border-radius: 18px;
}

#cafeOrderStatus:empty {
  display: none;
}

@media (max-width: 980px) {
  .cafe-cart-items {
    max-height: none;
    overflow: visible;
  }

  .cafe-cart-summary {
    position: static;
    margin-inline: 0;
  }
}

@media (max-width: 768px) {
  .cafe-body {
    background-attachment: scroll;
  }

  .cafe-page {
    padding-top: calc(82px + env(safe-area-inset-top, 0px));
  }

  .cafe-ordering-surface {
    width: min(100% - 20px, 440px);
    margin-top: 10px;
    padding: 14px;
    border-radius: 28px;
  }

  .cafe-ordering-header {
    grid-template-columns: 1fr;
    align-items: start;
    padding-bottom: 2px;
  }

  .cafe-ordering-header h2 {
    font-size: clamp(25px, 7.4vw, 34px);
  }

  .cafe-ordering-header > .btn {
    width: 100%;
  }

  .cafe-category-nav {
    top: 72px;
    padding: 7px;
  }

  .cafe-cart {
    max-height: min(86vh, 760px);
  }
}

/* Desktop homepage hierarchy cleanup */
.hero-action-deck {
  max-width: 360px;
}

.hero-action-deck .btn {
  flex: 1 1 150px;
}

.today-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}

.today-grid .market-feature-card {
  min-height: 255px;
  border-radius: 26px;
}

.today-grid .market-feature-card img {
  min-height: 255px;
}

.today-grid .market-feature-card div {
  left: 12px;
  right: 12px;
  bottom: 12px;
  padding: 12px;
  border-radius: 20px;
}

.today-grid .market-feature-card h3 {
  font-size: clamp(18px, 1.65vw, 24px);
  line-height: 1.05;
}

.deals-drawer {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: grid;
  align-items: center;
  justify-items: center;
  padding: clamp(18px, 4vw, 44px);
  pointer-events: none;
}

.deals-drawer-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(31, 36, 31, 0.24);
  opacity: 0;
  transition: opacity 220ms ease, backdrop-filter 220ms ease;
}

.deals-drawer-panel {
  position: relative;
  z-index: 1;
  display: grid;
  width: min(100%, 760px);
  max-height: min(82vh, 760px);
  gap: 14px;
  overflow: auto;
  border: 1px solid rgba(255, 252, 244, 0.72);
  border-radius: 30px;
  background:
    linear-gradient(145deg, rgba(255, 253, 248, 0.94), rgba(255, 248, 236, 0.86));
  box-shadow:
    0 32px 90px rgba(31, 36, 31, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.86);
  padding: clamp(16px, 2.4vw, 24px);
  transform: translateY(18px) scale(0.98);
  opacity: 0;
  transition:
    transform 260ms cubic-bezier(0.22, 1, 0.36, 1),
    opacity 220ms ease;
  -webkit-backdrop-filter: blur(18px) saturate(1.08);
  backdrop-filter: blur(18px) saturate(1.08);
}

.deals-drawer.open {
  pointer-events: auto;
}

.deals-drawer.open .deals-drawer-backdrop {
  opacity: 1;
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
}

.deals-drawer.open .deals-drawer-panel {
  transform: translateY(0) scale(1);
  opacity: 1;
}

.deals-drawer-open {
  overflow: hidden;
}

.deals-drawer-header,
.deals-drawer-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.deals-drawer-list {
  display: grid;
  gap: 10px;
}

.deals-drawer-card {
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr);
  gap: 12px;
  padding: 10px;
  border: 1px solid rgba(31, 36, 31, 0.08);
  border-radius: 20px;
  background: rgba(255, 253, 248, 0.72);
}

.deals-drawer-image {
  display: grid;
  min-height: 88px;
  place-items: center;
  overflow: hidden;
  border-radius: 16px;
  background: rgba(255, 248, 236, 0.82);
}

.deals-drawer-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.deals-drawer-image span {
  color: var(--muted);
  font-size: 11px;
  font-weight: 900;
  text-align: center;
}

.deals-drawer-card h3 {
  margin: 4px 0 5px;
  color: var(--text);
  font-size: 17px;
  line-height: 1.15;
}

.deals-drawer-card p {
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 13px;
}

.deals-drawer-meta strong {
  color: var(--green);
  font-size: 18px;
}

.deals-drawer-meta small {
  color: var(--muted);
  font-weight: 800;
}

.deals-view-all,
.deals-drawer-card a,
.deals-empty-state a,
.deals-close {
  border: 0;
  border-radius: 999px;
  background: rgba(31, 107, 58, 0.1);
  color: var(--green);
  padding: 9px 12px;
  font-weight: 900;
}

.deals-close {
  cursor: pointer;
}

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

@media (max-width: 768px) {
  .hero-action-deck {
    max-width: none;
  }

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

  .deals-drawer {
    align-items: end;
    justify-items: stretch;
    padding: 0;
  }

  .deals-drawer-panel {
    width: 100%;
    max-height: min(82vh, 720px);
    border-radius: 28px 28px 0 0;
    transform: translateY(100%);
    opacity: 1;
  }

  .deals-drawer.open .deals-drawer-panel {
    transform: translateY(0);
  }
}

/* Customer UX tightening: lookup prompt, action cards, paused cafe checkout */
.btn.ghost {
  border: 1px solid rgba(31, 36, 31, 0.1);
  background:
    linear-gradient(145deg, rgba(255, 253, 248, 0.84), rgba(255, 248, 236, 0.66));
  color: var(--text);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

.btn.ghost:hover {
  transform: translateY(-1px);
  border-color: rgba(31, 107, 58, 0.2);
  background: rgba(255, 253, 248, 0.92);
}

.product-lookup-prompt {
  display: grid;
  width: min(100%, 980px);
  gap: 12px;
  padding: 14px;
  border: 1px solid rgba(255, 252, 244, 0.68);
  border-radius: 26px;
  background:
    linear-gradient(145deg, rgba(255, 253, 248, 0.7), rgba(255, 248, 236, 0.54));
  box-shadow:
    0 18px 48px rgba(75, 55, 26, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.78);
  -webkit-backdrop-filter: blur(14px) saturate(1.08);
  backdrop-filter: blur(14px) saturate(1.08);
}

.product-lookup-prompt p {
  margin: 3px 0 0;
  color: #30372f;
  font-weight: 750;
}

.lookup-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.lookup-chip-row a {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 7px 11px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--green);
  font-size: 13px;
  font-weight: 900;
  box-shadow: inset 0 0 0 1px rgba(31, 36, 31, 0.08);
  transition: transform 180ms ease, background 180ms ease;
}

.lookup-chip-row a:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.9);
}

.market-feature-card em {
  display: inline-flex;
  width: fit-content;
  margin-top: 10px;
  border-radius: 999px;
  padding: 7px 10px;
  background: rgba(255, 253, 248, 0.86);
  color: var(--green);
  font-size: 12px;
  font-style: normal;
  font-weight: 900;
}

.account-quick-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 14px 0 18px;
}

.account-quick-actions .btn {
  min-height: 42px;
  padding: 10px 15px;
}

.cafe-paused-actions {
  display: grid;
  gap: 10px;
  padding: 16px;
  margin-bottom: 14px;
  border: 1px solid rgba(185, 58, 47, 0.16);
  border-radius: 24px;
  background:
    linear-gradient(145deg, rgba(255, 250, 241, 0.92), rgba(255, 245, 229, 0.82)),
    radial-gradient(circle at 18% 12%, rgba(244, 166, 42, 0.12), transparent 18rem);
  box-shadow:
    0 16px 42px rgba(92, 67, 30, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.82);
}

.cafe-paused-actions h3,
.cafe-paused-actions p {
  margin: 0;
}

.cafe-paused-actions h3 {
  color: var(--text);
  font-size: 19px;
}

.cafe-paused-actions p {
  color: #4f584c;
  font-weight: 650;
}

.cafe-paused-actions > div {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.cafe-paused-actions .btn {
  min-height: 40px;
  padding: 9px 13px;
}

.cafe-cart.ordering-paused .cafe-cart-summary,
.cafe-cart.ordering-paused .cafe-checkout-form {
  display: none;
}

.homepage-promotion-admin {
  grid-column: 1 / -1;
  gap: 18px;
}

.promotion-manager-toolbar,
.promotion-filter-row,
.promotion-source-tabs,
.promotion-schedule-shortcuts,
.promotion-preview-size-toggle {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.promotion-manager-toolbar {
  align-items: center;
  justify-content: space-between;
}

.promotion-filter-row button,
.promotion-source-tabs button,
.promotion-schedule-shortcuts button,
.promotion-preview-size-toggle button {
  min-height: 36px;
  padding: 7px 11px;
  color: #4e5049;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(31, 36, 31, 0.13);
  border-radius: 8px;
  font-weight: 750;
  cursor: pointer;
}

.promotion-filter-row button.active,
.promotion-source-tabs button.active,
.promotion-schedule-shortcuts button.active,
.promotion-preview-size-toggle button.active {
  color: #fff;
  background: #0b5138;
  border-color: #0b5138;
}

.promotion-manager-list {
  display: grid;
  gap: 9px;
  max-height: 430px;
  padding: 2px;
  overflow-y: auto;
}

.homepage-promotion-row {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr) auto;
  align-items: center;
  gap: 13px;
  padding: 11px;
  background: rgba(255, 255, 255, 0.68);
  border: 1px solid rgba(31, 36, 31, 0.1);
  border-radius: 10px;
}

.homepage-promotion-thumb {
  display: grid;
  place-items: center;
  width: 92px;
  height: 66px;
  color: #6f6a5f;
  background: #f5efe4;
  border-radius: 7px;
  overflow: hidden;
  font-size: 11px;
  font-weight: 800;
}

.homepage-promotion-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.homepage-promotion-summary h3,
.promotion-builder-heading h3,
.promotion-builder-step h3 {
  margin: 0;
  color: #252923;
}

.homepage-promotion-summary p {
  margin: 3px 0 0;
  color: #6f6a5f;
  font-size: 12px;
}

.homepage-promotion-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 6px;
  max-width: 310px;
}

.deal-state-pill.status-active { color: #fff; background: #1f6b3a; }
.deal-state-pill.status-scheduled { color: #173f2a; background: #dcebdc; }
.deal-state-pill.status-draft { color: #6a4a12; background: #fff0cf; }
.deal-state-pill.status-expired,
.deal-state-pill.status-disabled,
.deal-state-pill.status-archived { color: #6f6a5f; background: #ece9e2; }

.homepage-promotion-admin > .admin-form {
  gap: 16px;
  padding: clamp(16px, 2vw, 24px);
  background: rgba(255, 255, 255, 0.52);
  border: 1px solid rgba(31, 36, 31, 0.1);
  border-radius: 14px;
}

.promotion-builder-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.promotion-builder-step {
  display: grid;
  gap: 12px;
  padding: 16px;
  background: rgba(255, 253, 248, 0.76);
  border-radius: 12px;
}

.promotion-builder-step > h3 {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 16px;
}

.promotion-builder-step > h3 > span {
  display: grid;
  place-items: center;
  width: 27px;
  height: 27px;
  color: #fff;
  background: #0b5138;
  border-radius: 50%;
  font-size: 12px;
}

.promotion-preset-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 9px;
}

.promotion-preset-grid button {
  display: grid;
  gap: 3px;
  min-height: 76px;
  padding: 12px;
  color: #252923;
  text-align: left;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(31, 36, 31, 0.12);
  border-radius: 10px;
  cursor: pointer;
}

.promotion-preset-grid button:hover,
.promotion-preset-grid button.active {
  background: #eef5ef;
  border-color: #1f6b3a;
  box-shadow: 0 5px 16px rgba(31, 107, 58, 0.1);
}

.promotion-preset-grid small {
  color: #6f6a5f;
  line-height: 1.35;
}

.promotion-action-grid,
.promotion-schedule-fields {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.promotion-image-source {
  padding: 12px;
  background: rgba(255, 255, 255, 0.62);
  border-radius: 9px;
}

.promotion-image-source[hidden],
.promotion-preview[hidden] {
  display: none !important;
}

.promotion-selected-image {
  width: min(100%, 440px);
  padding: 7px;
  background: #fff;
  border-radius: 9px;
}

.promotion-selected-image img {
  display: block;
  width: 100%;
  max-height: 190px;
  object-fit: contain;
  border-radius: 6px;
}

.promotion-crop-toolbar {
  display: flex;
  gap: 8px;
}

.promotion-crop-toolbar button {
  min-height: 36px;
  padding: 7px 12px;
  color: #315342;
  background: #fff;
  border: 1px solid rgba(31, 36, 31, 0.14);
  border-radius: 8px;
  font-weight: 750;
  cursor: pointer;
}

.promotion-crop-toolbar button.active {
  color: #fff;
  background: #0b5138;
  border-color: #0b5138;
}

.promotion-crop-editor {
  --crop-x: 50%;
  --crop-y: 50%;
  --crop-zoom: 1;
  position: relative;
  width: min(100%, 760px);
  aspect-ratio: 16 / 7;
  background: #ded8cc;
  border: 1px solid rgba(31, 36, 31, 0.16);
  border-radius: 12px;
  overflow: hidden;
  cursor: grab;
  touch-action: none;
}

.promotion-crop-editor[data-crop-mode="mobile"] {
  width: min(100%, 390px);
  aspect-ratio: 4 / 3;
}

.promotion-crop-editor:active { cursor: grabbing; }
.promotion-crop-editor:focus-visible { outline: 3px solid rgba(244, 166, 42, 0.72); outline-offset: 3px; }
.promotion-crop-editor.crop-disabled { cursor: default; }

.promotion-crop-editor img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: var(--crop-x) var(--crop-y);
  transform: scale(var(--crop-zoom));
  transition: transform 120ms ease, object-position 120ms ease;
  user-select: none;
  pointer-events: none;
}

.promotion-crop-editor[data-image-fit="contain"] img {
  object-fit: contain;
  transform: none;
}

.promotion-crop-editor > span {
  position: absolute;
  right: 10px;
  bottom: 10px;
  padding: 5px 8px;
  color: #fff;
  background: rgba(13, 31, 21, 0.72);
  border-radius: 6px;
  font-size: 11px;
  font-weight: 750;
  pointer-events: none;
}

.promotion-crop-editor.crop-disabled > span { display: none; }

.promotion-crop-controls {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) auto;
  align-items: end;
  gap: 12px;
}

.promotion-crop-controls > label {
  display: flex;
  justify-content: space-between;
}

.promotion-crop-controls > input { grid-column: 1; }
.promotion-crop-controls .admin-actions { grid-column: 2; grid-row: 1 / span 2; }

.promotion-sequence-preview {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 8px;
}

.promotion-sequence-preview article {
  position: relative;
  display: grid;
  grid-template-rows: 68px auto;
  gap: 6px;
  min-width: 0;
  padding: 7px;
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(31, 36, 31, 0.1);
  border-radius: 9px;
}

.promotion-sequence-preview img { width: 100%; height: 68px; object-fit: cover; border-radius: 6px; }
.promotion-sequence-preview strong { overflow: hidden; font-size: 11px; line-height: 1.25; text-overflow: ellipsis; white-space: nowrap; }
.promotion-sequence-preview article > span { position: absolute; z-index: 1; top: 11px; left: 11px; display: grid; place-items: center; width: 22px; height: 22px; color: #fff; background: #0b5138; border-radius: 50%; font-size: 10px; font-weight: 800; }

.admin-guidance-note,
.site-asset-crop-guidance {
  padding: 10px 12px;
  color: #435046;
  background: rgba(233, 241, 235, 0.8);
  border-left: 3px solid #1f6b3a;
  border-radius: 7px;
  font-size: 12px;
  line-height: 1.5;
}

/* Unified Deals Manager */
.deals-control-center {
  --deal-green: #17603e;
  --deal-orange: #ee9b19;
  grid-column: 1 / -1;
  color: #252925;
  background: rgba(255, 255, 255, 0.96);
}

.deal-summary-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(105px, 1fr));
  gap: 8px;
  margin: 14px 0;
}

.deal-summary-grid button {
  display: grid;
  gap: 2px;
  min-height: 72px;
  padding: 12px;
  color: #252925;
  text-align: left;
  background: #f4f6f3;
  border: 1px solid rgba(23, 96, 62, 0.12);
  border-radius: 9px;
  cursor: pointer;
}

.deal-summary-grid button:hover,
.deal-summary-grid button:focus-visible {
  border-color: rgba(23, 96, 62, 0.42);
  background: #eef5f0;
}

.deal-summary-grid strong { color: var(--deal-green); font-size: 1.55rem; }
.deal-summary-grid span { color: #687068; font-size: 0.76rem; font-weight: 700; }

.deal-manager-toolbar,
.deal-bulk-toolbar,
.deal-list-toolbar {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 12px;
  margin: 12px 0;
}

.deal-manager-actions,
.deal-inline-toggles {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.deal-manager-search {
  width: min(360px, 100%);
}

.deal-manager-search input { min-height: 40px; }

.deal-filter-row {
  margin: 10px 0;
  padding-bottom: 4px;
  overflow-x: auto;
  scrollbar-width: thin;
}

.deal-bulk-toolbar {
  justify-content: flex-start;
  padding: 9px 11px;
  background: #f4f6f3;
  border-radius: 8px;
}

.deal-bulk-toolbar select { width: auto; min-width: 180px; }

.deal-editor-form {
  position: sticky;
  top: 12px;
  max-height: calc(100vh - 24px);
  padding: 18px;
  overflow-y: auto;
  background: #fff;
  border-color: rgba(31, 36, 31, 0.14);
}

.deal-product-picker,
.deal-display-locations {
  display: grid;
  gap: 8px;
  padding: 12px;
  background: #f5f7f4;
  border: 1px solid rgba(31, 36, 31, 0.1);
  border-radius: 9px;
}

.deal-product-results {
  display: grid;
  max-height: 240px;
  overflow-y: auto;
}

.deal-product-results button {
  display: grid;
  gap: 2px;
  padding: 9px 10px;
  color: #252925;
  text-align: left;
  background: #fff;
  border: 0;
  border-bottom: 1px solid rgba(31, 36, 31, 0.09);
  cursor: pointer;
}

.deal-product-results button:hover { background: #eef5f0; }
.deal-product-results span,
.deal-selected-product span { color: #6a716a; font-size: 0.78rem; }

.deal-selected-product {
  display: grid;
  gap: 3px;
  padding: 10px;
  color: #164f36;
  background: #e8f3ec;
  border-radius: 7px;
}

.deal-display-locations {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 4px 0;
}

.deal-display-locations legend {
  padding: 0 5px;
  color: #17603e;
  font-weight: 800;
}

.toggle-row {
  display: flex;
  align-items: center;
  gap: 7px;
  min-height: 38px;
  padding: 7px 9px;
  background: #fff;
  border: 1px solid rgba(31, 36, 31, 0.1);
  border-radius: 7px;
}

.deal-date-summary {
  margin: 0;
  color: #17603e;
  font-size: 0.82rem;
  font-weight: 700;
}

.deal-control-list {
  display: grid;
  gap: 8px;
}

.deal-control-item {
  display: grid;
  grid-template-columns: 28px 78px minmax(0, 1fr);
  gap: 11px;
  align-items: start;
  padding: 11px;
  background: #fff;
  border: 1px solid rgba(31, 36, 31, 0.12);
  border-radius: 9px;
}

.deal-control-item figure {
  display: grid;
  place-items: center;
  width: 78px;
  aspect-ratio: 1;
  margin: 0;
  overflow: hidden;
  color: #727872;
  background: #f2f3f0;
  border-radius: 7px;
  font-size: 0.68rem;
}

.deal-control-item figure img { width: 100%; height: 100%; object-fit: cover; }
.deal-control-main { display: grid; gap: 7px; min-width: 0; }
.deal-control-main p { margin: 0; color: #6a706a; font-size: 0.78rem; }
.deal-inline-toggles label { font-size: 0.76rem; font-weight: 700; }
.deal-select { padding-top: 6px; }

.deal-state-pill.status-active,
.deal-state-pill.status-ending_soon { color: #fff; background: #17603e; }
.deal-state-pill.status-scheduled { color: #174f70; background: #dceef8; }
.deal-state-pill.status-draft,
.deal-state-pill.status-needs_review { color: #684910; background: #fff0cf; }
.deal-state-pill.status-expired,
.deal-state-pill.status-disabled,
.deal-state-pill.status-archived { color: #626862; background: #e8eae7; }

.homepage-order-panel {
  margin: 18px 0;
  padding: 14px;
  background: #f4f6f3;
  border: 1px solid rgba(23, 96, 62, 0.18);
  border-radius: 10px;
}

.homepage-order-item {
  display: grid;
  grid-template-columns: 26px 48px minmax(0, 1fr) auto;
  gap: 9px;
  align-items: center;
  padding: 8px;
  background: #fff;
  border-bottom: 1px solid rgba(31, 36, 31, 0.09);
}

.homepage-order-item[draggable="true"] {
  cursor: grab;
}

.homepage-order-item[draggable="true"]:active {
  cursor: grabbing;
}

.homepage-deal-limit {
  display: flex;
  align-items: center;
  gap: 10px;
  max-width: 300px;
  margin: 12px 0;
  font-weight: 700;
}

.homepage-deal-limit select {
  width: auto;
  min-width: 76px;
}

.admin-caution {
  margin: 8px 0 0;
  padding: 10px 12px;
  border-left: 3px solid #d97706;
  background: #fff7e8;
  color: #654313;
  font-size: 0.86rem;
}

.deal-preview-card[data-cost-warning]::after {
  content: attr(data-cost-warning);
  display: block;
  margin-top: 10px;
  padding: 9px 11px;
  border-radius: 8px;
  background: #fff1d6;
  color: #7a3f00;
  font-size: 0.82rem;
  font-weight: 700;
}

.homepage-order-item img,
.homepage-order-item .deal-image-missing { width: 48px; height: 48px; object-fit: cover; border-radius: 6px; }
.homepage-order-item > div { display: flex; gap: 5px; }

@media (max-width: 1050px) {
  .deal-summary-grid { grid-template-columns: repeat(4, minmax(110px, 1fr)); }
  .deals-control-center .deals-manager-layout { grid-template-columns: 1fr; }
  .deal-editor-form { position: static; max-height: none; }
}

@media (max-width: 700px) {
  .deal-summary-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .deal-manager-toolbar { align-items: stretch; flex-direction: column; }
  .deal-manager-search { width: 100%; }
  .deal-display-locations { grid-template-columns: 1fr; }
  .deal-control-item { grid-template-columns: 24px 58px minmax(0, 1fr); }
  .deal-control-item figure { width: 58px; }
  .deal-control-main .admin-item-row { align-items: flex-start; flex-direction: column; }
  .deal-editor-form { padding: 12px; }
  .deal-editor-actions {
    position: sticky;
    z-index: 4;
    bottom: 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 6px;
    padding: 9px 0 max(9px, env(safe-area-inset-bottom));
    background: rgba(255, 255, 255, 0.96);
  }
  .deal-editor-actions .btn { min-width: 0; padding-inline: 7px; }
  .homepage-order-item { grid-template-columns: 22px 42px minmax(0, 1fr); }
  .homepage-order-item > div { grid-column: 2 / -1; }
}

.department-site-asset .site-asset-preview { aspect-ratio: 3 / 2; }

.site-asset-crop-guidance { margin: 8px 0 0; }

.promotion-date-summary {
  margin: 0;
  color: #1f6b3a;
  font-weight: 750;
}

.promotion-theme-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 8px;
}

.promotion-theme-grid button {
  display: grid;
  gap: 7px;
  min-height: 70px;
  padding: 8px;
  color: #4b4d46;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid transparent;
  border-radius: 9px;
  font-size: 11px;
  font-weight: 750;
  cursor: pointer;
}

.promotion-theme-grid button.active { border-color: #0b5138; box-shadow: 0 0 0 2px rgba(11, 81, 56, 0.12); }
.promotion-theme-grid i { display: block; height: 26px; border-radius: 5px; background: #0b5138; }
.promotion-theme-grid button:nth-child(2) i { background: #f7f2e8; border: 1px solid #ddd4c6; }
.promotion-theme-grid button:nth-child(3) i { background: #ee9c22; }
.promotion-theme-grid button:nth-child(4) i { background: #80af76; }
.promotion-theme-grid button:nth-child(5) i { background: #f4b334; }
.promotion-theme-grid button:nth-child(6) i { background: #242622; }

.promotion-advanced-options {
  background: rgba(255, 255, 255, 0.6);
  border-radius: 11px;
}

.promotion-advanced-options summary {
  padding: 14px 16px;
  color: #173f2a;
  font-weight: 800;
  cursor: pointer;
}

.promotion-advanced-options summary span {
  margin-left: 7px;
  color: #6f6a5f;
  font-size: 12px;
  font-weight: 500;
}

.promotion-advanced-content {
  display: grid;
  gap: 13px;
  padding: 0 16px 16px;
}

.field-error {
  min-height: 0;
  color: #a33128 !important;
  font-weight: 700;
}

.field-invalid {
  border-color: #b93a2f !important;
  box-shadow: 0 0 0 3px rgba(185, 58, 47, 0.12) !important;
}

.promotion-error-summary {
  padding: 12px 14px;
  color: #76271f;
  background: #fff1ee;
  border-left: 4px solid #b93a2f;
  border-radius: 8px;
}

.promotion-error-summary ul { margin: 6px 0 0; padding-left: 20px; }

.promotion-preview-size-toggle { margin-bottom: 10px; }
.promotion-preview-stage { width: 100%; margin-inline: auto; transition: width 180ms ease; }
.promotion-preview-stage[data-preview-size="tablet"] { width: min(100%, 760px); }
.promotion-preview-stage[data-preview-size="mobile"] { width: min(100%, 390px); }

.promotion-publish-dialog {
  width: min(calc(100% - 32px), 560px);
  padding: 24px;
  color: #252923;
  background: #fffaf1;
  border: 0;
  border-radius: 14px;
  box-shadow: 0 30px 90px rgba(20, 35, 25, 0.28);
}

.promotion-publish-dialog::backdrop { background: rgba(14, 24, 18, 0.58); backdrop-filter: blur(4px); }
.promotion-publish-dialog .dialog-close { float: right; background: transparent; border: 0; color: #5f625a; cursor: pointer; }
.promotion-publish-dialog dl { display: grid; gap: 8px; margin: 18px 0; }
.promotion-publish-dialog dl > div { display: grid; grid-template-columns: 125px 1fr; gap: 12px; padding-bottom: 8px; border-bottom: 1px solid rgba(31, 36, 31, 0.1); }
.promotion-publish-dialog dt { color: #6f6a5f; }
.promotion-publish-dialog dd { margin: 0; font-weight: 750; }

.admin-safety-note {
  display: grid;
  gap: 0.25rem;
  margin: 0 0 1rem;
  padding: 0.85rem 1rem;
  color: #513a12;
  background: #fff2d8;
  border-left: 4px solid #e99618;
  border-radius: 8px;
}

.promotion-preview-workspace {
  margin-top: 0.4rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.55);
  border-radius: 12px;
}

.promotion-preview-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.65fr) minmax(210px, 0.65fr);
  gap: 1rem;
  margin-top: 0.8rem;
}

.promotion-preview-grid > div {
  display: grid;
  gap: 0.45rem;
  min-width: 0;
}

.promotion-preview {
  position: relative;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  min-height: 230px;
  color: var(--preview-color, #242622);
  background: var(--preview-background, #f7f2e8);
  border: 1px solid rgba(31, 36, 31, 0.12);
  border-radius: 12px;
  overflow: hidden;
}

.promotion-preview[data-layout="split"],
.promotion-preview[data-layout="product_feature"] {
  grid-template-columns: 0.9fr 1.1fr;
}

.promotion-preview[data-layout="split"] img,
.promotion-preview[data-layout="product_feature"] img {
  width: 100%;
  height: 100%;
}

.promotion-preview-media {
  position: relative;
  grid-column: 2;
  grid-row: 1;
  min-width: 0;
  min-height: 230px;
  overflow: hidden;
}

.promotion-preview[data-layout="split"] .promotion-preview-copy,
.promotion-preview[data-layout="product_feature"] .promotion-preview-copy {
  grid-column: 1;
  grid-row: 1;
}

.promotion-preview[data-layout="product_feature"] img { object-fit: contain; padding: 12px; }
.promotion-preview[data-layout="image_led"] { display: block; }
.promotion-preview[data-layout="image_led"] .promotion-preview-media { position: absolute; inset: 0; min-height: 100%; }
.promotion-preview[data-layout="image_led"] .promotion-preview-copy { position: relative; z-index: 1; width: min(58%, 360px); min-height: 230px; background: color-mix(in srgb, var(--preview-background) 92%, transparent); }

.promotion-preview.mobile {
  grid-template-columns: 1fr;
  min-height: 360px;
}

.promotion-preview-media img {
  width: 100%;
  height: 100%;
  min-height: 180px;
  object-fit: cover;
  object-position: var(--preview-image-position, center);
  transform: scale(var(--preview-image-zoom, 1));
}

.promotion-preview[data-image-fit="contain"] img,
.promotion-preview[data-image-type="full_flyer"] img,
.promotion-preview[data-image-type="product_cutout"] img {
  object-fit: contain;
  transform: none;
}

.promotion-preview.mobile .promotion-preview-media {
  grid-column: 1;
  grid-row: 1;
  min-height: 150px;
  height: 150px;
}

.promotion-preview.mobile img {
  height: 150px;
}

.promotion-pan-settings {
  margin: 1rem 0;
  padding: 1rem;
  border: 1px solid rgba(31, 36, 31, 0.12);
  border-radius: 10px;
}

.promotion-pan-settings legend {
  padding-inline: 0.35rem;
  color: #0b5138;
  font-weight: 800;
}

.promotion-preview-copy {
  display: flex;
  flex-direction: column;
  align-items: var(--preview-align, flex-start);
  justify-content: center;
  gap: 0.45rem;
  padding: 1rem;
  text-align: var(--preview-text-align, left);
}

.promotion-preview-copy strong {
  font-size: clamp(1.05rem, 2vw, 1.6rem);
  line-height: 1.08;
}

.promotion-preview-copy p {
  margin: 0;
  font-size: 0.78rem;
  line-height: 1.4;
}

.promotion-preview-badge,
.promotion-preview-button {
  display: inline-flex;
  align-self: var(--preview-align, flex-start);
  width: fit-content;
  padding: 0.35rem 0.55rem;
  color: #fff;
  background: #0b5138;
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 800;
}

.promotion-preview[data-placement="announcement"] {
  display: block;
  min-height: 80px;
}

.promotion-preview[data-placement="announcement"] .promotion-preview-copy {
  min-height: 80px;
  padding: 0.75rem 1rem;
}

.promotion-preview-warnings {
  margin: 0.8rem 0 0;
  padding-left: 1.25rem;
  color: #8d3e28;
  line-height: 1.5;
}

.promotion-admin-grid {
  grid-template-columns: repeat(4, minmax(160px, 1fr));
}

@media (max-width: 1050px) {
  .promotion-admin-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .promotion-preview-grid {
    grid-template-columns: 1fr;
  }

  .promotion-preset-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .promotion-theme-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (max-width: 620px) {
  .promotion-admin-grid {
    grid-template-columns: 1fr;
  }

  .homepage-promotion-row { grid-template-columns: 72px minmax(0, 1fr); }
  .homepage-promotion-thumb { width: 72px; height: 60px; }
  .homepage-promotion-actions { grid-column: 1 / -1; justify-content: flex-start; max-width: none; }
  .promotion-preset-grid,
  .promotion-action-grid,
  .promotion-schedule-fields { grid-template-columns: 1fr; }
  .promotion-theme-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .promotion-builder-step { padding: 12px; }
  .promotion-crop-controls { grid-template-columns: 1fr; }
  .promotion-crop-controls .admin-actions { grid-column: 1; grid-row: auto; }
  .promotion-sequence-preview { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .promotion-advanced-options summary span { display: block; margin: 4px 0 0; }
  .promotion-preview[data-layout="split"],
  .promotion-preview[data-layout="product_feature"] { grid-template-columns: 1fr; }
  .promotion-preview[data-layout="split"] img,
  .promotion-preview[data-layout="product_feature"] img { grid-column: 1; grid-row: 1; height: 150px; }
  .promotion-preview[data-layout="split"] .promotion-preview-media,
  .promotion-preview[data-layout="product_feature"] .promotion-preview-media { grid-column: 1; grid-row: 1; min-height: 150px; height: 150px; }
  .promotion-preview[data-layout="split"] .promotion-preview-copy,
  .promotion-preview[data-layout="product_feature"] .promotion-preview-copy { grid-column: 1; grid-row: 2; }
}

.cafe-cart.ordering-paused .cafe-cart-heading {
  margin-bottom: 8px;
}

@media (max-width: 768px) {
  .product-lookup-prompt {
    border-radius: 24px;
    padding: 12px;
  }

  .lookup-chip-row {
    gap: 7px;
  }

  .lookup-chip-row a {
    min-height: 32px;
    font-size: 12px;
  }

  .account-quick-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .account-quick-actions .btn {
    justify-content: center;
    min-height: 40px;
    padding: 9px 10px;
    font-size: 13px;
  }
}

/* Homepage spacing and alignment polish */
body:not(.account-page):not(.cafe-body):not(.admin-body):not(.kitchen-body) .brand-logo {
  width: 62px;
  height: 62px;
  border-radius: 17px;
}

body:not(.account-page):not(.cafe-body):not(.admin-body):not(.kitchen-body) .header-main {
  padding-top: 1px;
  padding-bottom: 1px;
}

body:not(.account-page):not(.cafe-body):not(.admin-body):not(.kitchen-body) .promo-strip {
  width: min(100% - 48px, 1040px);
  margin: 5px auto -16px;
  padding: 6px 14px;
  border-radius: 999px;
  background:
    linear-gradient(145deg, rgba(255, 253, 248, 0.66), rgba(255, 248, 236, 0.5));
  box-shadow:
    0 10px 26px rgba(75, 55, 26, 0.07),
    inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

body:not(.account-page):not(.cafe-body):not(.admin-body):not(.kitchen-body) .hero {
  min-height: clamp(600px, calc(100vh - 92px), 710px);
  align-items: start;
}

body:not(.account-page):not(.cafe-body):not(.admin-body):not(.kitchen-body) .hero-content {
  width: min(1360px, 100%);
  gap: clamp(14px, 1.8vw, 28px);
  padding-top: clamp(16px, 2.3vw, 30px);
  padding-bottom: clamp(18px, 2.4vw, 34px);
}

body:not(.account-page):not(.cafe-body):not(.admin-body):not(.kitchen-body) .hero-copy-panel,
body:not(.account-page):not(.cafe-body):not(.admin-body):not(.kitchen-body) .product-lookup-prompt,
body:not(.account-page):not(.cafe-body):not(.admin-body):not(.kitchen-body) .hero-shop-panel {
  border-color: rgba(255, 252, 244, 0.66);
  border-radius: 28px;
  box-shadow:
    0 22px 58px rgba(75, 55, 26, 0.105),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

body:not(.account-page):not(.cafe-body):not(.admin-body):not(.kitchen-body) .hero-copy-panel {
  width: min(100%, 700px);
  padding: clamp(17px, 2vw, 24px);
}

body:not(.account-page):not(.cafe-body):not(.admin-body):not(.kitchen-body) .hero h1 {
  max-width: 620px;
  margin-bottom: 12px;
  font-size: clamp(30px, 3.15vw, 44px);
}

body:not(.account-page):not(.cafe-body):not(.admin-body):not(.kitchen-body) .hero-subtitle {
  font-size: clamp(15px, 1.15vw, 17px);
}

body:not(.account-page):not(.cafe-body):not(.admin-body):not(.kitchen-body) .hero-flavor-row {
  margin: -2px 0 10px;
}

body:not(.account-page):not(.cafe-body):not(.admin-body):not(.kitchen-body) .hero-mobile-actions .btn {
  min-height: 40px;
  padding: 9px 16px;
}

body:not(.account-page):not(.cafe-body):not(.admin-body):not(.kitchen-body) .product-lookup-prompt,
body:not(.account-page):not(.cafe-body):not(.admin-body):not(.kitchen-body) .hero-shop-panel {
  width: min(100%, 1040px);
}

body:not(.account-page):not(.cafe-body):not(.admin-body):not(.kitchen-body) .product-lookup-prompt {
  gap: 10px;
  padding: 13px 15px;
  background:
    linear-gradient(145deg, rgba(255, 253, 248, 0.66), rgba(255, 248, 236, 0.5)),
    radial-gradient(circle at 94% 14%, rgba(31, 107, 58, 0.07), transparent 16rem);
}

body:not(.account-page):not(.cafe-body):not(.admin-body):not(.kitchen-body) .product-lookup-prompt p {
  max-width: 760px;
  margin-top: 2px;
  color: #394036;
  font-size: 14px;
  line-height: 1.35;
}

body:not(.account-page):not(.cafe-body):not(.admin-body):not(.kitchen-body) .lookup-chip-row {
  gap: 7px;
}

body:not(.account-page):not(.cafe-body):not(.admin-body):not(.kitchen-body) .lookup-chip-row a {
  min-height: 31px;
  padding: 6px 10px;
  font-size: 12px;
}

body:not(.account-page):not(.cafe-body):not(.admin-body):not(.kitchen-body) .hero-shop-panel {
  gap: 11px;
  padding: 13px;
}

body:not(.account-page):not(.cafe-body):not(.admin-body):not(.kitchen-body) .hero-quick-grid {
  gap: 8px;
}

body:not(.account-page):not(.cafe-body):not(.admin-body):not(.kitchen-body) .hero-quick-link {
  min-height: 72px;
  padding: 12px;
  border-radius: 19px;
}

body:not(.account-page):not(.cafe-body):not(.admin-body):not(.kitchen-body) .hero-quick-link strong {
  font-size: clamp(13px, 1.05vw, 16px);
}

body:not(.account-page):not(.cafe-body):not(.admin-body):not(.kitchen-body) .support-toggle {
  min-height: 40px;
  padding: 7px 10px 7px 13px;
  gap: 7px;
  box-shadow:
    0 12px 30px rgba(47, 35, 21, 0.13),
    inset 0 1px 0 rgba(255, 255, 255, 0.84);
}

body:not(.account-page):not(.cafe-body):not(.admin-body):not(.kitchen-body) .support-toggle span {
  font-size: 13px;
}

body:not(.account-page):not(.cafe-body):not(.admin-body):not(.kitchen-body) .support-toggle strong {
  width: 27px;
  height: 27px;
  font-size: 10px;
}

body:not(.account-page):not(.cafe-body):not(.admin-body):not(.kitchen-body) .deals-band .row-heading {
  padding: 18px;
  border: 1px solid rgba(255, 252, 244, 0.72);
  border-radius: 28px;
  background:
    linear-gradient(145deg, rgba(255, 253, 248, 0.74), rgba(255, 246, 229, 0.58)),
    radial-gradient(circle at 88% 18%, rgba(244, 166, 42, 0.18), transparent 15rem);
  box-shadow:
    0 22px 58px rgba(75, 55, 26, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(18px) saturate(1.1);
}

body:not(.account-page):not(.cafe-body):not(.admin-body):not(.kitchen-body) .section-subcopy {
  max-width: 640px;
  margin-top: 7px;
  color: #485142;
  font-size: 15px;
  line-height: 1.45;
}

body:not(.account-page):not(.cafe-body):not(.admin-body):not(.kitchen-body) .weekly-deal-card {
  border-color: rgba(244, 166, 42, 0.34);
  background:
    linear-gradient(145deg, rgba(255, 253, 248, 0.84), rgba(255, 244, 221, 0.68)),
    radial-gradient(circle at 86% 12%, rgba(244, 166, 42, 0.16), transparent 13rem);
}

body:not(.account-page):not(.cafe-body):not(.admin-body):not(.kitchen-body) .weekly-deal-card .product-label {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 4px;
  padding: 5px 9px;
  border-radius: 999px;
  background: rgba(244, 166, 42, 0.16);
  color: #9b5600;
  font-size: 12px;
  letter-spacing: 0;
}

body:not(.account-page):not(.cafe-body):not(.admin-body):not(.kitchen-body) .weekly-deal-card .product-price {
  color: var(--green);
  font-size: 19px;
}

body:not(.account-page):not(.cafe-body):not(.admin-body):not(.kitchen-body) .weekly-deal-card .regular-price {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  text-decoration: line-through;
}

@media (min-width: 861px) {
  body:not(.account-page):not(.cafe-body):not(.admin-body):not(.kitchen-body) .hero {
    min-height: min(710px, calc(100vh - 74px));
    padding-top: 0;
    padding-bottom: 0;
  }

  body:not(.account-page):not(.cafe-body):not(.admin-body):not(.kitchen-body) .hero-content {
    align-content: start;
    justify-items: start;
    grid-template-columns: minmax(0, 1fr) clamp(330px, 28vw, 430px);
    grid-template-rows: auto auto 1fr;
  }

  body:not(.account-page):not(.cafe-body):not(.admin-body):not(.kitchen-body) .hero-copy-panel,
  body:not(.account-page):not(.cafe-body):not(.admin-body):not(.kitchen-body) .product-lookup-prompt,
  body:not(.account-page):not(.cafe-body):not(.admin-body):not(.kitchen-body) .hero-shop-panel {
    grid-column: 1;
  }

  body:not(.account-page):not(.cafe-body):not(.admin-body):not(.kitchen-body) .homepage-flyer-card {
    grid-column: 2;
    grid-row: 1 / span 3;
    width: 100%;
    justify-self: end;
  }
}

@media (max-width: 860px) {
  body:not(.account-page):not(.cafe-body):not(.admin-body):not(.kitchen-body) .brand-logo {
    width: 46px;
    height: 46px;
  }

  body:not(.account-page):not(.cafe-body):not(.admin-body):not(.kitchen-body) .promo-strip {
    width: 100%;
    margin: 0;
    padding: 5px 10px;
  }

  body:not(.account-page):not(.cafe-body):not(.admin-body):not(.kitchen-body) .snap-wrapper {
    padding-top: calc(118px + env(safe-area-inset-top, 0px));
  }

  body:not(.account-page):not(.cafe-body):not(.admin-body):not(.kitchen-body) .hero-content {
    width: var(--mobile-content);
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 14px 0 12px;
  }

  body:not(.account-page):not(.cafe-body):not(.admin-body):not(.kitchen-body) .hero-copy-panel,
  body:not(.account-page):not(.cafe-body):not(.admin-body):not(.kitchen-body) .product-lookup-prompt,
  body:not(.account-page):not(.cafe-body):not(.admin-body):not(.kitchen-body) .hero-shop-panel {
    width: 100%;
    border-radius: 24px;
  }

  body:not(.account-page):not(.cafe-body):not(.admin-body):not(.kitchen-body) .hero-copy-panel {
    padding: 16px;
  }

  body:not(.account-page):not(.cafe-body):not(.admin-body):not(.kitchen-body) .hero h1 {
    font-size: clamp(24px, 7vw, 32px);
    line-height: 1.03;
  }

  body:not(.account-page):not(.cafe-body):not(.admin-body):not(.kitchen-body) .product-lookup-prompt {
    padding: 12px;
  }

  body:not(.account-page):not(.cafe-body):not(.admin-body):not(.kitchen-body) .hero-shop-panel {
    padding: 12px;
  }

  body:not(.account-page):not(.cafe-body):not(.admin-body):not(.kitchen-body) .homepage-flyer-card {
    width: 100%;
    border-radius: 24px;
  }
}
