@font-face {
  font-family: 'Neulis Cursive';
  src: url('/assets/brand/fonts/neulis-cursive-medium.otf') format('opentype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

:root {
  --wee-lime: #E3E87C;
  --wee-lime-dim: #cdd562;
  --wee-orange: #F45100;
  --wee-orange-dim: #d94500;
  --wee-primary: var(--wee-lime);
  --wee-primary-dim: var(--wee-lime-dim);
  --wee-cream: #FFFCE9;
  --wee-cream-dark: #f5f0dc;
  --wee-ink: #2a1f12;
  --wee-ink-soft: #4a3828;
  --wee-white: #ffffff;
  --wee-muted: #5c5238;
  --wee-border: rgba(42, 31, 18, 0.12);
  --wee-radius: 14px;
  --wee-shadow: 0 16px 40px rgba(42, 31, 18, 0.08);
  --font-display: 'Neulis Cursive', Georgia, cursive;
  --font-body: 'DM Sans', system-ui, sans-serif;
  /* legacy aliases */
  --wee-neon: var(--wee-lime);
  --wee-neon-dim: var(--wee-lime-dim);
  --wee-anthracite: var(--wee-ink);
  --wee-anthracite-soft: var(--wee-ink-soft);
  --wee-anthracite-deep: var(--wee-lime);
}

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

html {
  scroll-behavior: smooth;
}

body.wee-body {
  margin: 0;
  font-family: var(--font-body);
  background: var(--wee-cream);
  color: var(--wee-ink);
  line-height: 1.6;
}

h1, h2, h3, .wee-heading, .wee-page-title, .wee-section-title, .wee-hero-title {
  font-family: var(--font-display);
  font-weight: 500;
  letter-spacing: -0.01em;
}

.wee-nav-spacer {
  height: 80px;
}

@media (min-width: 992px) {
  .wee-nav-spacer {
    height: 92px;
  }
}

#auth-alert {
  scroll-margin-top: 96px;
}

/* Navbar */
.wee-navbar.wee-navbar-scrolled {
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
}

.wee-navbar {
  background: rgba(255, 252, 233, 0.97) !important;
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--wee-border);
  padding-top: 0.65rem;
  padding-bottom: 0.65rem;
}

.wee-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: var(--wee-ink) !important;
  padding: 0;
}

.wee-brand-symbol {
  display: block;
  flex: 0 0 auto;
  height: 48px;
  width: 48px;
  object-fit: contain;
  border-radius: 10px;
}

.wee-brand-line {
  display: block;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  line-height: 1.25;
  letter-spacing: -0.01em;
}

.wee-brand-name {
  color: var(--wee-neon);
}

.wee-brand-sep,
.wee-brand-suffix {
  color: var(--wee-white);
  font-weight: 500;
}

.wee-brand-suffix {
  text-transform: lowercase;
}

.wee-home-title {
  margin: 0 0 0.35rem;
  font-size: clamp(1.75rem, 4vw, 2.35rem);
  line-height: 1.15;
  color: var(--wee-neon);
}

@media (max-width: 575.98px) {
  .wee-brand-line {
    font-size: 0.82rem;
    max-width: calc(100vw - 9.5rem);
  }

  .wee-brand-symbol {
    height: 42px;
    width: 42px;
  }
}

.wee-navbar-inner {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
}

.wee-navbar-mobile-actions {
  position: absolute;
  top: 50%;
  right: calc(var(--bs-gutter-x, 0.75rem) * 0.5);
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  gap: 0.35rem;
  z-index: 2;
}

.wee-nav-toggler {
  padding: 0.35rem 0.55rem;
}

.wee-mobile-cart-btn {
  min-width: 3.25rem;
  padding-left: 0.75rem;
  padding-right: 0.75rem;
}

.wee-mobile-cart-btn .wee-cart-badge {
  top: -7px;
  right: -8px;
}

.wee-nav-offcanvas {
  width: min(88vw, 340px);
  background: var(--wee-cream);
  color: var(--wee-ink);
  border-left: 1px solid var(--wee-border);
}

.wee-nav-offcanvas .offcanvas-header {
  border-bottom: 1px solid var(--wee-border);
  padding: 1.25rem 1.35rem;
}

.wee-nav-offcanvas .offcanvas-body {
  padding: 1rem 1.35rem 2rem;
}

.wee-nav-offcanvas-links {
  gap: 0.35rem;
}

.wee-nav-offcanvas-links .nav-link {
  color: var(--wee-ink) !important;
  font-size: 1.05rem;
  font-weight: 500;
  padding: 0.85rem 1rem !important;
  border-radius: var(--wee-radius);
  border: 1px solid transparent;
}

.wee-nav-offcanvas-links .nav-link:hover,
.wee-nav-offcanvas-links .nav-link.active {
  color: var(--wee-ink) !important;
  background: var(--wee-primary);
  border-color: rgba(42, 31, 18, 0.08);
}

.wee-nav-offcanvas-links .wee-nav-logout {
  width: 100%;
  text-align: left;
  padding: 0.85rem 1rem !important;
}

@media (max-width: 991.98px) {
  .wee-brand {
    max-width: calc(100% - 7.5rem);
    padding-right: 0.25rem;
  }
}

.wee-navbar .nav-link {
  color: var(--wee-muted) !important;
  font-weight: 500;
  padding: 0.45rem 0.85rem !important;
  border-radius: 999px;
  transition: color 0.2s, background 0.2s;
}

.wee-navbar .nav-link:hover,
.wee-navbar .nav-link.active {
  color: var(--wee-ink) !important;
  background: var(--wee-primary);
}

.btn-wee-accent {
  background: var(--wee-primary);
  color: var(--wee-ink);
  border: none;
  font-weight: 600;
  border-radius: 999px;
  padding: 0.55rem 1.25rem;
  transition: transform 0.15s, box-shadow 0.15s, background 0.15s;
}

.btn-wee-accent:hover {
  background: var(--wee-primary-dim);
  color: var(--wee-ink);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(42, 31, 18, 0.12);
}

.btn-outline-wee {
  border: 1px solid var(--wee-ink);
  color: var(--wee-ink);
  border-radius: 999px;
  font-weight: 600;
  padding: 0.55rem 1.25rem;
  background: transparent;
}

.btn-outline-wee:hover {
  background: var(--wee-primary);
  color: var(--wee-ink);
  border-color: var(--wee-primary-dim);
}

.wee-cart-badge {
  position: absolute;
  top: -6px;
  right: -6px;
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  border-radius: 999px;
  background: var(--wee-white);
  color: var(--wee-anthracite-deep);
  font-size: 0.7rem;
  font-weight: 700;
  line-height: 18px;
  text-align: center;
}

/* Hero */
.wee-hero {
  margin-top: -80px;
  padding-top: 80px;
}

@media (min-width: 992px) {
  .wee-hero {
    margin-top: -92px;
    padding-top: 92px;
  }
}

.wee-hero-swiper,
.wee-hero-swiper .swiper-slide {
  height: min(88vh, 720px);
}

.wee-hero-slide {
  height: 100%;
  position: relative;
  overflow: hidden;
  background: var(--wee-anthracite-deep);
}

.wee-hero-slide-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.wee-hero-slide::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(42, 31, 18, 0.52);
}

.wee-hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  height: 100%;
  padding: 3rem 0 4rem;
  max-width: 640px;
}

.wee-hero-kicker,
.wee-kicker {
  color: var(--wee-neon);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.75rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.wee-hero-title {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  line-height: 1.05;
  margin-bottom: 1rem;
}

.wee-hero-sub {
  font-size: 1.15rem;
  color: var(--wee-muted);
  margin-bottom: 1.75rem;
  max-width: 480px;
}

.wee-hero-swiper {
  position: relative;
}

.wee-hero-arrow {
  position: absolute;
  top: 50%;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin: 0;
  padding: 0;
  border: 1px solid rgba(184, 255, 60, 0.35);
  border-radius: 999px;
  background: rgba(30, 38, 48, 0.72);
  color: var(--wee-neon);
  cursor: pointer;
  transform: translateY(-50%);
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
}

.wee-hero-arrow:hover {
  background: rgba(30, 38, 48, 0.92);
  border-color: var(--wee-neon);
}

.wee-hero-arrow:focus-visible {
  outline: 2px solid var(--wee-neon);
  outline-offset: 2px;
}

.wee-hero-arrow-prev {
  left: 1rem;
}

.wee-hero-arrow-next {
  right: 1rem;
}

.wee-hero-arrow.swiper-button-disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

.wee-hero-swiper .swiper-pagination-bullet {
  background: rgba(255, 252, 233, 0.45);
  opacity: 1;
}

.wee-hero-swiper .swiper-pagination-bullet-active,
.wee-products-swiper .swiper-pagination-bullet-active {
  background: var(--wee-orange);
  opacity: 1;
}

/* Sections */
.wee-section {
  padding: 4.5rem 0;
  background: var(--wee-cream);
}

.wee-section-alt {
  background: var(--wee-white);
}

.wee-page-hero {
  padding: 7rem 0 3rem;
  background: var(--wee-cream);
}

.wee-page-hero-sm {
  padding: 6.5rem 0 2.5rem;
}

.wee-page-title {
  font-size: clamp(2rem, 4vw, 2.8rem);
  margin-bottom: 0.75rem;
}

.wee-section-title {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin-bottom: 0.75rem;
}

.wee-lead {
  font-size: 1.1rem;
  color: var(--wee-muted);
  max-width: 620px;
}

.wee-body-text {
  color: var(--wee-ink-soft);
}

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

.wee-link-neon {
  color: var(--wee-neon);
  text-decoration: none;
  font-weight: 600;
}

.wee-link-neon:hover {
  color: var(--wee-ink);
}

/* Cards */
.wee-card-highlight {
  background: var(--wee-white);
  border: 1px solid var(--wee-border);
  border-radius: var(--wee-radius);
  padding: 1.5rem;
  box-shadow: var(--wee-shadow), inset 3px 0 0 var(--wee-orange);
}

.wee-card-icon {
  display: block;
  font-family: var(--font-display);
  font-size: 0.85rem;
  color: var(--wee-ink-soft);
  margin-bottom: 0.75rem;
}

.wee-product-card {
  background: var(--wee-white);
  border: 1px solid var(--wee-border);
  border-radius: var(--wee-radius);
  overflow: hidden;
  transition: transform 0.2s, border-color 0.2s;
}

.wee-product-card:hover {
  transform: translateY(-4px);
  border-color: rgba(184, 255, 60, 0.25);
}

.wee-product-img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
}

.wee-product-img--placeholder {
  object-fit: contain !important;
  padding: 1.25rem;
  background: var(--wee-cream);
  box-sizing: border-box;
}

.wee-product-card-media:has(.wee-product-img--placeholder) {
  background: var(--wee-cream);
}

.wee-product-card-media {
  position: relative;
  background: var(--wee-cream);
}

.wee-kcal-badge {
  position: absolute;
  bottom: 0.45rem;
  left: 0.45rem;
  z-index: 1;
  font-size: 0.6875rem;
  padding: 0.22rem 0.5rem;
  border-radius: 6px;
  background: rgba(0, 0, 0, 0.55);
  color: var(--wee-neon);
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: 0.03em;
  line-height: 1.2;
  pointer-events: none;
}

.wee-product-body {
  padding: 1rem 1.1rem 1.2rem;
}

.wee-product-name {
  font-size: 1.05rem;
  margin-bottom: 0.35rem;
}

.wee-product-name a {
  color: var(--wee-ink);
  text-decoration: none;
}

.wee-product-name a:hover {
  color: var(--wee-ink-soft);
}

.wee-product-desc {
  font-size: 0.9rem;
  color: var(--wee-muted);
  margin-bottom: 0.5rem;
}

.wee-product-price {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--wee-neon);
  margin-bottom: 0.75rem;
}

.wee-product-price-lg {
  font-family: var(--font-display);
  font-size: 1.75rem;
  color: var(--wee-neon);
  margin: 1rem 0 1.25rem;
}

.wee-subsection-title {
  font-family: var(--font-display);
  font-size: 0.92rem;
  color: var(--wee-neon);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.wee-product-qty-note {
  font-size: 0.58em;
  font-weight: 400;
  color: var(--wee-muted);
  letter-spacing: 0.03em;
  vertical-align: super;
  margin-left: 0.2em;
}

.wee-long-desc {
  white-space: pre-line;
}

.wee-kcal-note {
  color: var(--wee-neon);
  font-family: var(--font-display);
}

.wee-neon-text {
  color: var(--wee-neon);
}

.wee-nutrition-block {
  border: 1px solid var(--wee-border);
  border-radius: var(--wee-radius);
  padding: 1rem 1.15rem;
  background: rgba(0, 0, 0, 0.2);
}

.wee-nutrition-list li + li {
  margin-top: 0.35rem;
}

.wee-variant-radio-wrap {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.wee-variant-radio-wrap .wee-variant-radio-hidden {
  flex-shrink: 0;
  margin-top: 0;
  margin-inline-start: 0.125rem;
}

/* Radiouri variantă — neon (modal + pagină produs) */
.wee-variant-modal .wee-variant-choice-radio.form-check-input[type='radio'],
.wee-product-detail .wee-variant-radio-wrap .wee-variant-radio-hidden.form-check-input[type='radio'] {
  flex-shrink: 0;
  width: 1.125rem;
  height: 1.125rem;
  margin-top: 0 !important;
  cursor: pointer;
  border-width: 2px;
  accent-color: var(--wee-neon);
  --bs-form-check-bg: rgba(0, 0, 0, 0.35);
  --bs-form-check-border-color: rgba(184, 255, 60, 0.58);
  --bs-form-check-checked-bg: var(--wee-neon);
  --bs-form-check-checked-border-color: var(--wee-neon);
  --bs-form-check-checked-color: var(--wee-anthracite-deep);
}

.wee-variant-modal .wee-variant-choice-radio.form-check-input[type='radio']:focus,
.wee-product-detail .wee-variant-radio-wrap .wee-variant-radio-hidden.form-check-input[type='radio']:focus {
  border-color: var(--wee-neon);
  box-shadow: 0 0 0 0.2rem rgba(184, 255, 60, 0.22);
  outline: 0;
}

.wee-variant-modal .wee-variant-choice-radio.form-check-input[type='radio']:checked,
.wee-product-detail .wee-variant-radio-wrap .wee-variant-radio-hidden.form-check-input[type='radio']:checked {
  background-color: var(--wee-neon);
  border-color: var(--wee-neon);
}

.wee-variant-label {
  flex: 1 1 auto;
  min-width: 0;
  margin: 0;
  cursor: pointer;
  padding: 0.72rem 0.95rem;
  border: 1px solid var(--wee-border);
  border-radius: var(--wee-radius);
  background: rgba(0, 0, 0, 0.15);
}

.wee-variant-radio-wrap:has(.wee-variant-radio-hidden:checked) .wee-variant-label {
  border-color: var(--wee-neon);
  box-shadow: 0 0 0 1px rgba(184, 255, 60, 0.22);
}

.wee-variant-modal-content {
  background: var(--wee-cream);
  border: 1px solid var(--wee-border);
  color: var(--wee-ink);
}

/* Topping / variant picker — taller body + reliable scroll on mobile */
.wee-product-options-modal .wee-product-options-dialog {
  width: min(520px, calc(100vw - 1.25rem));
  max-width: min(520px, calc(100vw - 1.25rem));
  max-height: calc(100vh - 1.5rem);
  max-height: calc(100dvh - 1.5rem);
  margin: 0.75rem auto;
}

.wee-product-options-modal .modal-content {
  max-height: calc(100vh - 1.5rem);
  max-height: calc(100dvh - 1.5rem);
  min-height: min(52vh, 440px);
  min-height: min(52dvh, 440px);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.wee-product-options-modal .modal-header,
.wee-product-options-modal .modal-footer {
  flex-shrink: 0;
}

.wee-product-options-modal .modal-body {
  flex: 1 1 auto;
  min-height: 0;
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
  max-height: min(72vh, 580px);
  max-height: min(72dvh, 580px);
  padding-bottom: 1.25rem;
}

.wee-product-options-modal .wee-topping-modal-list,
.wee-product-options-modal .wee-variant-modal-list {
  overflow: visible;
  max-height: none;
}

.wee-variant-modal-product {
  color: var(--wee-ink);
  font-size: 1rem;
  font-weight: 500;
}

/* Modal variante — același limbaj vizual ca pe produs (fără fundal Bootstrap list-group */
.wee-variant-modal .wee-variant-choice--modal {
  cursor: pointer;
  padding: 0.72rem 0.95rem;
  margin-bottom: 0;
  border: 1px solid var(--wee-border);
  border-radius: var(--wee-radius);
  background: var(--wee-white);
  color: var(--wee-ink);
  display: flex !important;
  align-items: center;
  transition:
    border-color 0.15s ease,
    box-shadow 0.15s ease;
}

.wee-variant-modal .wee-variant-choice--modal:hover {
  border-color: var(--wee-primary-dim);
  background: var(--wee-white);
}

.wee-variant-modal .wee-variant-choice--modal:has(.wee-variant-choice-radio:checked) {
  border-color: var(--wee-primary-dim);
  box-shadow: 0 0 0 1px rgba(205, 213, 98, 0.35);
  background: var(--wee-cream);
}

.wee-product-options-modal .wee-topping-choice,
.wee-product-detail .wee-topping-choice {
  cursor: pointer;
  padding: 0.72rem 0.95rem;
  border: 1px solid var(--wee-border);
  border-radius: var(--wee-radius);
  background: var(--wee-white);
  color: var(--wee-ink);
  transition:
    border-color 0.15s ease,
    box-shadow 0.15s ease;
}

.wee-product-options-modal .wee-topping-choice:hover,
.wee-product-detail .wee-topping-choice:hover {
  border-color: rgba(184, 255, 60, 0.45);
}

.wee-product-options-modal .wee-topping-choice:has(.wee-topping-check:checked),
.wee-product-detail .wee-topping-choice:has(.wee-topping-check:checked) {
  border-color: var(--wee-neon);
  box-shadow: 0 0 0 1px rgba(184, 255, 60, 0.22);
}

.wee-product-options-modal .wee-topping-check.form-check-input[type='checkbox'],
.wee-product-detail .wee-topping-check.form-check-input[type='checkbox'] {
  border-color: var(--wee-border);
  background-color: rgba(0, 0, 0, 0.25);
}

.wee-product-options-modal .wee-topping-check.form-check-input:checked,
.wee-product-detail .wee-topping-check.form-check-input:checked {
  background-color: var(--wee-neon);
  border-color: var(--wee-neon);
}

#cart-offcanvas-comment-wrap textarea {
  min-height: 4.5rem;
  resize: vertical;
}

.wee-cart-line-extras,
.wee-checkout-line-extras {
  line-height: 1.35;
}

.wee-variant-name {
  color: var(--wee-ink);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  line-height: 1.3;
}

.wee-variant-label .wee-variant-name,
.wee-variant-label strong:first-child {
  color: var(--wee-ink);
}
  font-family: var(--font-display);
  font-weight: 600;
}

.wee-variant-desc {
  white-space: pre-line;
}

.wee-product-nutrition-host:empty {
  display: none;
}

.wee-product-nutrition-host:not([hidden]) {
  margin-top: 1.5rem;
}

.wee-cta-band {
  background: var(--wee-anthracite-soft);
  border: 1px solid var(--wee-border);
  border-radius: calc(var(--wee-radius) + 4px);
  padding: 3rem 2rem;
}

.wee-about-visual {
  aspect-ratio: 4/3;
  border-radius: var(--wee-radius);
  background-size: cover;
  background-position: center;
}

.wee-products-swiper {
  padding-bottom: 2.5rem;
}

/* Menu */
.wee-cat-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.wee-cat-pill {
  display: inline-block;
  padding: 0.45rem 1rem;
  border-radius: 999px;
  border: 1px solid var(--wee-border);
  background: var(--wee-cream);
  color: var(--wee-ink-soft);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: background 0.2s, color 0.2s, border-color 0.2s, box-shadow 0.2s;
}

.wee-cat-pill:hover {
  border-color: var(--wee-primary-dim);
  color: var(--wee-ink);
  background: var(--wee-white);
}

.wee-cat-pill.active {
  border-color: var(--wee-primary-dim);
  background: var(--wee-primary);
  color: var(--wee-ink);
  box-shadow: 0 4px 14px rgba(42, 31, 18, 0.1);
}

.wee-cat-pill.active:hover {
  background: var(--wee-primary-dim);
  color: var(--wee-ink);
}

.wee-category-title {
  font-size: 1.4rem;
  margin-bottom: 1.25rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--wee-neon);
  display: inline-block;
}

/* Menu product grid: 2 cols on phone (<500px), up to 5 on large screens */
.wee-menu-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: stretch;
}

@media (min-width: 500px) {
  .wee-menu-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.15rem;
  }
}

@media (min-width: 768px) {
  .wee-menu-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.25rem;
  }
}

@media (min-width: 992px) {
  .wee-menu-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 1.5rem;
  }
}

/* Menu cards: show full product image without cropping */
.wee-menu-grid .wee-product-card > .wee-product-card-media {
  display: block;
  aspect-ratio: 1;
  background: var(--wee-anthracite-deep);
  overflow: hidden;
}

.wee-menu-grid .wee-product-card-media > a {
  display: block;
  width: 100%;
  height: 100%;
}

.wee-menu-grid .wee-product-img {
  width: 100%;
  height: 100%;
  aspect-ratio: unset;
  object-fit: cover;
  object-position: center;
}

.wee-menu-grid .wee-product-img--placeholder {
  object-fit: contain !important;
  padding: 1.25rem;
  background: var(--wee-cream);
}

.wee-menu-grid .wee-product-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.wee-menu-grid .wee-product-body {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  min-height: 0;
}

.wee-menu-grid .wee-product-desc {
  flex: 1 1 auto;
  margin-bottom: 0;
}

.wee-menu-grid .wee-product-price {
  margin-top: auto;
  padding-top: 0.65rem;
  margin-bottom: 0.5rem;
}

.wee-menu-grid .wee-add-btn {
  flex-shrink: 0;
  margin-top: 0;
}

@media (max-width: 499.98px) {
  .wee-menu-grid .wee-product-body {
    padding: 0.75rem 0.85rem 0.9rem;
  }

  .wee-menu-grid .wee-product-name {
    font-size: 0.95rem;
  }

  .wee-menu-grid .wee-product-desc {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    font-size: 0.8rem;
  }

  .wee-menu-grid .wee-product-price {
    font-size: 1rem;
    margin-bottom: 0.5rem;
  }

  .wee-menu-grid .btn-wee-accent.btn-sm {
    padding: 0.4rem 0.65rem;
    font-size: 0.8rem;
  }
}

.wee-breadcrumb {
  font-size: 0.9rem;
  color: var(--wee-muted);
}

.wee-breadcrumb a {
  color: var(--wee-neon);
  text-decoration: none;
}

.wee-product-detail-img {
  width: 100%;
  border-radius: var(--wee-radius);
  aspect-ratio: 1;
  object-fit: cover;
}

.wee-product-detail-placeholder {
  aspect-ratio: 1;
  border-radius: var(--wee-radius);
  background: var(--wee-anthracite-soft);
}

.wee-product-back {
  font-size: 0.92rem;
}

.wee-product-toppings-panel {
  border: 1px solid var(--wee-border);
  border-radius: var(--wee-radius);
  padding: 1rem 1rem 0.85rem;
  background: rgba(0, 0, 0, 0.2);
}

.wee-product-toppings-scroll {
  max-height: min(38vh, 280px);
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
  padding-bottom: 0.15rem;
}

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

.wee-product-detail .wee-topping-choice--grid {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.3rem;
  height: 100%;
  min-height: 5.5rem;
  padding: 0.65rem 0.7rem;
  margin: 0;
}

.wee-product-detail .wee-topping-choice-label {
  display: block;
  font-size: 0.88rem;
  line-height: 1.25;
  color: var(--wee-ink);
}

.wee-product-detail .wee-topping-choice-price,
.wee-product-detail .wee-topping-choice-unavail {
  margin-top: auto;
}

.wee-product-detail .wee-topping-choice--grid .wee-topping-check.form-check-input[type='checkbox'] {
  margin: 0;
}

.wee-product-detail {
  padding-bottom: calc(6.5rem + env(safe-area-inset-bottom, 0px));
}

.wee-product-actions-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1020;
  margin: 0;
  padding: 0.85rem calc(var(--bs-gutter-x, 0.75rem) * 0.5)
    calc(0.85rem + env(safe-area-inset-bottom, 0px));
  background: rgba(18, 22, 26, 0.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-top: 1px solid var(--wee-border);
  box-shadow: 0 -10px 28px rgba(0, 0, 0, 0.38);
}

body[data-page='produs'] .wee-footer {
  margin-bottom: calc(5.75rem + env(safe-area-inset-bottom, 0px));
}

.wee-product-actions-bar-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.65rem 0.85rem;
}

.wee-product-actions-bar .wee-product-price-lg {
  margin: 0;
  font-size: 1.35rem;
  line-height: 1.1;
  flex: 1 1 5.5rem;
}

.wee-product-actions-qty {
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.wee-product-actions-qty .wee-input-qty {
  width: 4.25rem;
  padding-top: 0.4rem;
  padding-bottom: 0.4rem;
}

.wee-product-actions-buttons {
  display: flex;
  flex: 1 1 100%;
  gap: 0.5rem;
  min-width: 0;
}

.wee-product-actions-buttons .btn-lg {
  padding-top: 0.65rem;
  padding-bottom: 0.65rem;
  font-size: 1rem;
}

@media (min-width: 768px) {
  .wee-product-toppings-scroll {
    max-height: min(42vh, 320px);
  }

  .wee-product-actions-bar {
    left: 50%;
    right: auto;
    transform: translateX(-50%);
    width: min(720px, calc(100vw - 2rem));
    border: 1px solid var(--wee-border);
    border-radius: var(--wee-radius) var(--wee-radius) 0 0;
    box-shadow: 0 -10px 28px rgba(0, 0, 0, 0.38);
  }

  .wee-product-actions-buttons {
    flex: 1 1 auto;
    justify-content: flex-end;
  }

  .wee-product-actions-buttons .btn-lg {
    flex: 0 1 auto;
    min-width: 10rem;
  }
}

.wee-input,
.wee-input-qty,
.form-select.wee-input {
  background: var(--wee-white);
  border: 1px solid var(--wee-border);
  color: var(--wee-ink);
  border-radius: 10px;
}

.wee-input:focus,
.wee-input-qty:focus,
.form-select.wee-input:focus {
  background: var(--wee-white);
  border-color: var(--wee-primary-dim);
  color: var(--wee-ink);
  box-shadow: 0 0 0 0.2rem rgba(205, 213, 98, 0.35);
}

.form-control.wee-input:disabled,
.form-control.wee-input[readonly],
.wee-input:disabled,
.wee-input[readonly] {
  background-color: var(--wee-cream-dark);
  border-color: var(--wee-border);
  color: var(--wee-ink-soft);
  opacity: 1;
  cursor: default;
  -webkit-text-fill-color: var(--wee-ink-soft);
}

.wee-form .wee-field-note {
  color: var(--wee-muted);
}

.wee-tabs .nav-link {
  color: var(--wee-muted);
  border-radius: 999px;
  margin-right: 0.35rem;
}

.wee-tabs .nav-link.active {
  background: var(--wee-neon);
  color: var(--wee-ink);
}

.wee-checkout-panel {
  background: var(--wee-white);
  border: 1px solid var(--wee-border);
  border-radius: var(--wee-radius);
  padding: 1.5rem;
  position: sticky;
  top: 96px;
}

.wee-checkout-line {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--wee-border);
}

.wee-checkout-line:last-child {
  border-bottom: none;
}

/* Coș drawer + pagina comenzii — card cu poză, cantitate și ștergere icon */
.wee-checkout-line--card {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.75rem;
}

.wee-checkout-line-inner {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem 0.75rem;
  flex: 1 1 auto;
  min-width: 0;
}

.wee-checkout-line-stack {
  flex: 1 1 auto;
  min-width: 0;
}

.wee-checkout-line-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.5rem 0.75rem;
}

.wee-checkout-line-head .wee-checkout-line-title {
  flex: 1 1 auto;
  min-width: 0;
  margin: 0;
}

.wee-checkout-line-head .wee-checkout-line-total {
  flex: 0 0 auto;
  white-space: nowrap;
  text-align: right;
}

.wee-checkout-line-total--desktop {
  display: none;
}

.wee-checkout-line--card:not(.wee-checkout-line--offcanvas-cart) .wee-checkout-stepper {
  margin-top: 0.4rem;
}

.wee-checkout-line--card:not(.wee-checkout-line--offcanvas-cart) .wee-checkout-line-total-wrap {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

@media (max-width: 575.98px) {
  .wee-checkout-line--card:not(.wee-checkout-line--offcanvas-cart) .wee-checkout-line-total-wrap .wee-checkout-line-total--desktop {
    display: none;
  }

  .wee-checkout-line--card:not(.wee-checkout-line--offcanvas-cart) .wee-checkout-line-total-wrap {
    align-self: flex-start;
  }
}

@media (min-width: 576px) {
  .wee-checkout-line--card:not(.wee-checkout-line--offcanvas-cart) .wee-checkout-line-inner {
    flex-wrap: nowrap;
    align-items: center;
    gap: 0.65rem 1rem;
  }

  .wee-checkout-line--card:not(.wee-checkout-line--offcanvas-cart) .wee-checkout-line-stack {
    display: flex;
    flex: 1 1 auto;
    align-items: center;
    gap: 0.65rem 1rem;
    min-width: 0;
  }

  .wee-checkout-line--card:not(.wee-checkout-line--offcanvas-cart) .wee-checkout-line-head {
    flex: 1 1 140px;
    min-width: 0;
  }

  .wee-checkout-line-total--mobile {
    display: none;
  }

  .wee-checkout-line-total--desktop {
    display: inline;
  }

  .wee-checkout-line--card:not(.wee-checkout-line--offcanvas-cart) .wee-checkout-stepper {
    margin-top: 0;
    flex-shrink: 0;
  }
}

.wee-checkout-line--card .wee-checkout-line-title {
  min-width: 0;
  word-break: break-word;
}

.wee-checkout-line--card .wee-checkout-stepper {
  flex-shrink: 0;
}

/* Butoane − / + mai late pe coș și finalizare */
.wee-checkout-line--card .wee-checkout-stepper .btn {
  min-width: 2.75rem;
  width: 2.75rem;
  padding-left: 0.35rem;
  padding-right: 0.35rem;
  font-size: 1.05rem;
  line-height: 1.1;
}

@media (min-width: 576px) {
  .wee-checkout-line--card .wee-checkout-stepper .btn {
    min-width: 3.1rem;
    width: 3.1rem;
    font-size: 1.15rem;
  }
}

.wee-checkout-line--card .wee-checkout-line-total-wrap {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.wee-checkout-line--card .wee-checkout-line-total {
  text-align: right;
}

/* Layout coș dreapta: foto stânga; dreapta: nume+șterge, dedesubt cantitate + preț (aliniat cu poza pe orizontală) */
.wee-checkout-line--offcanvas-cart.wee-checkout-line--card {
  flex-direction: column;
  align-items: stretch;
  gap: 0;
}

.wee-offcanvas-cart-main {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  width: 100%;
}

.wee-offcanvas-cart-body {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0.45rem;
  min-width: 0;
}

.wee-offcanvas-cart-row-price-qty {
  align-items: center;
  flex-wrap: nowrap;
}

@media (max-width: 340px) {
  .wee-offcanvas-cart-row-price-qty {
    flex-wrap: wrap;
  }

  .wee-offcanvas-cart-row-price-qty .wee-offcanvas-cart-price-wrapper {
    width: 100%;
    justify-content: flex-end;
  }
}

.wee-checkout-line--offcanvas-cart .wee-offcanvas-cart-name-row .wee-checkout-line-title {
  flex: 1 1 auto;
  min-width: 0;
  font-size: 1.08rem;
}

.wee-checkout-line--offcanvas-cart .wee-offcanvas-cart-thumb {
  flex-shrink: 0;
}

.wee-offcanvas-cart-price-wrapper {
  display: flex;
  align-items: center;
}

.wee-offcanvas-cart-price {
  font-family: var(--font-display);
  font-size: 1.18rem;
  color: var(--wee-neon);
  line-height: 1.2;
  font-weight: 600;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

/* Stânga: stepper îngust, aliniat la stânga; coloana poate crește pentru spațiu față de preț */
.wee-offcanvas-cart-qty {
  min-width: 0;
}

/* Coș dreapta: stepper îngust, − / + mici — prețul rămâne la fel (vede .wee-offcanvas-cart-price) */
.wee-checkout-line--offcanvas-cart .wee-checkout-stepper--compact {
  width: auto;
  max-width: 100%;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.wee-checkout-line--offcanvas-cart .wee-checkout-stepper--compact .btn {
  flex: 0 0 auto;
  box-sizing: border-box;
  width: 1.875rem !important;
  min-width: 1.875rem !important;
  height: 1.875rem !important;
  min-height: 1.875rem !important;
  padding: 0 !important;
  font-size: 0.875rem !important;
  font-weight: 500;
  line-height: 1 !important;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
}

.wee-checkout-line--offcanvas-cart .wee-checkout-stepper--compact .wee-checkout-qty-value {
  flex: 0 0 auto;
  min-width: 1.375rem;
  padding-left: 0.3rem !important;
  padding-right: 0.3rem !important;
  font-size: 0.8125rem;
  font-weight: 500;
  font-variant-numeric: tabular-nums;
  line-height: 1;
}

.wee-checkout-thumb-wrap {
  flex-shrink: 0;
}

.wee-checkout-thumb-wrap--static {
  width: 80px;
  height: 80px;
  border-radius: 12px;
  overflow: hidden;
  background: var(--wee-anthracite-deep);
  border: 1px solid var(--wee-border);
}

@media (max-width: 575.98px) {
  .wee-checkout-thumb-wrap--static {
    width: 64px;
    height: 64px;
    border-radius: 10px;
  }
}

.wee-checkout-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.wee-checkout-line-title {
  line-height: 1.28;
  font-size: 1rem;
}

.wee-checkout-line-total {
  font-family: var(--font-display);
  white-space: nowrap;
}

.wee-checkout-remove {
  color: rgba(251, 99, 99, 0.95);
  padding: 0.35rem;
  line-height: 0;
  border: none !important;
  background: transparent !important;
  border-radius: 8px;
  opacity: 0.92;
  transition: color 0.15s, opacity 0.15s, transform 0.15s;
}

.wee-checkout-remove:hover,
.wee-checkout-remove:focus-visible {
  color: #ff8787 !important;
  opacity: 1;
  transform: scale(1.05);
}

.wee-checkout-remove svg {
  display: block;
}

.wee-checkout-qty-value {
  min-width: 1.85rem;
  font-variant-numeric: tabular-nums;
}

/* Home swiper: întotdeauna cadru foto ca pe meniu */
.wee-products-swiper .wee-product-card > .wee-product-card-media {
  display: block;
  aspect-ratio: 1;
  background: var(--wee-cream);
  overflow: hidden;
}

.wee-products-swiper .wee-product-card-media > a {
  display: block;
  width: 100%;
  height: 100%;
}

.wee-products-swiper .wee-product-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.wee-products-swiper .wee-product-img--placeholder {
  object-fit: contain !important;
  padding: 1.5rem;
  background: var(--wee-cream);
}

.wee-order-card {
  background: var(--wee-white);
  border: 1px solid var(--wee-border);
  border-radius: var(--wee-radius);
  padding: 1.25rem 1.5rem;
  margin-bottom: 1rem;
}

.wee-order-card--collapsed {
  padding: 0.85rem 1rem;
}

.wee-order-card--expanded {
  padding: 0.75rem 1rem 1.25rem;
}

.wee-order-card-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  cursor: pointer;
  user-select: none;
}

.wee-order-card-summary:focus-visible {
  outline: 2px solid rgba(184, 255, 60, 0.55);
  outline-offset: 3px;
  border-radius: 10px;
}

.wee-order-card-summary-main {
  flex: 1 1 auto;
  min-width: 0;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr) auto;
  align-items: center;
  gap: 0.65rem 1rem;
}

.wee-order-summary-total {
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
  text-align: end;
}

.wee-order-card-summary-meta {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.4rem 0.55rem;
  margin-top: 0.1rem;
}

.wee-order-countdown--compact {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
  font-size: 0.72rem;
  line-height: 1.25;
  font-variant-numeric: tabular-nums;
  background: var(--wee-primary);
  border: 1px solid var(--wee-primary-dim);
  color: var(--wee-ink);
  font-weight: 600;
  max-width: 100%;
}

.wee-order-countdown-compact-label {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--wee-muted);
  font-weight: 600;
  flex-shrink: 0;
}

.wee-order-countdown--compact .wee-order-countdown-val {
  display: inline;
  margin-top: 0;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.wee-order-view-pill {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
  border: 1px solid var(--wee-border);
  background: var(--wee-cream);
  color: var(--wee-ink);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  line-height: 1;
  cursor: pointer;
  transition: background 0.15s ease, border-color 0.15s ease;
}

.wee-order-view-pill:hover,
.wee-order-view-pill:focus-visible {
  background: var(--wee-primary);
  border-color: var(--wee-primary-dim);
  outline: none;
}

.wee-order-view-pill-icon {
  display: block;
  flex-shrink: 0;
  overflow: visible;
}

.wee-order-card-body {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--wee-border);
}

.wee-order-card--expanded .wee-order-card-body {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}

.wee-order-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.85rem;
}

.wee-order-card-top .wee-order-view-pill {
  margin-left: auto;
  flex-shrink: 0;
}

.wee-order-card--collapsed .wee-order-card-body[hidden] {
  display: none !important;
}

.wee-order-card-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.wee-order-card-meta {
  flex: 1 1 min(70%, 16rem);
  min-width: 0;
}

.wee-order-sum {
  text-align: end;
}

.wee-order-items {
  word-break: break-word;
}

.wee-order-item-row + .wee-order-item-row {
  margin-top: 0.35rem;
}

.wee-order-item-name {
  flex: 1 1 auto;
  min-width: 0;
}

.wee-order-item-price {
  flex: 0 0 auto;
  color: var(--text-color);
  font-variant-numeric: tabular-nums;
}

@media (max-width: 575.98px) {
  .wee-order-card {
    padding: 1rem 1rem;
    margin-bottom: 0.875rem;
  }

  .wee-order-card--collapsed {
    padding: 0.75rem 0.85rem;
  }

  .wee-order-card-summary-main {
    grid-template-columns: minmax(0, 1fr) auto;
    grid-template-rows: auto auto;
  }

  .wee-order-card-summary-main .wee-order-num {
    grid-column: 1;
    grid-row: 1;
  }

  .wee-order-card-summary-main .wee-order-placed {
    grid-column: 1;
    grid-row: 2;
  }

  .wee-order-card-summary-main .wee-order-summary-total {
    grid-column: 2;
    grid-row: 1 / span 2;
    align-self: center;
  }

  .wee-order-card-summary-meta {
    grid-column: 1 / -1;
    grid-row: 3;
  }

  .wee-order-view-pill-label {
    display: none;
  }

  .wee-order-card-head {
    flex-direction: column;
    align-items: stretch;
  }

  .wee-order-card-head .wee-status-badge {
    align-self: flex-start;
    max-width: 100%;
    white-space: normal;
    text-align: center;
  }

  .wee-order-sum {
    font-size: 1.05rem;
  }
}

.wee-status-badge {
  display: inline-block;
  padding: 0.25rem 0.65rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.wee-order-payment-pill {
  display: inline-block;
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--wee-muted);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--wee-border);
  line-height: 1.25;
  white-space: nowrap;
}

.wee-order-total {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}

.wee-order-total--after-detail {
  margin-top: 0.65rem;
  padding-top: 0.65rem;
  border-top: 1px solid var(--wee-border);
}

.wee-orders-live-toast {
  position: fixed;
  bottom: max(1rem, env(safe-area-inset-bottom));
  left: 50%;
  transform: translateX(-50%);
  z-index: 1080;
  max-width: min(92vw, 22rem);
  padding: 0.55rem 1rem;
  border-radius: var(--wee-radius);
  background: rgba(42, 48, 55, 0.98);
  border: 1px solid var(--wee-border);
  color: var(--wee-neon);
  font-size: 0.8125rem;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
  pointer-events: none;
}

.wee-order-accepted-note {
  color: rgba(142, 255, 118, 0.85);
  letter-spacing: 0.02em;
}

.wee-order-countdown-panel {
  background: rgba(184, 255, 60, 0.08);
  border: 1px solid rgba(184, 255, 60, 0.2);
}

.wee-order-countdown-title {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--wee-muted);
  font-weight: 600;
}

.wee-order-countdown-val {
  display: inline-block;
  margin-top: 0.125rem;
  font-variant-numeric: tabular-nums;
  font-size: clamp(1.08rem, 3.8vw, 1.35rem);
  font-weight: 700;
  letter-spacing: 0.03em;
  color: var(--wee-neon);
  line-height: 1.3;
}

.wee-order-countdown-hint {
  line-height: 1.35;
}

.wee-order-longer-prep {
  color: #fdb44b;
}

.wee-order-footer {
  border-top: 1px solid var(--wee-border);
  padding-top: 0.75rem;
  margin-top: 0.15rem;
}

.wee-order-finance {
  padding: 0;
  margin: 0;
}

.wee-order-finance-row + .wee-order-finance-row {
  margin-top: 0.4rem;
}

.wee-order-finance-dt {
  color: var(--wee-muted);
  font-family: inherit;
  font-weight: 500;
  max-width: 58%;
}

.wee-order-finance-dd {
  color: var(--wee-ink);
  font-variant-numeric: tabular-nums;
}

.wee-status-pending { background: rgba(255, 193, 7, 0.2); color: #ffc107; }
.wee-status-prep { background: rgba(13, 202, 240, 0.2); color: #6edff6; }
.wee-status-ready { background: rgba(184, 255, 60, 0.2); color: var(--wee-neon); }
.wee-status-done { background: rgba(255, 255, 255, 0.12); color: var(--wee-muted); }

/* Comenzile mele — zonă 100vh cu scroll intern; footer-ul site-ului rămâne dedesubt */
.wee-orders-page {
  --wee-orders-nav-offset: 84px;
  padding: 1.25rem 0 0;
  height: calc(100vh - var(--wee-orders-nav-offset));
  height: calc(100dvh - var(--wee-orders-nav-offset));
  max-height: calc(100vh - var(--wee-orders-nav-offset));
  max-height: calc(100dvh - var(--wee-orders-nav-offset));
  display: flex;
  flex-direction: column;
  overflow: hidden;
  box-sizing: border-box;
}

.wee-orders-page-shell {
  flex: 1 1 auto;
  min-height: 0;
  display: flex;
  flex-direction: column;
}

.wee-orders-page-row {
  flex: 1 1 auto;
  min-height: 0;
  width: 100%;
  margin: 0;
}

.wee-orders-page-col {
  display: flex;
  flex-direction: column;
  min-height: 0;
  height: 100%;
}

.wee-orders-page-head {
  flex-shrink: 0;
  padding-bottom: 1rem;
}

.wee-orders-page-title {
  font-size: clamp(1.65rem, 3.5vw, 2.25rem);
  margin-bottom: 0.35rem;
}

.wee-orders-page-lead {
  font-size: 1rem;
}

.wee-orders-scroll {
  flex: 1 1 auto;
  min-height: 0;
  overflow-x: hidden;
  overflow-y: auto;
  overscroll-behavior-y: contain;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 1.25rem;
  scrollbar-gutter: stable;
  scrollbar-width: thin;
  scrollbar-color: rgba(184, 255, 60, 0.35) transparent;
}

.wee-orders-scroll::-webkit-scrollbar {
  width: 6px;
}

.wee-orders-scroll::-webkit-scrollbar-thumb {
  background: rgba(184, 255, 60, 0.35);
  border-radius: 999px;
}

.wee-orders-scroll::-webkit-scrollbar-track {
  background: transparent;
}

@media (max-width: 575.98px) {
  .wee-orders-page {
    padding-top: 0.85rem;
  }

  .wee-orders-page-head {
    padding-bottom: 0.75rem;
  }
}

/* Offcanvas */
.wee-offcanvas {
  background: var(--wee-cream);
  color: var(--wee-ink);
  border-left: 1px solid var(--wee-border);
}

.wee-offcanvas .btn-close {
  filter: none;
}

/* Footer */
.wee-footer {
  background: var(--wee-cream-dark);
  border-top: 1px solid var(--wee-border);
  margin-top: 2rem;
  color: var(--wee-ink);
}

.wee-footer-title {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  color: var(--wee-ink);
}

.wee-footer-brand {
  display: inline-block;
  text-decoration: none;
}

.wee-footer-logo {
  display: block;
  height: 48px;
  width: auto;
  max-width: 180px;
  object-fit: contain;
  object-position: left center;
}

.wee-footer-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--wee-ink-soft);
  margin-bottom: 0.5rem;
}

.wee-footer-text {
  color: var(--wee-muted);
  font-size: 0.95rem;
}

.wee-footer-text a {
  color: var(--wee-muted);
  text-decoration: none;
}

.wee-footer-text a:hover {
  color: var(--wee-ink);
}

.wee-footer-divider {
  border-color: var(--wee-border);
}

.wee-footer-copy {
  color: var(--wee-muted);
  font-size: 0.85rem;
}

.wee-footer-hours {
  list-style: none;
  margin: 0;
  padding: 0;
}

.wee-footer-hours li {
  display: flex;
  align-items: baseline;
  justify-content: flex-start;
  gap: 0.5rem;
  padding: 0.15rem 0;
  font-size: 0.9rem;
  line-height: 1.45;
}

.wee-footer-hours-day {
  color: var(--wee-ink);
  font-weight: 500;
  min-width: 4.5rem;
  flex-shrink: 0;
}

.wee-footer-hours-time {
  color: var(--wee-muted);
  white-space: nowrap;
}

@media (min-width: 992px) {
  .wee-footer-col-schedule {
    padding-right: 2.5rem;
  }

  .wee-footer-col-map {
    padding-left: 1.5rem;
  }
}

.wee-footer-map {
  max-width: 100%;
}

.wee-footer-map-frame {
  display: block;
  width: 100%;
  height: 160px;
  border: 0;
  border-radius: var(--wee-radius);
  box-shadow: var(--wee-shadow);
}

.wee-footer-map-link {
  display: inline-block;
  margin-top: 0.5rem;
  font-size: 0.8rem;
  color: var(--wee-muted);
  text-decoration: none;
}

.wee-footer-map-link:hover {
  color: var(--wee-ink);
}

@media (max-width: 991px) {
  .wee-checkout-panel {
    position: static;
  }
}

/* Auth & loyalty */
.wee-loyalty-banner {
  background: var(--wee-white);
  border: 1px solid var(--wee-border);
  border-radius: var(--wee-radius);
  padding: 1.25rem 1.5rem;
  box-shadow: var(--wee-shadow);
}

.wee-loyalty-banner-title {
  font-family: var(--font-display);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--wee-ink-soft);
  margin-bottom: 0.75rem;
}

.wee-loyalty-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.wee-loyalty-list li {
  position: relative;
  padding-left: 1.1rem;
  margin-bottom: 0.35rem;
  color: var(--wee-muted);
  font-size: 0.95rem;
}

.wee-loyalty-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--wee-neon);
}

.wee-loyalty-steps {
  list-style: none;
  padding: 0;
  margin: 0;
  counter-reset: wee-loyalty-step;
}

.wee-loyalty-steps li {
  position: relative;
  padding-left: 2rem;
  margin-bottom: 0.75rem;
  color: var(--wee-muted);
  font-size: 0.98rem;
  line-height: 1.5;
}

.wee-loyalty-steps li::before {
  counter-increment: wee-loyalty-step;
  content: counter(wee-loyalty-step);
  position: absolute;
  left: 0;
  top: 0.1rem;
  width: 1.35rem;
  height: 1.35rem;
  border-radius: 50%;
  border: 1px solid var(--wee-neon);
  color: var(--wee-neon);
  font-size: 0.75rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.wee-loyalty-steps-compact li {
  margin-bottom: 0.55rem;
  font-size: 0.92rem;
}

.wee-loyalty-card-preview {
  position: relative;
  overflow: hidden;
  background: var(--wee-white);
  border: 2px solid rgba(42, 31, 18, 0.1);
  border-radius: calc(var(--wee-radius) + 6px);
  padding: 1.35rem 1.4rem 1.1rem;
  max-width: 420px;
  margin-inline: auto;
  box-shadow: var(--wee-shadow);
}

.wee-loyalty-card-preview-header {
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.75rem;
  min-height: 44px;
  margin-bottom: 1.1rem;
  padding-right: 4.5rem;
}

.wee-loyalty-card-preview-top {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 1rem;
  font-family: var(--font-display);
  font-size: 0.95rem;
}

.wee-loyalty-card-preview-logo {
  display: block;
  height: 44px;
  width: auto;
  max-width: 160px;
  object-fit: contain;
  object-position: left center;
}

.wee-loyalty-card-preview-mascot {
  position: absolute;
  top: -0.35rem;
  right: -0.25rem;
  width: 72px;
  height: auto;
  object-fit: contain;
  pointer-events: none;
}

.wee-loyalty-card-preview-stamps {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 0.85rem;
}

.wee-loyalty-stamp {
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  border: 2px solid var(--wee-lime);
  background: var(--wee-cream);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.wee-loyalty-stamp-icon {
  width: 1.35rem;
  height: 1.35rem;
  object-fit: contain;
}

.wee-loyalty-stamp.is-filled {
  border-color: var(--wee-ink);
  background: var(--wee-lime);
}

.wee-loyalty-card-preview-foot {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--wee-ink-soft);
  margin-bottom: 0.9rem;
}

.wee-loyalty-card-preview-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.75rem;
  padding-top: 0.85rem;
  border-top: 1px solid var(--wee-border);
}

.wee-loyalty-card-badge {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--wee-ink);
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
  background: var(--wee-cream);
  border: 1px solid var(--wee-border);
}

.wee-loyalty-card-badge--accent {
  color: var(--wee-ink);
  background: var(--wee-primary);
  border-color: var(--wee-primary-dim);
}

.wee-wallet-buttons {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 1rem;
  width: 100%;
  max-width: min(100%, 22rem);
  margin-inline: auto;
}

.wee-wallet-btn {
  flex: none;
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 46px;
  padding: 0.65rem 0.9rem;
  border: none;
  border-radius: 8px;
  font-family: var(--wee-font-display);
  font-size: 0.9rem;
  cursor: pointer;
  transition: opacity 0.2s ease;
}

.wee-wallet-btn:disabled {
  opacity: 0.65;
  cursor: wait;
}

.wee-wallet-btn--apple {
  background: #000;
  color: #fff;
}

.wee-wallet-btn--apple-badge,
.wee-wallet-btn--google-badge {
  padding: 0.65rem 1rem;
  min-height: 3.75rem;
  background: transparent;
  border: none;
  border-radius: 12px;
}

.wee-wallet-btn--apple-badge img,
.wee-wallet-btn--google-badge img {
  display: block;
  width: 100%;
  max-width: 20rem;
  height: auto;
  max-height: 3.25rem;
  margin: 0 auto;
  object-fit: contain;
  object-position: center;
}

.wee-wallet-btn--apple-badge:disabled img,
.wee-wallet-btn--google-badge:disabled img {
  opacity: 0.55;
}

.wee-wallet-btn--google {
  background: #f2f2f2;
  color: #444;
}

.wee-wallet-btn-icon {
  font-size: 1.1rem;
  line-height: 1;
}

.wee-wallet-btn-icon-google {
  font-family: var(--wee-font-display);
  font-weight: 700;
}

.wee-auth-divider {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin: 1.25rem 0;
  color: var(--wee-muted, rgba(55, 48, 40, 0.55));
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.wee-auth-divider::before,
.wee-auth-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(55, 48, 40, 0.14);
}

.wee-google-sign-in-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  font-family: var(--wee-font-display);
  font-weight: 500;
}

.wee-google-icon {
  flex-shrink: 0;
}

.wee-wallet-btn:not(:disabled):hover {
  opacity: 0.88;
}

.wee-account-section-title {
  font-family: var(--wee-font-display);
  font-size: 1.15rem;
  margin-bottom: 1rem;
}

.wee-account-card-panel {
  position: sticky;
  top: calc(var(--wee-nav-height, 72px) + 1rem);
}

.wee-account-card {
  max-width: none;
  margin-bottom: 1.25rem;
}

.wee-account-stamp-strip {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  margin-bottom: 0.75rem;
}

.wee-account-stamp-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  justify-content: center;
}

.wee-account-stamp-slot {
  width: 2.15rem;
  height: 2.15rem;
  border-radius: 50%;
  border: 2px solid var(--wee-lime);
  background: var(--wee-cream);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.wee-account-stamp-slot.is-filled {
  border-color: var(--wee-ink);
  background: var(--wee-lime);
}

.wee-account-stamp-icon {
  width: 1.35rem;
  height: 1.35rem;
  object-fit: contain;
}

.wee-account-stamps-count {
  text-align: left;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--wee-ink-soft);
  margin-bottom: 0.35rem;
}

.wee-account-free-coffee,
.wee-account-discount {
  text-align: left;
  font-size: 0.85rem;
  color: var(--wee-ink-soft);
  font-weight: 600;
  margin-bottom: 0.35rem;
}

.wee-account-cashback {
  text-align: left;
  font-size: 0.9rem;
  color: var(--wee-ink);
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.wee-account-cashback-amount {
  color: var(--wee-neon);
}

.wee-account-qr-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 0.75rem;
}

.wee-account-qr {
  width: 220px;
  height: 220px;
  border: 1px solid var(--wee-border);
  border-radius: var(--wee-radius);
  background: #fff;
  object-fit: contain;
}

.wee-profile-photo-row {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.wee-profile-photo-wrap {
  flex-shrink: 0;
}

.wee-profile-photo {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--wee-border);
}

.wee-profile-photo--placeholder {
  background: rgba(255, 255, 255, 0.08);
}

.letter-spacing-wide {
  letter-spacing: 0.35em;
}

.wee-nav-cashback {
  font-size: 0.85rem;
  color: var(--wee-neon) !important;
  cursor: default;
}

.wee-nav-cashback::before {
  content: '★ ';
  opacity: 0.85;
}

.wee-nav-logout {
  background: none;
  border: 0;
  padding: 0.5rem 1rem;
  color: var(--wee-muted);
  text-decoration: none;
}

.wee-nav-logout:hover {
  color: var(--wee-ink);
}

.wee-checkout-benefits {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--wee-border);
  border-radius: var(--wee-radius);
  padding: 0.85rem 1rem;
}

.wee-checkout-summary {
  font-size: 0.95rem;
}

.wee-password-field {
  position: relative;
}

.wee-password-input {
  padding-right: 2.75rem;
}

.wee-password-toggle {
  position: absolute;
  top: 50%;
  right: 0.65rem;
  transform: translateY(-50%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  padding: 0;
  border: 0;
  border-radius: 8px;
  background: transparent;
  color: var(--wee-muted);
  cursor: pointer;
}

.wee-password-toggle:hover,
.wee-password-toggle:focus-visible {
  color: var(--wee-neon);
  outline: none;
}

.wee-password-toggle.is-visible .wee-password-icon-show {
  display: none;
}

.wee-password-toggle.is-visible .wee-password-icon-hide {
  display: block !important;
}

.wee-password-icon {
  width: 1.15rem;
  height: 1.15rem;
}

/* Legal pages */
.wee-legal-doc {
  color: var(--wee-muted);
  font-size: 0.98rem;
  line-height: 1.7;
}

.wee-legal-doc h2 {
  color: var(--wee-ink);
  font-family: var(--wee-font-display);
  font-size: 1.15rem;
  margin-top: 2rem;
  margin-bottom: 0.75rem;
}

.wee-legal-doc h2:first-of-type {
  margin-top: 0;
}

.wee-legal-doc p,
.wee-legal-doc li {
  margin-bottom: 0.65rem;
}

.wee-legal-doc ul {
  padding-left: 1.25rem;
}

.wee-legal-doc a {
  color: var(--wee-neon);
  text-decoration: none;
}

.wee-legal-doc a:hover {
  text-decoration: underline;
}

.wee-legal-company {
  background: var(--wee-white);
  border: 1px solid var(--wee-border);
  border-radius: var(--wee-radius);
  padding: 1.25rem 1.5rem;
  margin-bottom: 2rem;
}

.wee-legal-subtitle {
  color: var(--wee-ink);
  margin-bottom: 0.75rem;
}

.wee-legal-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.wee-legal-list li {
  padding: 0.2rem 0;
}

.wee-legal-flow {
  display: grid;
  gap: 0.85rem;
  margin: 1rem 0 1.5rem;
}

.wee-legal-flow-step {
  background: var(--wee-white);
  border: 1px solid var(--wee-border);
  border-radius: var(--wee-radius);
  padding: 1rem 1.15rem;
}

.wee-legal-flow-step strong {
  color: var(--wee-ink);
  display: block;
  margin-bottom: 0.35rem;
}

.wee-legal-flow-step p {
  margin-bottom: 0;
  font-size: 0.92rem;
}

.wee-legal-table {
  width: 100%;
  border-collapse: collapse;
  margin: 1rem 0 1.5rem;
  font-size: 0.92rem;
}

.wee-legal-table th,
.wee-legal-table td {
  border: 1px solid var(--wee-border);
  padding: 0.65rem 0.75rem;
  vertical-align: top;
}

.wee-legal-table th {
  color: var(--wee-ink);
  background: var(--wee-cream-dark);
  text-align: left;
}

.wee-legal-nav a {
  color: var(--wee-ink-soft);
}

.wee-footer-legal {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem 0.5rem;
  font-size: 0.85rem;
}

.wee-footer-legal a {
  color: var(--wee-muted);
  text-decoration: none;
}

.wee-footer-legal a:hover {
  color: var(--wee-ink);
}

.wee-footer-legal-sep {
  color: var(--wee-muted);
}

.wee-legal-consent .form-check-label a {
  color: var(--wee-neon);
  text-decoration: none;
}

.wee-legal-consent .form-check-label a:hover {
  text-decoration: underline;
}

.wee-legal-consent .form-check-input:checked {
  background-color: var(--wee-neon);
  border-color: var(--wee-neon);
}

.wee-legal-consent .form-check-input:focus {
  box-shadow: 0 0 0 0.2rem rgba(184, 255, 60, 0.15);
}

.wee-wallet-pass-page {
  position: relative;
}

.wee-wallet-pass-hero .wee-lead {
  max-width: none;
}

.wee-wallet-pass-hero .wee-loyalty-card-preview {
  margin-inline: auto;
}

@media (min-width: 992px) {
  .wee-wallet-pass-hero .wee-loyalty-card-preview {
    margin-inline: auto 0;
  }
}

body.wee-wallet-pass-intro .wee-wallet-pass-section {
  padding-bottom: calc(8.5rem + env(safe-area-inset-bottom, 0px));
}

.wee-wallet-pass-footer-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1050;
  padding-top: 0.75rem;
  padding-bottom: calc(0.85rem + env(safe-area-inset-bottom, 0px));
  background: var(--wee-cream);
  border-top: 1px solid var(--wee-border);
}

.wee-wallet-pass-footer-bar .wee-auth-divider {
  margin-top: 0;
  margin-bottom: 0.75rem;
  color: var(--wee-muted);
}

.wee-wallet-pass-footer-bar .wee-auth-divider::before,
.wee-wallet-pass-footer-bar .wee-auth-divider::after {
  background: rgba(255, 255, 255, 0.12);
}

/* ===== WEE brand theme overrides ===== */
.wee-brand-logo {
  display: block;
  height: 58px;
  max-height: 58px;
  width: auto;
  max-width: 175px;
  object-fit: contain;
  object-position: left center;
}

@media (min-width: 992px) {
  .wee-brand-logo {
    height: 72px;
    max-height: 72px;
    max-width: 220px;
  }
}

.navbar-brand.wee-brand {
  display: flex;
  align-items: center;
  margin-right: 0;
  padding: 0;
  line-height: 1;
}

.wee-page-logo {
  display: block;
  width: min(300px, 78vw);
  max-width: 100%;
  height: auto;
  object-fit: contain;
}

.wee-page-logo--hero {
  width: min(340px, 82vw);
}

.wee-navbar {
  background: rgba(255, 252, 233, 0.97) !important;
  border-bottom: 1px solid var(--wee-border);
  padding-top: 0.65rem;
  padding-bottom: 0.65rem;
  min-height: 80px;
}

@media (min-width: 992px) {
  .wee-navbar {
    min-height: 92px;
  }
}

.wee-brand {
  color: var(--wee-ink) !important;
  padding: 0;
}

.wee-navbar .nav-link {
  color: var(--wee-ink-soft) !important;
}

.wee-navbar .nav-link:hover,
.wee-navbar .nav-link.active {
  color: var(--wee-ink) !important;
  background: var(--wee-primary);
}

.wee-nav-offcanvas {
  background: var(--wee-cream);
  color: var(--wee-ink);
}

.wee-nav-offcanvas-links .nav-link {
  color: var(--wee-ink) !important;
}

.wee-nav-offcanvas-links .nav-link:hover,
.wee-nav-offcanvas-links .nav-link.active {
  color: var(--wee-ink) !important;
  background: var(--wee-primary);
  border-color: rgba(42, 31, 18, 0.08);
}

.wee-home-title,
.wee-hero-title,
.wee-story-title,
.wee-page-title,
.wee-section-title,
.wee-heading {
  font-family: var(--font-display);
  font-weight: 500;
}

.wee-home-title {
  color: var(--wee-ink);
  font-size: clamp(2.8rem, 7vw, 4.5rem);
  line-height: 1.05;
}

.wee-kicker,
.wee-hero-kicker {
  color: var(--wee-ink-soft);
  font-family: var(--font-body);
  font-weight: 600;
}

.wee-section-alt {
  background: var(--wee-white);
}

.wee-page-hero {
  background: var(--wee-cream);
}

.wee-card-highlight {
  background: var(--wee-white);
  border-color: var(--wee-border);
  box-shadow: var(--wee-shadow), inset 3px 0 0 var(--wee-orange);
}

.wee-card-icon {
  color: var(--wee-ink-soft);
  font-family: var(--font-body);
  font-weight: 600;
}

.wee-product-card {
  background: var(--wee-white);
  border: 1px solid var(--wee-border);
}

.wee-product-name a {
  color: var(--wee-ink);
}

.wee-product-name a:hover {
  color: var(--wee-ink-soft);
}

.wee-link-neon {
  color: var(--wee-ink);
}

.wee-link-neon:hover {
  color: var(--wee-ink-soft);
}

.wee-body-text {
  color: var(--wee-ink-soft);
}

.btn-wee-accent {
  background: var(--wee-primary);
  color: var(--wee-ink);
}

.btn-wee-accent:hover {
  background: var(--wee-primary-dim);
  color: var(--wee-ink);
  box-shadow: 0 8px 24px rgba(42, 31, 18, 0.12);
}

.btn-outline-wee {
  border-color: var(--wee-ink);
  color: var(--wee-ink);
  background: transparent;
}

.btn-outline-wee:hover {
  background: var(--wee-white);
  color: var(--wee-ink);
  border-color: var(--wee-ink);
}

.wee-hero-slide::before {
  background: rgba(42, 31, 18, 0.52);
}

.wee-hero-content {
  color: var(--wee-white);
}

.wee-hero-kicker {
  color: var(--wee-lime);
}

.wee-hero-title {
  color: var(--wee-white);
}

.wee-hero-sub {
  color: rgba(255, 255, 255, 0.9);
}

.wee-hero-arrow {
  border-color: rgba(227, 232, 124, 0.55);
  background: rgba(42, 31, 18, 0.55);
  color: var(--wee-lime);
}

.wee-hero-slide-img[data-parallax] {
  will-change: transform;
}

.wee-offcanvas,
.wee-checkout-panel,
.wee-variant-modal-content {
  background: var(--wee-cream) !important;
  color: var(--wee-ink);
}

.wee-footer {
  background: var(--wee-cream-dark);
  color: var(--wee-ink);
}

.wee-footer a {
  color: var(--wee-ink-soft);
}

.wee-footer a:hover {
  color: var(--wee-ink);
}

.wee-cta-band {
  background: var(--wee-white);
  border: 1px solid var(--wee-border);
  border-radius: calc(var(--wee-radius) + 4px);
  padding: 3rem 2rem;
  box-shadow: var(--wee-shadow);
}

/* Story + mascot */
.wee-story-section {
  position: relative;
  overflow: hidden;
  padding: 5rem 0;
  background: var(--wee-cream);
}

.wee-story-inner {
  position: relative;
  z-index: 2;
}

.wee-story-title {
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  color: var(--wee-ink);
  margin-bottom: 0.5rem;
}

.wee-story-layout {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  align-items: center;
}

@media (max-width: 991.98px) {
  .wee-story-layout {
    grid-template-columns: 1fr;
  }
}

.wee-story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 2.5rem;
}

@media (max-width: 767.98px) {
  .wee-story-grid {
    grid-template-columns: 1fr;
  }
}

.wee-story-card {
  background: var(--wee-white);
  border-radius: var(--wee-radius);
  padding: 1.75rem;
  border: 1px solid var(--wee-border);
}

.wee-story-card h3 {
  color: var(--wee-ink);
  margin-bottom: 0.5rem;
}

.wee-mascot {
  width: min(280px, 70vw);
  height: auto;
  display: block;
  margin-inline: auto;
}

.wee-mascot--parallax {
  will-change: transform;
}

.wee-mascot--hero-deco {
  position: absolute;
  right: 4%;
  bottom: 8%;
  width: min(220px, 35vw);
  opacity: 0.92;
  pointer-events: none;
  z-index: 2;
}

/* Sticky mobile CTA */
.wee-sticky-cta {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1040;
  padding: 0.75rem 1rem calc(0.75rem + env(safe-area-inset-bottom, 0px));
  background: var(--wee-cream);
  border-top: 1px solid var(--wee-border);
  pointer-events: none;
}

.wee-sticky-cta .btn {
  pointer-events: auto;
  width: 100%;
  box-shadow: 0 8px 28px rgba(42, 31, 18, 0.12);
}

@media (max-width: 991.98px) {
  body[data-page="home"] .wee-sticky-cta,
  body[data-page="meniu"] .wee-sticky-cta {
    display: block;
  }
}

@media (prefers-reduced-motion: reduce) {
  [data-parallax] {
    transform: none !important;
  }
}

/* Homepage logo intro overlay */
.wee-intro {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--wee-cream);
  opacity: 1;
}

.wee-intro-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  padding: 1.5rem;
  width: 100%;
  max-width: 640px;
}

.wee-intro-logo-wrap {
  width: min(92vw, 520px);
  line-height: 0;
}

.wee-intro-logo-wrap svg {
  display: block;
  width: 100%;
  height: auto;
  overflow: visible;
}

.wee-intro-hint {
  margin: 0;
  color: var(--wee-muted);
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  text-align: center;
  opacity: 0;
  animation: wee-intro-hint-in 0.675s ease 2.93s forwards;
}

@keyframes wee-intro-hint-in {
  from {
    opacity: 0;
    transform: translateY(6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.wee-intro.is-dismissing {
  pointer-events: none;
}

body.wee-intro-active {
  overflow: hidden;
}

body.wee-intro-active .wee-navbar,
body.wee-intro-active #main-content,
body.wee-intro-active .wee-footer,
body.wee-intro-active .wee-sticky-cta {
  visibility: hidden;
}

@media (prefers-reduced-motion: reduce) {
  .wee-intro-hint {
    animation: none;
    opacity: 1;
  }
}

.wee-product-options-modal .modal-content {
  background: var(--wee-cream);
  color: var(--wee-ink);
}

.wee-product-options-modal .modal-header,
.wee-product-options-modal .modal-footer {
  border-color: var(--wee-border);
}
