:root {
  --page: #f5f2e9;
  --surface: #ffffff;
  --surface-soft: #f9fbf7;
  --ink: #17251d;
  --muted: #66736b;
  --line: #dce3dc;
  --line-strong: #c8d3ca;
  --green: #103d2d;
  --green-2: #265440;
  --green-3: #426653;
  --mint: #e9f5e4;
  --mint-2: #dff0d7;
  --lime: #8ce750;
  --lime-dark: #67c82e;
  --warning: #fff4dd;
  --warning-ink: #79520b;
  --danger: #a9434b;
  --danger-soft: #fff0f1;
  --success: #247c4a;
  --success-soft: #e6f6eb;
  --info: #205d87;
  --info-soft: #e9f4fb;
  --shadow: 0 12px 34px rgba(19, 50, 37, .08);
  --shadow-strong: 0 24px 70px rgba(8, 31, 22, .25);
  --radius-xl: 26px;
  --radius-lg: 20px;
  --radius-md: 14px;
  --focus: 0 0 0 4px rgba(140, 231, 80, .38);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--page); }
body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(circle at 8% 0%, rgba(140, 231, 80, .09), transparent 28rem),
    var(--page);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
body.cart-open { overflow: hidden; }
button, input, select, textarea { font: inherit; }
button { color: inherit; cursor: pointer; }
button:disabled { cursor: not-allowed; opacity: .55; }
input, select, textarea { min-width: 0; }
img, svg { display: block; }
a { color: inherit; }
::selection { background: var(--lime); color: var(--green); }
:focus-visible { outline: 3px solid var(--lime-dark); outline-offset: 3px; box-shadow: var(--focus); }

.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}
.skip-link {
  position: fixed;
  left: 18px;
  top: 10px;
  z-index: 200;
  padding: 11px 16px;
  border-radius: 12px;
  background: var(--lime);
  color: var(--green);
  font-weight: 900;
  transform: translateY(-160%);
  transition: transform .15s ease;
}
.skip-link:focus { transform: translateY(0); }
.skip-link:focus-visible { outline-color: var(--green); }
.shell { width: min(1540px, calc(100% - 44px)); margin-inline: auto; }
.svg-sprite { position: absolute; width: 0; height: 0; overflow: hidden; }
svg { width: 22px; height: 22px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(16, 61, 45, .12);
  background: rgba(250, 248, 242, .94);
  box-shadow: 0 4px 18px rgba(19, 50, 37, .04);
  backdrop-filter: blur(18px);
}
.header-row {
  min-height: 80px;
  display: grid;
  grid-template-columns: 210px minmax(430px, 1fr) auto;
  align-items: center;
  gap: 22px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  padding: 4px;
  border: 0;
  border-radius: 13px;
  background: transparent;
  text-align: left;
}
.brand-mark {
  width: 47px;
  height: 47px;
  display: grid;
  place-items: center;
  border-radius: 14px 14px 14px 5px;
  background: var(--green);
  color: var(--lime);
  font-size: 28px;
  font-weight: 1000;
  letter-spacing: -.06em;
  box-shadow: 0 8px 18px rgba(16, 61, 45, .16);
}
.brand-copy { display: flex; flex-direction: column; line-height: 1.05; }
.brand-copy strong { color: var(--green); font-size: 22px; font-weight: 1000; letter-spacing: .06em; }
.brand-copy small { margin-top: 5px; color: var(--muted); font-size: 12px; font-weight: 750; }
.main-nav { display: grid; grid-template-columns: repeat(3, minmax(135px, 200px)); justify-content: center; gap: 10px; }
.nav-item {
  min-height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: var(--surface);
  color: #44544b;
  font-size: 15px;
  font-weight: 850;
  transition: transform .18s ease, border-color .18s ease, background .18s ease;
}
.nav-item span { font-size: 22px; }
.nav-item:hover { border-color: var(--green-3); transform: translateY(-1px); }
.nav-item.active { border-color: var(--green); background: var(--green); color: #fff; box-shadow: 0 8px 20px rgba(16, 61, 45, .15); }
.header-actions { display: flex; align-items: center; justify-content: flex-end; gap: 9px; }
.icon-button, .cart-button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: var(--surface);
  color: var(--green);
  font-size: 14px;
  font-weight: 850;
  white-space: nowrap;
  transition: transform .18s ease, border-color .18s ease;
}
.icon-button:hover, .cart-button:hover { transform: translateY(-1px); border-color: var(--green-3); }
.cart-button { min-width: 136px; border-color: var(--green); background: var(--green); color: #fff; }
.count-badge {
  min-width: 26px;
  height: 26px;
  display: inline-grid;
  place-items: center;
  padding: 0 7px;
  border-radius: 999px;
  background: var(--lime);
  color: var(--green);
  font-size: 13px;
  font-weight: 950;
}
.mobile-nav { display: none; }

main { padding: 24px 0 78px; }
.purchase-progress {
  width: min(770px, 100%);
  display: grid;
  grid-template-columns: 1fr 34px 1fr 34px 1fr;
  align-items: center;
  gap: 5px;
  margin: 0 auto 20px;
  padding: 8px;
  border: 1px solid rgba(16, 61, 45, .11);
  border-radius: 19px;
  background: rgba(255, 255, 255, .86);
  box-shadow: 0 8px 24px rgba(19, 50, 37, .045);
  list-style: none;
}
.purchase-progress li { min-height: 52px; display: flex; align-items: center; justify-content: center; gap: 9px; border-radius: 13px; color: #69756e; font-size: 14px; font-weight: 850; }
.purchase-progress li:nth-child(even) { min-height: auto; color: #9aa49d; }
.purchase-progress li:nth-child(even) svg { width: 18px; height: 18px; }
.purchase-progress b { width: 29px; height: 29px; display: grid; place-items: center; border-radius: 999px; background: #edf1ed; color: #5b6960; font-size: 13px; }
.purchase-progress li.active { background: var(--green); color: #fff; }
.purchase-progress li.active b { background: var(--lime); color: var(--green); }
.purchase-progress li.done { background: var(--mint); color: var(--green); }
.purchase-progress li.done b { background: var(--green); color: #fff; }

.service-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr)) auto;
  align-items: stretch;
  gap: 1px;
  margin-bottom: 18px;
  overflow: hidden;
  border: 1px solid rgba(16, 61, 45, .11);
  border-radius: var(--radius-lg);
  background: var(--line);
  box-shadow: 0 8px 22px rgba(19, 50, 37, .04);
}
.service-strip > div { min-height: 72px; display: flex; align-items: center; gap: 12px; padding: 13px 17px; background: rgba(255,255,255,.95); }
.service-strip strong, .service-strip small { display: block; }
.service-strip strong { color: var(--green); font-size: 14px; font-weight: 900; }
.service-strip small { margin-top: 2px; color: var(--muted); font-size: 12px; }
.service-strip > button { min-width: 202px; display: flex; align-items: center; justify-content: center; gap: 9px; padding: 12px 18px; border: 0; background: var(--mint); color: var(--green); font-size: 14px; font-weight: 900; }
.service-strip > button:hover { background: var(--mint-2); }
.service-icon { width: 42px; height: 42px; display: grid; place-items: center; flex: 0 0 auto; border-radius: 13px; background: var(--mint); color: var(--green); font-size: 12px; font-weight: 950; }

.mode-banner {
  min-height: 62px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
  padding: 11px 14px 11px 17px;
  border: 1px solid #e7ca82;
  border-radius: 16px;
  background: var(--warning);
  color: var(--warning-ink);
}
.mode-banner > span:nth-child(2) { display: flex; flex-direction: column; }
.mode-banner strong { font-size: 14px; font-weight: 900; }
.mode-banner small { font-size: 12px; }
.mode-banner button { min-height: 48px; padding: 0 14px; border: 1px solid rgba(121,82,11,.25); border-radius: 11px; background: #fff9ed; color: inherit; font-size: 14px; font-weight: 850; }
.mode-dot { width: 10px; height: 10px; border-radius: 50%; background: #d08b19; box-shadow: 0 0 0 5px rgba(208,139,25,.14); }

.shop-layout { display: grid; grid-template-columns: minmax(0, 1fr) 390px; align-items: start; gap: 23px; }
.catalog-column { min-width: 0; }
.panel { border: 1px solid rgba(16, 61, 45, .11); border-radius: var(--radius-xl); background: var(--surface); box-shadow: var(--shadow); }
.filter-panel { margin-bottom: 18px; padding: 20px; }
.section-heading { display: flex; align-items: center; gap: 12px; }
.section-heading.compact { margin-bottom: 15px; }
.section-heading h1, .section-heading h2 { margin: 0; color: var(--green); font-size: clamp(21px, 2vw, 28px); line-height: 1.15; letter-spacing: -.025em; }
.section-heading.compact h1 { font-size: 21px; }
.eyebrow { margin: 0 0 3px; color: var(--green-3); font-size: 12px; font-weight: 900; letter-spacing: .09em; text-transform: uppercase; }
.section-symbol { width: 48px; height: 48px; display: grid; place-items: center; flex: 0 0 auto; border-radius: 15px; background: var(--mint); color: var(--green); font-size: 25px; }
.section-symbol svg { width: 25px; height: 25px; }
.audience-list { display: grid; grid-template-columns: repeat(6, minmax(0, 1fr)); gap: 10px; }
.audience-chip {
  min-height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 8px 10px;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: var(--surface-soft);
  color: #526058;
  font-size: 14px;
  font-weight: 800;
  transition: .18s ease;
}
.audience-chip span { font-size: 23px; }
.audience-chip:hover { border-color: var(--green-3); transform: translateY(-1px); }
.audience-chip.active { border-color: var(--green); background: var(--green); color: #fff; box-shadow: 0 8px 18px rgba(16,61,45,.13); }

.catalog-panel { padding: 23px; }
.catalog-head { display: grid; grid-template-columns: minmax(240px, 1fr) minmax(280px, 420px); align-items: center; gap: 18px; margin-bottom: 18px; }
.search-box { min-height: 52px; display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 10px; padding: 0 10px 0 15px; border: 1px solid var(--line-strong); border-radius: 15px; background: #fff; color: #718078; }
.search-box:focus-within { border-color: var(--green-2); box-shadow: var(--focus); }
.search-box input { width: 100%; border: 0; outline: 0; background: transparent; color: var(--ink); font-size: 15px; }
.search-box input::placeholder { color: #829088; }
.search-box button { width: 44px; height: 44px; display: grid; place-items: center; border: 0; border-radius: 10px; background: #eef2ee; color: var(--green); }
.search-box button svg { width: 18px; height: 18px; }
.type-tabs { display: flex; gap: 8px; margin: 0 -3px 18px; padding: 3px 3px 10px; overflow-x: auto; scrollbar-width: thin; }
.type-chip { min-height: 44px; display: inline-flex; align-items: center; gap: 8px; flex: 0 0 auto; padding: 0 15px; border: 1px solid var(--line); border-radius: 13px; background: var(--surface-soft); color: #536158; font-size: 14px; font-weight: 800; }
.type-chip:hover { border-color: var(--green-3); }
.type-chip.active { border-color: var(--green); background: var(--mint); color: var(--green); box-shadow: inset 0 0 0 1px rgba(16,61,45,.1); }
.results-toolbar { min-height: 44px; display: flex; align-items: center; justify-content: space-between; gap: 14px; margin-bottom: 13px; }
.results-toolbar p { margin: 0; color: var(--muted); font-size: 14px; }
.results-toolbar p strong { color: var(--ink); }
.results-toolbar p span:not(:empty)::before { content: " · "; }
.results-toolbar label { display: flex; align-items: center; gap: 8px; color: var(--muted); font-size: 13px; font-weight: 700; }
.results-toolbar select { min-height: 48px; padding: 0 38px 0 12px; border: 1px solid var(--line); border-radius: 12px; background: #fff; color: var(--ink); font-size: 14px; font-weight: 750; }

.product-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; }
.product-card {
  min-width: 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 19px;
  background: #fff;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.product-card:hover { transform: translateY(-2px); border-color: #aebeb2; box-shadow: 0 14px 28px rgba(19,50,37,.09); }
.product-visual {
  position: relative;
  aspect-ratio: 1.65 / 1;
  display: grid;
  place-items: center;
  overflow: hidden;
  width: 100%;
  padding: 0;
  border: 0;
  background: linear-gradient(145deg, var(--product-light, #dcebd8), #f4f7f0);
  cursor: pointer;
}
.product-visual::after { content: ""; position: absolute; inset: auto -18% -58% 25%; height: 90%; border-radius: 50%; background: rgba(255,255,255,.55); transform: rotate(-10deg); }
.product-visual img { width: 100%; height: 100%; object-fit: contain; padding: 13px; position: relative; z-index: 2; }
.product-emoji { position: relative; z-index: 2; font-size: clamp(48px, 6vw, 72px); filter: drop-shadow(0 10px 9px rgba(35,60,42,.15)); }
.visual-label { position: absolute; left: 13px; bottom: 11px; z-index: 3; padding: 5px 9px; border-radius: 9px; background: rgba(16,61,45,.88); color: #fff; font-size: 12px; font-weight: 900; backdrop-filter: blur(6px); }
.stock-badge { position: absolute; top: 10px; right: 10px; z-index: 3; padding: 5px 9px; border-radius: 999px; background: rgba(255,255,255,.92); color: var(--success); font-size: 12px; font-weight: 900; box-shadow: 0 3px 10px rgba(17,43,31,.08); }
.stock-badge.low { background: var(--warning); color: var(--warning-ink); }
.stock-badge.out { background: var(--danger-soft); color: var(--danger); }
.product-content { min-height: 218px; display: flex; flex-direction: column; padding: 14px; }
.product-brand { margin-bottom: 4px; overflow: hidden; color: var(--green-3); font-size: 12px; font-weight: 900; letter-spacing: .06em; text-overflow: ellipsis; text-transform: uppercase; white-space: nowrap; }
.product-name-button { display: -webkit-box; min-height: 47px; margin: 0; padding: 0; overflow: hidden; border: 0; background: transparent; color: var(--ink); font-size: 16px; font-weight: 850; line-height: 1.4; text-align: left; -webkit-box-orient: vertical; -webkit-line-clamp: 2; }
.product-meta { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 8px; }
.product-meta span { padding: 4px 7px; border-radius: 7px; background: #f0f4f0; color: #536158; font-size: 12px; font-weight: 750; }
.product-buy { display: grid; grid-template-columns: minmax(0, 1fr) auto; align-items: end; gap: 8px; margin-top: auto; padding-top: 12px; }
.price-block { min-width: 0; }
.price-block small { display: block; color: var(--muted); font-size: 12px; }
.price-block strong { display: block; color: var(--green); font-size: 20px; font-weight: 950; line-height: 1.25; }
.price-block .omnibus-price, .detail-price .omnibus-price { margin-top: 3px; color: #714a05; font-weight: 750; }
.add-button { min-height: 48px; display: inline-flex; align-items: center; justify-content: center; gap: 6px; padding: 0 12px; border: 0; border-radius: 12px; background: var(--lime); color: var(--green); font-size: 14px; font-weight: 950; }
.add-button:hover { background: var(--lime-dark); }
.add-button svg { width: 18px; height: 18px; }
.inline-qty { display: grid; grid-template-columns: 44px 34px 44px; align-items: center; border: 1px solid var(--green); border-radius: 12px; overflow: hidden; background: var(--green); color: #fff; }
.inline-qty button { width: 44px; height: 48px; display: grid; place-items: center; border: 0; background: transparent; color: #fff; }
.inline-qty button:hover { background: rgba(255,255,255,.1); }
.inline-qty svg { width: 16px; height: 16px; }
.inline-qty b { text-align: center; font-size: 13px; }
.skeleton-card { height: 374px; border-radius: 19px; background: linear-gradient(100deg, #eef1ed 35%, #f8faf7 50%, #eef1ed 65%); background-size: 300% 100%; animation: shimmer 1.25s infinite; }
@keyframes shimmer { to { background-position-x: -100%; } }
.empty-state { padding: 60px 20px; text-align: center; }
.empty-state > span { font-size: 52px; }
.empty-state h3 { margin: 10px 0 4px; color: var(--green); font-size: 21px; }
.empty-state p { margin: 0 0 16px; color: var(--muted); }
.load-more { min-height: 48px; display: block; margin: 20px auto 0; padding: 0 22px; border: 1px solid var(--line-strong); border-radius: 13px; background: #fff; color: var(--green); font-size: 14px; font-weight: 900; }
.load-more:hover { border-color: var(--green); background: var(--mint); }

.cart-panel {
  position: sticky;
  top: 104px;
  max-height: calc(100vh - 126px);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid rgba(16,61,45,.14);
  border-radius: var(--radius-xl);
  background: #fff;
  box-shadow: var(--shadow);
}
.cart-head { min-height: 79px; display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 16px 18px; border-bottom: 1px solid var(--line); }
.cart-head h2 { margin: 0; color: var(--green); font-size: 23px; line-height: 1.1; }
.cart-head-actions { display: flex; align-items: center; gap: 7px; }
.close-cart { width: 48px; height: 48px; display: none; place-items: center; border: 1px solid var(--line); border-radius: 12px; background: #fff; color: var(--green); }
.cart-body { min-height: 180px; overflow-y: auto; padding: 12px 15px; scrollbar-width: thin; }
.empty-cart { min-height: 245px; display: grid; place-items: center; padding: 28px 14px; text-align: center; }
.empty-cart-visual { width: 84px; height: 84px; display: grid; place-items: center; margin: 0 auto 14px; border-radius: 26px; background: var(--mint); color: var(--green); }
.empty-cart-visual svg { width: 38px; height: 38px; }
.empty-cart h3 { margin: 0 0 5px; color: var(--green); font-size: 19px; }
.empty-cart p { margin: 0; color: var(--muted); font-size: 14px; }
.cart-item { display: grid; grid-template-columns: 54px minmax(0, 1fr) auto; gap: 10px; padding: 11px 0; border-bottom: 1px solid #edf0ed; }
.cart-item:last-child { border-bottom: 0; }
.cart-thumb { width: 54px; height: 58px; display: grid; place-items: center; overflow: hidden; border-radius: 12px; background: var(--mint); font-size: 27px; }
.cart-thumb img { width: 100%; height: 100%; object-fit: contain; padding: 4px; }
.cart-item-main { min-width: 0; }
.cart-item-name { display: -webkit-box; overflow: hidden; color: var(--ink); font-size: 14px; font-weight: 850; line-height: 1.3; -webkit-line-clamp: 2; -webkit-box-orient: vertical; }
.cart-item-meta { display: block; margin: 2px 0 8px; color: var(--muted); font-size: 12px; }
.cart-item-controls { display: flex; align-items: center; gap: 7px; }
.cart-item-controls .inline-qty { grid-template-columns: 44px 30px 44px; background: #fff; color: var(--green); }
.cart-item-controls .inline-qty button { width: 44px; height: 44px; color: var(--green); }
.remove-button { width: 44px; height: 44px; display: grid; place-items: center; border: 0; border-radius: 9px; background: transparent; color: var(--danger); }
.remove-button:hover { background: var(--danger-soft); }
.remove-button svg { width: 17px; height: 17px; }
.cart-item-price { padding-top: 3px; color: var(--green); font-size: 14px; font-weight: 900; white-space: nowrap; }
.cart-foot { padding: 14px 17px 17px; border-top: 1px solid var(--line); background: #fcfdfb; }
.weight-meter > span { display: flex; justify-content: space-between; gap: 8px; color: var(--muted); font-size: 12px; }
.weight-meter > span strong { color: var(--green); }
.weight-meter > div { height: 6px; margin: 6px 0 4px; overflow: hidden; border-radius: 99px; background: #e3e9e3; }
.weight-meter i { display: block; width: 0; height: 100%; border-radius: inherit; background: var(--lime-dark); transition: width .2s ease, background .2s ease; }
.weight-meter small { display: block; color: var(--muted); font-size: 12px; }
.coupon-row { display: grid; grid-template-columns: minmax(0,1fr) auto; gap: 7px; margin: 12px 0; }
.coupon-row input { min-height: 48px; padding: 0 11px; border: 1px solid var(--line); border-radius: 11px; color: var(--ink); font-size: 14px; text-transform: uppercase; }
.coupon-row button { min-height: 48px; padding: 0 14px; border: 1px solid var(--green-3); border-radius: 11px; background: #fff; color: var(--green); font-size: 14px; font-weight: 850; }
.cart-totals { display: grid; gap: 5px; padding: 11px 0; border-top: 1px dashed var(--line-strong); }
.cart-totals > span { display: flex; justify-content: space-between; color: var(--muted); font-size: 14px; }
.cart-totals .cart-grand { color: var(--ink); font-size: 17px; font-weight: 850; }
.cart-totals .cart-grand strong { color: var(--green); font-size: 21px; }
.cart-totals small { color: var(--muted); font-size: 12px; }
.primary-button, .secondary-button, .ghost-button, .danger-button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 19px;
  border-radius: 13px;
  font-size: 14px;
  font-weight: 900;
}
.primary-button { border: 1px solid var(--green); background: var(--green); color: #fff; box-shadow: 0 9px 20px rgba(16,61,45,.15); }
.primary-button:hover { background: #092f22; }
.primary-button svg { width: 19px; height: 19px; }
.secondary-button { border: 1px solid var(--green); background: var(--mint); color: var(--green); }
.secondary-button:hover { background: var(--mint-2); }
.ghost-button { border: 1px solid var(--line-strong); background: #fff; color: var(--green); }
.ghost-button:hover { border-color: var(--green-3); }
.danger-button { border: 1px solid #e5b8bb; background: var(--danger-soft); color: var(--danger); }
.checkout-button { width: 100%; }
.secure-note { display: flex; align-items: flex-start; gap: 7px; margin: 10px 2px 0; color: var(--muted); font-size: 12px; line-height: 1.4; }
.secure-note svg { width: 17px; height: 17px; flex: 0 0 auto; color: var(--success); }

.site-footer { padding: 30px 0 100px; border-top: 1px solid rgba(16,61,45,.12); background: #e9e8df; color: #536158; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 30px; }
.footer-grid > div { display: flex; flex-direction: column; align-items: flex-start; gap: 5px; }
.footer-grid strong { color: var(--green); }
.footer-grid span, .footer-grid a, .footer-grid button { font-size: 14px; }
.footer-grid button { padding: 0; border: 0; background: transparent; color: var(--green); font-weight: 800; }
.mobile-cart-bar { display: none; }
.page-shade { display: none; }

dialog {
  width: min(1120px, calc(100% - 34px));
  max-width: none;
  max-height: calc(100dvh - 34px);
  margin: auto;
  padding: 0;
  overflow: hidden;
  border: 0;
  border-radius: 25px;
  background: #fff;
  color: var(--ink);
  box-shadow: var(--shadow-strong);
}
dialog::backdrop { background: rgba(5, 20, 14, .62); backdrop-filter: blur(5px); }
dialog[open] { animation: dialog-in .18s ease both; }
@keyframes dialog-in { from { opacity: 0; transform: translateY(10px) scale(.985); } }
.dialog-shell { position: relative; max-height: calc(100dvh - 34px); overflow: auto; }
.dialog-close { position: sticky; z-index: 10; top: 14px; float: right; width: 44px; height: 44px; display: grid; place-items: center; margin: 14px 14px -58px 0; border: 1px solid var(--line); border-radius: 13px; background: rgba(255,255,255,.94); color: var(--green); box-shadow: 0 4px 12px rgba(17,43,31,.08); backdrop-filter: blur(8px); }
.dialog-close svg { width: 20px; height: 20px; }
.dialog-header { padding: 24px 76px 20px 26px; border-bottom: 1px solid var(--line); }
.dialog-header .eyebrow { margin-bottom: 5px; }
.dialog-header h2 { margin: 0; color: var(--green); font-size: clamp(23px, 3vw, 31px); line-height: 1.15; letter-spacing: -.025em; }
.dialog-header p:last-child { margin: 7px 0 0; color: var(--muted); }
.dialog-body { padding: 24px 26px 28px; }

.product-dialog-grid { display: grid; grid-template-columns: minmax(300px, .85fr) minmax(360px, 1.15fr); }
.product-dialog-visual { min-height: 580px; display: grid; place-items: center; padding: 30px; background: linear-gradient(145deg, var(--product-light, #dcebd8), #f7faf5); }
.product-dialog-visual img { width: min(100%, 420px); max-height: 500px; object-fit: contain; filter: drop-shadow(0 22px 24px rgba(17,43,31,.15)); }
.product-dialog-visual .product-emoji { font-size: clamp(100px, 15vw, 170px); }
.product-dialog-content { padding: 42px 38px 34px; }
.product-dialog-content h2 { margin: 7px 0 10px; color: var(--green); font-size: clamp(26px, 3vw, 38px); line-height: 1.13; letter-spacing: -.035em; }
.lead { color: var(--muted); font-size: 17px; }
.detail-badges { display: flex; flex-wrap: wrap; gap: 7px; margin: 17px 0; }
.detail-badges span { padding: 7px 10px; border-radius: 10px; background: var(--mint); color: var(--green); font-size: 13px; font-weight: 800; }
.detail-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 9px; margin: 18px 0; }
.detail-box { padding: 13px; border: 1px solid var(--line); border-radius: 13px; background: var(--surface-soft); }
.detail-box small, .detail-box strong { display: block; }
.detail-box small { color: var(--muted); font-size: 12px; }
.detail-box strong { margin-top: 3px; color: var(--green); font-size: 14px; }
.description-box { margin: 17px 0; padding: 16px 18px; border-radius: 15px; background: #f4f7f2; }
.description-box h3 { margin: 0 0 6px; color: var(--green); font-size: 16px; }
.description-box p { margin: 0; color: #536158; font-size: 14px; }
.description-box ul { margin: 10px 0 0; padding-left: 21px; color: #536158; font-size: 14px; }
.label-details { margin: 14px 0; border: 1px solid var(--line); border-radius: 14px; background: #fff; }
.label-details > summary { min-height: 48px; display: flex; align-items: center; padding: 10px 14px; color: var(--green); font-weight: 900; cursor: pointer; }
.label-details > div { display: grid; gap: 9px; padding: 0 14px 14px; }
.label-details p { margin: 0; padding-top: 9px; border-top: 1px solid var(--line); }
.label-details p strong, .label-details p span { display: block; }
.label-details p strong, .product-warnings > strong, .product-documents > strong { color: var(--green); font-size: 13px; }
.label-details p span, .product-warnings, .product-documents { color: var(--muted); font-size: 13px; }
.product-warnings ul { margin: 5px 0 0; padding-left: 20px; }
.product-documents { display: flex; flex-wrap: wrap; gap: 8px 12px; }
.product-documents > strong { width: 100%; }
.product-documents a { min-height: 44px; display: inline-flex; align-items: center; color: var(--green); font-weight: 850; text-underline-offset: 3px; }
.detail-buy { display: flex; align-items: center; justify-content: space-between; gap: 18px; margin-top: 22px; padding-top: 20px; border-top: 1px solid var(--line); }
.detail-price small, .detail-price strong { display: block; }
.detail-price small { color: var(--muted); font-size: 12px; }
.detail-price strong { color: var(--green); font-size: 29px; }
.detail-action-row { display: flex; align-items: center; gap: 9px; }
.quantity-picker { display: grid; grid-template-columns: 42px 48px 42px; min-height: 50px; overflow: hidden; border: 1px solid var(--line-strong); border-radius: 13px; }
.quantity-picker button { display: grid; place-items: center; border: 0; background: #fff; color: var(--green); }
.quantity-picker input { width: 48px; border: 0; border-inline: 1px solid var(--line); outline: 0; text-align: center; font-weight: 900; -moz-appearance: textfield; }
.quantity-picker input::-webkit-inner-spin-button { appearance: none; }

.checkout-progress { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; padding: 18px 76px 18px 24px; border-bottom: 1px solid var(--line); background: #f7faf5; }
.checkout-progress span { min-height: 42px; display: flex; align-items: center; justify-content: center; gap: 7px; border-radius: 11px; color: var(--muted); font-size: 13px; font-weight: 850; }
.checkout-progress b { width: 24px; height: 24px; display: grid; place-items: center; border-radius: 50%; background: #e5ebe5; font-size: 12px; }
.checkout-progress span.active { background: var(--green); color: #fff; }
.checkout-progress span.active b { background: var(--lime); color: var(--green); }
.checkout-progress span.done { background: var(--mint); color: var(--green); }
.checkout-progress span.done b { background: var(--green); color: #fff; }
.checkout-grid { display: grid; grid-template-columns: minmax(0, 1.35fr) minmax(300px, .65fr); align-items: start; }
.checkout-main { padding: 24px 27px 30px; }
.checkout-main h2 { margin: 0; color: var(--green); font-size: 27px; letter-spacing: -.025em; }
.checkout-lead { margin: 5px 0 20px; color: var(--muted); }
.checkout-summary { min-height: 500px; padding: 24px; border-left: 1px solid var(--line); background: #f7faf5; }
.checkout-summary h3 { margin: 0 0 15px; color: var(--green); font-size: 18px; }
.checkout-items { display: grid; gap: 10px; max-height: 270px; overflow-y: auto; }
.checkout-item { display: grid; grid-template-columns: 42px minmax(0, 1fr) auto; align-items: center; gap: 9px; }
.checkout-item .cart-thumb { width: 42px; height: 45px; font-size: 21px; }
.checkout-item-name { min-width: 0; overflow: hidden; font-size: 13px; font-weight: 800; text-overflow: ellipsis; white-space: nowrap; }
.checkout-item-name small { display: block; color: var(--muted); font-size: 12px; font-weight: 600; }
.checkout-item > strong { color: var(--green); font-size: 13px; }
.summary-lines { display: grid; gap: 7px; margin-top: 16px; padding-top: 15px; border-top: 1px solid var(--line); }
.summary-lines span { display: flex; justify-content: space-between; gap: 10px; color: var(--muted); font-size: 14px; }
.summary-lines span.total { margin-top: 3px; padding-top: 10px; border-top: 1px dashed var(--line-strong); color: var(--ink); font-size: 17px; font-weight: 900; }
.summary-lines span.total strong { color: var(--green); font-size: 21px; }
.form-section { margin-top: 22px; padding-top: 20px; border-top: 1px solid var(--line); }
.form-section-title { margin: 0 0 13px; color: var(--green); font-size: 17px; }
.required-note { margin: -7px 0 12px; color: var(--muted); font-size: 12px; }
.form-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 13px; }
.field { display: flex; flex-direction: column; min-width: 0; }
.field.full { grid-column: 1 / -1; }
.field label { margin-bottom: 5px; color: #435249; font-size: 14px; font-weight: 800; }
.field label small { color: var(--muted); font-weight: 600; }
.field input, .field select, .field textarea {
  width: 100%;
  min-height: 49px;
  padding: 10px 12px;
  border: 1px solid var(--line-strong);
  border-radius: 12px;
  background: #fff;
  color: var(--ink);
  font-size: 15px;
  outline: 0;
}
.field textarea { min-height: 88px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--green-2); box-shadow: var(--focus); }
.field input.invalid, .field select.invalid { border-color: var(--danger); background: var(--danger-soft); }
.field-error { display: none; margin-top: 5px; color: #8b2530; font-size: 14px; font-weight: 800; }
.field-error.visible { display: block; }
.field-help { margin-top: 4px; color: var(--muted); font-size: 12px; }
.choice-fieldset { min-width: 0; margin-inline: 0; padding-inline: 0; padding-bottom: 0; border-right: 0; border-bottom: 0; border-left: 0; }
.choice-fieldset legend { float: left; width: 100%; padding: 0; }
.choice-fieldset legend + * { clear: both; }
.choice-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 11px; }
.choice-card { position: relative; min-height: 118px; display: grid; grid-template-columns: auto 1fr auto; grid-template-rows: auto auto; align-items: center; column-gap: 10px; padding: 15px; border: 1px solid var(--line-strong); border-radius: 15px; background: #fff; text-align: left; }
.choice-card:hover { border-color: var(--green-3); }
.choice-card.active { border: 2px solid var(--green); padding: 14px; background: var(--mint); }
.choice-card.unavailable { cursor: not-allowed; opacity: .72; }
.choice-icon { width: 43px; height: 43px; display: grid; grid-row: 1 / 3; place-items: center; border-radius: 12px; background: #eef4eb; color: var(--green); }
.choice-card strong { align-self: end; color: var(--green); font-size: 15px; }
.choice-card > span:nth-of-type(2) { align-self: start; color: var(--muted); font-size: 12px; }
.choice-kind { display: block; margin-bottom: 2px; color: var(--green-3); font-size: 11px; font-weight: 900; letter-spacing: .025em; text-transform: uppercase; }
.choice-detail { display: block; margin-top: 2px; color: var(--muted); font-size: 11px; }
.choice-price { grid-row: 1 / 3; grid-column: 3; color: var(--green); font-size: 13px; font-weight: 900; text-align: right; }
.choice-card.active .choice-icon { background: var(--green); color: #fff; }
.choice-reason { display: block; margin-top: 4px; color: var(--danger); font-size: 12px; }
.loading-line { min-height: 46px; display: flex; align-items: center; gap: 9px; margin: 0 0 10px; padding: 9px 12px; border-radius: 11px; background: var(--info-soft); color: var(--info); font-size: 13px; font-weight: 800; }
.mini-spinner { width: 19px; height: 19px; flex: 0 0 auto; border: 3px solid #b9d9eb; border-top-color: var(--info); border-radius: 50%; animation: spin .8s linear infinite; }
.pickup-info, .notice-box { display: flex; align-items: flex-start; gap: 11px; padding: 14px; border-radius: 14px; background: var(--mint); color: var(--green); }
.pickup-info svg, .notice-box svg { flex: 0 0 auto; margin-top: 1px; }
.pickup-info strong, .pickup-info span { display: block; }
.pickup-info span { font-size: 13px; }
.pickup-point-grid { display: grid; gap: 8px; }
.pickup-point { min-height: 68px; display: grid; grid-template-columns: 34px minmax(0,1fr); align-items: center; gap: 2px 9px; padding: 10px 12px; border: 1px solid var(--line-strong); border-radius: 12px; background: #fff; text-align: left; }
.pickup-point > span { grid-row: 1 / 3; font-size: 22px; }
.pickup-point strong, .pickup-point small { display: block; min-width: 0; }
.pickup-point strong { color: var(--green); font-size: 14px; }
.pickup-point small { overflow: hidden; color: var(--muted); font-size: 12px; text-overflow: ellipsis; white-space: nowrap; }
.pickup-point.active { border: 2px solid var(--green); padding: 9px 11px; background: var(--mint); }
#pickupPointGroup.invalid { padding: 8px; border: 2px solid var(--danger); border-radius: 13px; background: var(--danger-soft); }
#pickupPointGroup .field-error { margin: 7px 3px 2px; }
.empty-inline { margin: 0; padding: 13px; border-radius: 11px; background: var(--warning); color: var(--warning-ink); font-size: 13px; }
.notice-box { margin: 14px 0; background: var(--info-soft); color: var(--info); font-size: 13px; }
.checkbox-row { display: grid; grid-template-columns: auto 1fr; gap: 10px; align-items: start; margin-top: 17px; padding: 12px; border: 1px solid transparent; border-radius: 12px; }
.checkbox-row.invalid { border-color: #e3aab0; background: var(--danger-soft); }
.checkbox-row input { width: 24px; height: 24px; margin: 0; accent-color: var(--green); }
.checkbox-row label { color: #48574e; font-size: 13px; }
.checkbox-row .field-error { grid-column: 2; margin-top: 0; }
.checkbox-row .field-help { grid-column: 2; margin-top: -4px; }
.checkout-actions { display: flex; justify-content: space-between; gap: 10px; margin-top: 24px; }
.checkout-actions .primary-button { margin-left: auto; }
.payment-note { margin-top: 16px; padding: 15px; border: 1px solid #ead18e; border-radius: 14px; background: var(--warning); color: var(--warning-ink); font-size: 13px; }
.review-sections { display: grid; gap: 12px; }
.review-box { padding: 16px; border: 1px solid var(--line); border-radius: 14px; background: #fff; }
.review-box h3 { margin: 0 0 7px; color: var(--green); font-size: 15px; }
.review-box p { margin: 0; color: #526058; font-size: 14px; }
.legal-summary { margin-top: 14px; padding: 16px; border: 1px solid var(--line); border-radius: 15px; background: var(--surface-soft); }
.legal-summary > h3 { margin: 0 0 12px; color: var(--green); font-size: 17px; }
.legal-facts { display: grid; gap: 9px; }
.legal-facts > div { padding: 12px; border: 1px solid var(--line); border-radius: 12px; background: #fff; }
.legal-facts small, .legal-facts strong, .legal-facts span { display: block; }
.legal-facts small { color: var(--muted); font-size: 11px; font-weight: 800; text-transform: uppercase; }
.legal-facts strong { margin-top: 2px; color: var(--green); font-size: 14px; }
.legal-facts span { margin-top: 3px; color: var(--muted); font-size: 12px; }
.legal-documents { margin-top: 14px; }
.legal-documents h4 { margin: 0 0 7px; color: var(--green); font-size: 14px; }
.legal-documents ul { display: grid; gap: 7px; margin: 0; padding: 0; list-style: none; }
.legal-documents li { padding: 10px 12px; border: 1px solid var(--line); border-radius: 11px; background: #fff; }
.legal-documents li > a, .legal-documents li > strong { color: var(--green); font-size: 13px; font-weight: 900; text-underline-offset: 3px; }
.legal-documents li > small { margin-left: 7px; color: var(--muted); font-size: 11px; }
.legal-documents li > span { display: block; margin-top: 3px; color: var(--muted); font-size: 12px; }
.missing-legal { margin: 0; color: var(--danger); font-size: 13px; font-weight: 800; }
.readiness-panel { margin-top: 14px; padding: 14px 15px; border-radius: 13px; }
.readiness-panel strong, .readiness-panel span { display: block; }
.readiness-panel strong { font-size: 15px; }
.readiness-panel span { margin-top: 3px; font-size: 13px; }
.readiness-panel ul { margin: 6px 0 0; padding-left: 20px; font-size: 13px; }
.readiness-panel button { margin-top: 10px; }
.readiness-panel.ready { border: 1px solid #a9d7b6; background: var(--success-soft); color: var(--success); }
.readiness-panel.blocked { border: 1px solid #e3c678; background: var(--warning); color: var(--warning-ink); }
.processing { min-height: 520px; display: grid; place-items: center; padding: 40px; text-align: center; }
.spinner { width: 62px; height: 62px; margin: 0 auto 18px; border: 6px solid var(--mint-2); border-top-color: var(--green); border-radius: 50%; animation: spin .8s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }
.processing h2 { margin: 0; color: var(--green); font-size: 28px; }
.processing p { color: var(--muted); }
.success-view { padding: 52px 30px; text-align: center; }
.success-check { width: 82px; height: 82px; display: grid; place-items: center; margin: 0 auto 18px; border-radius: 50%; background: var(--success-soft); color: var(--success); }
.success-check svg { width: 42px; height: 42px; stroke-width: 2.6; }
.success-view h2 { margin: 0; color: var(--green); font-size: clamp(27px, 4vw, 38px); }
.success-view > p { max-width: 650px; margin: 8px auto; color: var(--muted); }
.order-number { display: inline-block; margin: 15px 0; padding: 10px 15px; border-radius: 11px; background: var(--green); color: #fff; font-weight: 900; letter-spacing: .03em; }
.success-cards { max-width: 760px; display: grid; grid-template-columns: repeat(3,1fr); gap: 10px; margin: 17px auto; }
.success-cards div { padding: 14px; border: 1px solid var(--line); border-radius: 13px; background: var(--surface-soft); }
.success-cards small, .success-cards strong { display: block; }
.success-cards small { color: var(--muted); font-size: 12px; }
.success-cards strong { margin-top: 4px; color: var(--green); font-size: 14px; }
.success-actions { display: flex; justify-content: center; flex-wrap: wrap; gap: 9px; margin-top: 20px; }
.payment-confirmed { max-width: 620px; margin: 16px auto 0; text-align: left; }
.payment-confirmed strong, .payment-confirmed span { display: block; }
.payment-confirmed span span { margin-top: 2px; color: var(--muted); }
.payment-result { max-width: 620px; margin: 16px auto 0; text-align: left; }
.guest-order-key { max-width: 620px; margin: 16px auto 0; text-align: left; }
.guest-order-key > span, .guest-order-key strong { display: block; }
.guest-order-key span span { margin-top: 3px; color: var(--muted); }
.guest-order-key button { margin-top: 10px; }
.payment-simulator-head { background: linear-gradient(135deg, var(--green), #174f3e); color: #fff; }
.payment-simulator-head .eyebrow, .payment-simulator-head h2, .payment-simulator-head p { color: #fff; }
.payment-simulator-card { max-width: 650px; margin: 0 auto; padding: 26px; border: 1px solid var(--line); border-radius: 20px; background: var(--surface-soft); text-align: center; box-shadow: var(--shadow-soft); }
.simulator-mark { width: 68px; height: 68px; display: grid; place-items: center; margin: 0 auto 13px; border-radius: 20px; background: var(--mint-2); font-size: 36px; }
.payment-simulator-card h3 { margin: 15px 0 5px; color: var(--green); font-size: 24px; }
.payment-simulator-card > p { max-width: 530px; margin: 0 auto; color: var(--muted); font-size: 14px; }
.simulator-amount { display: flex; align-items: baseline; justify-content: center; gap: 7px; margin: 20px 0; padding: 17px; border-radius: 14px; background: #fff; }
.simulator-amount small { color: var(--muted); }
.simulator-amount strong { color: var(--green); font-size: 30px; }
.simulator-amount span { color: var(--muted); font-size: 13px; font-weight: 850; }
.simulator-actions { display: flex; justify-content: center; flex-wrap: wrap; gap: 9px; }

.account-tabs-row { display: flex; align-items: center; gap: 10px; padding-right: 20px; border-bottom: 1px solid var(--line); }
.tabs { min-width: 0; display: flex; flex: 1; gap: 7px; padding: 0 0 0 26px; overflow-x: auto; }
.tabs button { min-height: 49px; flex: 0 0 auto; padding: 0 14px; border: 0; border-bottom: 3px solid transparent; background: transparent; color: var(--muted); font-size: 14px; font-weight: 850; }
.tabs button.active { border-bottom-color: var(--green); color: var(--green); }
.account-logout { min-height: 44px; padding: 0 10px; border: 0; border-radius: 10px; background: transparent; color: var(--danger); font-size: 14px; font-weight: 850; }
.account-logout:hover { background: var(--danger-soft); }
.auth-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.auth-card { padding: 20px; border: 1px solid var(--line); border-radius: 16px; background: var(--surface-soft); }
.auth-card h3 { margin: 0 0 6px; color: var(--green); }
.auth-card > p { margin: 0 0 16px; color: var(--muted); font-size: 14px; }
.auth-card form { display: grid; gap: 12px; }
.auth-card .primary-button { width: 100%; margin-top: 4px; }
.auth-help-actions { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 7px; }
.auth-help-actions button { min-height: 44px; padding: 8px 2px; border: 0; background: transparent; color: var(--green); font-size: 13px; font-weight: 850; text-decoration: underline; text-underline-offset: 3px; }
.verification-card { max-width: 650px; margin: 18px auto 0; }
.verification-actions { display: flex; justify-content: center; flex-wrap: wrap; gap: 8px; margin-top: 12px; }
.verification-notice { max-width: 650px; margin: 0 auto 12px; }
.verification-notice strong, .verification-notice span { display: block; }
.verification-notice span span { margin-top: 2px; color: var(--muted); }
.token-recognized { display: flex; align-items: center; gap: 11px; padding: 12px; border: 1px solid #a9d7b6; border-radius: 12px; background: var(--success-soft); color: var(--success); }
.token-recognized > span:first-child { width: 27px; height: 27px; display: grid; flex: 0 0 auto; place-items: center; border-radius: 50%; background: var(--success); color: #fff; font-weight: 950; }
.token-recognized strong, .token-recognized small { display: block; }
.token-recognized small { margin-top: 2px; color: var(--muted); }
.magic-confirm { margin-top: 16px; text-align: center; }
.magic-confirm p { color: var(--muted); font-size: 14px; }
.magic-confirm .primary-button { width: 100%; }
.account-header { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 16px; border-radius: 15px; background: var(--mint); }
.account-header strong, .account-header span { display: block; }
.account-header strong { color: var(--green); font-size: 19px; }
.account-header span { color: var(--muted); font-size: 13px; }
.orders-list { display: grid; gap: 10px; }
.order-card { padding: 15px; border: 1px solid var(--line); border-radius: 14px; background: #fff; }
.order-card-head { display: flex; justify-content: space-between; gap: 12px; }
.order-card strong { color: var(--green); }
.order-card small { color: var(--muted); }
.order-card-meta { display: flex; flex-wrap: wrap; gap: 7px; margin: 10px 0; }
.status-pill { display: inline-flex; align-items: center; padding: 5px 8px; border-radius: 999px; background: var(--warning); color: var(--warning-ink); font-size: 12px; font-weight: 850; }
.status-pill.success { background: var(--success-soft); color: var(--success); }
.status-pill.danger { background: var(--danger-soft); color: var(--danger); }
.status-timeline { position: relative; display: grid; gap: 0; margin-top: 17px; }
.timeline-row { position: relative; display: grid; grid-template-columns: 31px 1fr; gap: 10px; min-height: 63px; }
.timeline-row::before { content: ""; position: absolute; left: 14px; top: 26px; bottom: -2px; width: 2px; background: var(--line); }
.timeline-row:last-child::before { display: none; }
.timeline-dot { width: 29px; height: 29px; display: grid; place-items: center; z-index: 1; border: 2px solid var(--line-strong); border-radius: 50%; background: #fff; color: var(--muted); font-size: 12px; font-weight: 900; }
.timeline-row.done .timeline-dot { border-color: var(--green); background: var(--green); color: #fff; }
.timeline-copy strong, .timeline-copy small { display: block; }
.timeline-copy strong { color: var(--ink); font-size: 14px; }
.timeline-copy small { color: var(--muted); font-size: 12px; }
.help-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 13px; }
.help-card { min-height: 130px; display: flex; flex-direction: column; align-items: flex-start; padding: 18px; border: 1px solid var(--line); border-radius: 15px; background: var(--surface-soft); }
.help-card svg { color: var(--green); }
.help-card strong { margin-top: 12px; color: var(--green); }
.help-card span { color: var(--muted); font-size: 13px; }
.help-card button, .help-card a { min-height: 44px; display: inline-flex; align-items: center; margin-top: auto; padding: 8px 2px; border: 0; background: transparent; color: var(--green); font-size: 13px; font-weight: 900; text-decoration: none; }
.error-panel { padding: 16px; border: 1px solid #e4b4b8; border-radius: 14px; background: var(--danger-soft); color: var(--danger); }
.error-panel strong, .error-panel span { display: block; }
.error-panel span { margin-top: 4px; font-size: 13px; }
.error-panel button { margin-top: 12px; }
.error-panel .inline-actions { display: flex; flex-wrap: wrap; gap: 8px; }
.promotion-summary { margin-top: 13px; padding: 10px 12px; border-radius: 11px; background: var(--success-soft); color: var(--success); font-size: 12px; }
.promotion-summary ul { margin: 4px 0 0; padding-left: 18px; }
.tax-summary { margin-top: 12px; overflow-x: auto; border-top: 1px solid var(--line); }
.tax-summary summary { min-height: 44px; display: flex; align-items: center; color: var(--green); font-size: 13px; font-weight: 900; cursor: pointer; }
.tax-table { min-width: 360px; display: grid; gap: 4px; padding-bottom: 7px; }
.tax-table > div { display: grid; grid-template-columns: .6fr repeat(3, 1fr); gap: 7px; font-size: 11px; text-align: right; }
.tax-table > div > :first-child { text-align: left; }
.tax-table b { color: var(--muted); }
.summary-meta { margin: 10px 0 0; color: var(--muted); font-size: 12px; }
.summary-meta strong { color: var(--ink); }

.return-section { display: grid; gap: 13px; }
.return-section-head { display: flex; align-items: flex-start; justify-content: space-between; gap: 16px; }
.return-section-head h3 { margin-bottom: 3px; }
.return-section-head p, .return-empty { margin: 0; color: var(--muted); font-size: 13px; }
.return-section-head .secondary-button { flex: 0 0 auto; }
.return-list .order-card-head { align-items: center; }
.return-lines { display: grid; gap: 9px; margin: 0; padding: 0; border: 0; }
.return-lines legend { margin-bottom: 9px; color: var(--green); font-size: 15px; font-weight: 900; }
.return-line { display: grid; grid-template-columns: auto minmax(0,1fr) auto; align-items: center; gap: 12px; padding: 13px; border: 1px solid var(--line); border-radius: 13px; background: #fff; }
.return-line > input { width: 24px; height: 24px; accent-color: var(--green); }
.return-line strong, .return-line small { display: block; }
.return-line strong { color: var(--ink); }
.return-line small { margin-top: 2px; color: var(--muted); }
.return-quantity { display: grid; grid-template-columns: auto 72px; align-items: center; gap: 7px; color: var(--muted); font-size: 12px; }
.return-quantity input { width: 76px; min-height: 48px; padding: 7px; border: 1px solid var(--line-strong); border-radius: 10px; text-align: center; }
.return-summary-grid { display: grid; grid-template-columns: repeat(4,minmax(0,1fr)); gap: 9px; margin-bottom: 14px; }
.return-summary-grid > div { padding: 13px; border: 1px solid var(--line); border-radius: 13px; background: var(--surface-soft); }
.return-summary-grid small, .return-summary-grid strong { display: block; }
.return-summary-grid small { color: var(--muted); font-size: 12px; }
.return-summary-grid strong { margin-top: 3px; color: var(--green); font-size: 15px; }

.toast-stack { position: fixed; right: 18px; bottom: 20px; z-index: 160; display: grid; gap: 9px; pointer-events: none; }
.toast { width: min(390px, calc(100vw - 36px)); display: grid; grid-template-columns: auto 1fr; gap: 10px; padding: 13px 15px; border: 1px solid rgba(16,61,45,.16); border-radius: 14px; background: #fff; color: var(--ink); box-shadow: 0 16px 38px rgba(8,31,22,.2); animation: toast-in .2s ease both; pointer-events: auto; }
.toast::before { content: "✓"; width: 24px; height: 24px; display: grid; place-items: center; border-radius: 50%; background: var(--success-soft); color: var(--success); font-size: 13px; font-weight: 1000; }
.toast.error::before { content: "!"; background: var(--danger-soft); color: var(--danger); }
.toast.warning::before { content: "i"; background: var(--warning); color: var(--warning-ink); }
.toast strong, .toast span { display: block; }
.toast strong { font-size: 14px; }
.toast span { color: var(--muted); font-size: 12px; }
@keyframes toast-in { from { opacity: 0; transform: translateY(8px); } }
.noscript { padding: 18px; background: var(--danger-soft); color: var(--danger); font-weight: 800; text-align: center; }

@media (max-width: 1260px) {
  .header-row { grid-template-columns: 175px minmax(390px, 1fr) auto; gap: 14px; }
  .brand-copy small { display: none; }
  .main-nav { grid-template-columns: repeat(3, minmax(120px, 1fr)); }
  .icon-button span { display: none; }
  .status-button span { display: none; }
  .shop-layout { grid-template-columns: minmax(0,1fr) 350px; gap: 18px; }
  .audience-list { grid-template-columns: repeat(5, minmax(0,1fr)); }
  .product-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .service-strip { grid-template-columns: repeat(2,1fr); }
  .service-strip > button { grid-column: 1 / -1; min-height: 48px; }
}

@media (max-width: 960px) {
  .shell { width: min(100% - 28px, 760px); }
  .header-row { min-height: 70px; grid-template-columns: 1fr auto; }
  .brand-mark { width: 42px; height: 42px; }
  .brand-copy small { display: block; }
  .main-nav { display: none; }
  .header-actions .cart-button { display: none; }
  .icon-button { width: 45px; min-height: 45px; padding: 0; }
  .mobile-nav { display: grid; grid-template-columns: repeat(3,1fr); gap: 7px; padding: 7px 14px 9px; overflow-x: auto; }
  .mobile-nav button { min-height: 48px; border: 1px solid var(--line); border-radius: 12px; background: #fff; color: #4e5c53; font-size: 14px; font-weight: 850; white-space: nowrap; }
  .mobile-nav button.active { border-color: var(--green); background: var(--green); color: #fff; }
  main { padding-top: 15px; }
  .purchase-progress { margin-bottom: 14px; }
  .service-strip { grid-template-columns: 1fr 1fr; }
  .service-strip > div:nth-child(4) { display: none; }
  .service-strip > button { grid-column: auto; min-width: 0; }
  .shop-layout { display: block; }
  .cart-panel { position: fixed; z-index: 120; top: 0; right: 0; bottom: 0; width: min(430px, calc(100% - 24px)); max-height: none; border-radius: 25px 0 0 25px; transform: translateX(105%); transition: transform .22s ease; box-shadow: var(--shadow-strong); }
  body.cart-open .cart-panel { transform: translateX(0); }
  .close-cart { display: grid; }
  .page-shade { position: fixed; z-index: 110; inset: 0; width: 100%; height: 100%; border: 0; background: rgba(5,20,14,.55); opacity: 0; pointer-events: none; transition: opacity .2s ease; }
  body.cart-open .page-shade { display: block; opacity: 1; pointer-events: auto; }
  .mobile-cart-bar { position: fixed; z-index: 90; left: 50%; bottom: max(11px, env(safe-area-inset-bottom)); width: min(680px, calc(100% - 24px)); min-height: 64px; display: flex; align-items: center; justify-content: space-between; gap: 15px; padding: 8px 13px 8px 17px; border: 1px solid rgba(255,255,255,.18); border-radius: 18px; background: var(--green); color: #fff; box-shadow: 0 14px 34px rgba(8,31,22,.3); transform: translateX(-50%); }
  .mobile-cart-bar > span { display: flex; flex-direction: column; align-items: flex-start; }
  .mobile-cart-bar > span:last-child { flex-direction: row; align-items: center; gap: 6px; }
  .mobile-cart-bar strong, .mobile-cart-bar b { font-size: 15px; }
  .mobile-cart-bar small { color: rgba(255,255,255,.7); font-size: 12px; }
  .mobile-cart-bar svg { width: 20px; height: 20px; }
  .site-footer { padding-bottom: 115px; }
  .product-dialog-grid { grid-template-columns: 1fr; }
  .product-dialog-visual { min-height: 280px; max-height: 38vh; }
  .product-dialog-content { padding: 27px 24px; }
  .checkout-grid { grid-template-columns: 1fr; }
  .checkout-summary { min-height: 0; border-top: 1px solid var(--line); border-left: 0; }
}

@media (max-width: 680px) {
  .shell { width: calc(100% - 20px); }
  .brand-copy strong { font-size: 19px; }
  .brand-copy small { font-size: 11px; }
  .purchase-progress { grid-template-columns: 1fr 20px 1fr 20px 1fr; gap: 2px; }
  .purchase-progress li { min-height: 46px; gap: 5px; font-size: 12px; }
  .purchase-progress b { width: 25px; height: 25px; }
  .service-strip { display: flex; overflow-x: auto; scroll-snap-type: x mandatory; }
  .service-strip > div, .service-strip > button { min-width: 78%; min-height: 65px; scroll-snap-align: start; }
  .mode-banner { grid-template-columns: auto 1fr; }
  .mode-banner button { grid-column: 1 / -1; }
  .filter-panel, .catalog-panel { padding: 16px; border-radius: 20px; }
  .section-symbol { width: 43px; height: 43px; }
  .section-heading h1, .section-heading h2 { font-size: 21px; }
  .audience-list { display: flex; margin-inline: -2px; padding: 2px 2px 7px; overflow-x: auto; }
  .audience-chip { min-width: 115px; min-height: 53px; flex: 0 0 auto; }
  .catalog-head { grid-template-columns: 1fr; gap: 14px; }
  .search-box { min-height: 50px; }
  .results-toolbar { align-items: flex-end; }
  .results-toolbar label { flex-direction: column; align-items: flex-end; gap: 3px; }
  .results-toolbar label > select { max-width: 172px; }
  .product-grid { grid-template-columns: 1fr; }
  .product-card { display: grid; grid-template-columns: 122px minmax(0,1fr); min-height: 210px; }
  .product-visual { height: 100%; aspect-ratio: auto; }
  .product-emoji { font-size: 49px; }
  .visual-label { left: 7px; right: 7px; bottom: 8px; overflow: hidden; text-align: center; text-overflow: ellipsis; white-space: nowrap; }
  .stock-badge { top: 7px; right: 7px; padding: 4px 6px; }
  .product-content { min-height: 0; padding: 12px; }
  .product-name-button { min-height: 45px; font-size: 15px; }
  .product-buy { grid-template-columns: 1fr; align-items: stretch; }
  .add-button, .inline-qty { width: 100%; }
  .inline-qty { grid-template-columns: 1fr 34px 1fr; }
  .inline-qty button { width: auto; }
  .site-footer { padding-top: 24px; }
  .footer-grid { grid-template-columns: 1fr; gap: 18px; }
  dialog { width: 100%; max-height: 96dvh; margin: auto 0 0; border-radius: 24px 24px 0 0; }
  .dialog-shell { max-height: 96dvh; }
  .dialog-header { padding: 22px 67px 16px 18px; }
  .dialog-body { padding: 18px; }
  .product-dialog-visual { min-height: 225px; }
  .product-dialog-content { padding: 23px 18px; }
  .product-dialog-content h2 { font-size: 25px; }
  .detail-grid { grid-template-columns: 1fr 1fr; }
  .detail-grid .detail-box:last-child { grid-column: 1 / -1; }
  .detail-buy { align-items: stretch; flex-direction: column; }
  .detail-action-row { display: grid; grid-template-columns: 1fr; }
  .quantity-picker { grid-template-columns: 1fr 58px 1fr; }
  .checkout-progress { grid-template-columns: repeat(4, minmax(0,1fr)); gap: 4px; padding: 14px 65px 14px 10px; }
  .checkout-progress span { min-height: 37px; padding: 0 3px; font-size: 11px; }
  .checkout-progress b { display: none; }
  .checkout-main, .checkout-summary { padding: 18px; }
  .checkout-main h2 { font-size: 23px; }
  .choice-grid, .form-grid, .auth-grid, .help-grid { grid-template-columns: 1fr; }
  .checkout-actions { flex-direction: column-reverse; }
  .checkout-actions button { width: 100%; }
  .success-view { padding: 42px 18px; }
  .success-cards { grid-template-columns: 1fr; }
  .tabs { padding-inline: 16px; }
  .return-section-head { align-items: stretch; flex-direction: column; }
  .return-line { grid-template-columns: auto minmax(0,1fr); }
  .return-quantity { grid-column: 2; justify-content: start; }
  .return-summary-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 410px) {
  .brand-copy small { display: none; }
  .header-actions { gap: 5px; }
  .mobile-nav { padding-inline: 9px; }
  .mobile-nav button { font-size: 12px; }
  .purchase-progress li span { display: none; }
  .purchase-progress li { min-height: 39px; }
  .product-card { grid-template-columns: 105px minmax(0,1fr); }
  .product-meta span:nth-child(n+2) { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}

@media (forced-colors: active) {
  :focus-visible { outline: 3px solid Highlight; box-shadow: none; }
  .nav-item.active, .audience-chip.active, .choice-card.active, .pickup-point.active, .cart-button, .primary-button { border: 2px solid ButtonText; }
  .field input.invalid, .field select.invalid, .checkbox-row.invalid { border: 3px solid Mark; }
  .readiness-panel { border: 2px solid CanvasText; }
}

@media print {
  .site-header, .purchase-progress, .service-strip, .mode-banner, .catalog-column, .cart-panel, .mobile-cart-bar, .page-shade, .dialog-close, .checkout-progress, .success-actions, .site-footer { display: none !important; }
  body { background: #fff; }
  dialog[open] { position: static; display: block; width: 100%; max-height: none; box-shadow: none; }
  dialog::backdrop { display: none; }
  .dialog-shell { max-height: none; overflow: visible; }
}

/* One-page storefront, September 2026. The cart is a normal full-width region. */
.shop-layout { display: grid; grid-template-columns: minmax(0, 1fr); gap: 26px; }
.catalog-column { width: 100%; }
.cart-panel { position: static; display: block; width: 100%; max-height: none; border-radius: var(--radius-xl); transform: none; overflow: hidden; z-index: auto; box-shadow: var(--shadow); scroll-margin-top: 105px; }
.cart-body { max-height: none; overflow: visible; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0 26px; padding: 8px 26px; }
.empty-cart { grid-column: 1 / -1; min-height: 180px; }
.cart-foot { display: grid; grid-template-columns: 1fr 1fr; gap: 12px 36px; padding: 22px 26px; }
.cart-foot .weight-meter { grid-column: 1; }
.cart-foot .coupon-row { grid-column: 1; }
.cart-foot .cart-totals { grid-column: 2; grid-row: 1 / 3; align-self: center; }
.cart-foot .checkout-button { width: fit-content; }
.cart-foot .secure-note { align-self: center; }
.close-cart, .page-shade { display: none !important; }
body.cart-open { overflow: auto; }
.checkout-content { scroll-margin-top: 110px; border-top: 1px solid var(--line); }
.checkout-content .checkout-grid { grid-template-columns: minmax(0, 1fr) 340px; }
.checkout-content .checkout-main { padding: 30px; min-width: 0; }
.checkout-content .checkout-summary { position: sticky; top: 100px; min-height: 0; border-radius: 0; }
.checkout-content[data-step="1"] .checkout-items { display: none; }
.checkout-content .contact-grid { grid-template-columns: 1fr 1fr; }
.checkout-content .contact-grid .full { grid-column: auto; }
.checkout-content .field input, .checkout-content .field select { min-height: 48px; width: 100%; font-size: 16px; }
.checkout-content .field select { padding: 12px; border: 1px solid var(--line-strong); background: white; border-radius: 12px; color: var(--ink); }
.checkout-content .field select:disabled { background: var(--surface-soft); }
.check-option { display: flex; align-items: flex-start; gap: 12px; min-height: 48px; cursor: pointer; padding: 12px 0; font-weight: 600; }
.check-option input { width: 22px; height: 22px; min-width: 22px; margin: 2px 0 0; accent-color: var(--green); }
.check-option small { display: block; margin-top: 5px; font-size: 13px; font-weight: 400; line-height: 1.6; color: var(--muted); }
.nip-row { display: flex; align-items: flex-end; gap: 12px; flex-wrap: wrap; }
.nip-row .field { flex: 1; min-width: 170px; }
.nip-row button { min-height: 48px; margin-bottom: 4px; }
.invoice-fields { margin-top: 14px; }
.postal-lookup { max-width: 320px; margin: 18px 0 26px; }
.text-button { display: inline; padding: 7px 0; color: var(--green); font: inherit; background: transparent; border: none; text-decoration: underline; text-underline-offset: 3px; }
.field-hint, .assistance-status { font-size: 13px; line-height: 1.6; color: var(--muted); overflow-wrap: anywhere; }
.assistance-status:empty { display: none; }
.address-tools { display: flex; gap: 20px; flex-wrap: wrap; margin-top: 10px; font-size: 13px; }
.remember-choice { border-radius: 14px; background: var(--mint); padding: 15px; }
.store-information { padding: 30px; }
.store-information details { padding: 14px 0; border-top: 1px solid var(--line); }
.legal-document { white-space: pre-wrap; overflow-wrap: anywhere; margin-top: 20px; font-size: 15px; }

/* The same banners work on mobile and desktop, without external assets. */
.service-slider { position: relative; margin: 26px 0; border-radius: 26px; overflow: hidden; color: white; background: var(--green); }
.service-slide { position: relative; display: grid; grid-template-columns: minmax(0, 1.6fr) 1fr; align-items: center; min-height: 298px; padding: 38px 48px 78px; gap: 32px; background: radial-gradient(ellipse at 85% 10%, #367651 0, transparent 60%); }
.slide-eyebrow { color: #b4e99e; letter-spacing: .15em; font-size: 11px; font-weight: 700; margin: 0 0 12px; }
.slide-copy h2 { margin: 0; font-size: clamp(26px, 3.1vw, 42px); line-height: 1.14; letter-spacing: -.035em; font-weight: 750; color: white; }
.slide-copy > p:not(.slide-eyebrow) { max-width: 560px; color: #deebdf; font-size: 15px; line-height: 1.55; margin: 15px 0; }
.slide-link { display: inline-flex; align-items: center; gap: 18px; min-height: 44px; color: var(--lime); font-weight: 700; text-underline-offset: 5px; }
.slide-visual { display: flex; align-items: center; justify-content: center; color: #bbf795; font-size: clamp(86px, 10vw, 142px); letter-spacing: -.1em; font-weight: 800; transform: rotate(-7deg); text-shadow: 0 8px 32px #082d24; }
.slide-visual span { font-size: .42em; letter-spacing: -.04em; }
.slide-visual svg { width: 170px; height: 170px; stroke: currentColor; stroke-width: 1; fill: none; }
.slider-controls { position: absolute; bottom: 18px; left: 48px; right: 36px; display: flex; align-items: center; justify-content: space-between; gap: 15px; }
.slider-dots { display: flex; align-items: center; }
.slider-dots button { display: grid; place-items: center; width: 38px; height: 44px; padding: 0; border: 0; background: transparent; }
.slider-dots button::after { content: ''; width: 7px; height: 7px; border: 1px solid #b0c6b9; border-radius: 50%; background: transparent; }
.slider-dots button[aria-pressed="true"]::after { width: 23px; border-radius: 5px; border-color: var(--lime); background: var(--lime); }
.slider-navigation { display: flex; align-items: center; gap: 8px; }
.slider-navigation span { font-size: 12px; font-variant-numeric: tabular-nums; margin-right: 10px; color: #d7ead7; }
.slider-navigation button { min-width: 44px; min-height: 44px; border: 1px solid #708c7d; border-radius: 11px; color: white; background: #ffffff08; font-size: 18px; }
.slider-navigation [data-slide-pause] { font-size: 12px; padding: 0 10px; }

.cookie-banner { position: fixed; z-index: 140; left: 20px; right: 20px; bottom: 20px; margin: auto; max-width: 960px; padding: 22px 26px; border: 1px solid var(--line-strong); border-radius: 20px; background: white; box-shadow: var(--shadow-strong); }
.cookie-banner h2 { margin: 0 0 6px; color: var(--green); font-size: 19px; }
.cookie-banner p { margin: 5px 0 12px; font-size: 14px; line-height: 1.55; }
.cookie-actions { display: flex; gap: 10px; flex-wrap: wrap; align-items: center; }
.cookie-actions .secondary-button { flex: 1; justify-content: center; min-height: 46px; border: 1px solid var(--green); color: var(--green); background: white; font-size: 14px; font-weight: 650; }
.cookie-actions .text-button { min-width: 100px; text-align: center; }
.cookie-dialog { max-width: 760px; width: calc(100% - 30px); max-height: 90svh; overflow-y: auto; padding: 0; border: 0; border-radius: 22px; color: var(--ink); }
.privacy-dialog-content { padding: 30px; }
.privacy-dialog-content p, .cookie-list { font-size: 14px; line-height: 1.65; }
.privacy-close { float: right; margin-left: 15px; }
.cookie-list dt { font-weight: 700; margin-top: 14px; }
.cookie-list dd { margin: 3px 0 0; color: var(--muted); }
.cookie-status { color: var(--green); font-size: 13px; }
.cookie-status:empty { display: none; }
[hidden] { display: none !important; }

@media (max-width: 960px) {
  .cart-panel { position: static; width: 100%; transform: none; border-radius: 22px; }
  .checkout-content .checkout-grid { grid-template-columns: 1fr; }
  .checkout-content .checkout-summary { position: static; border-left: 0; border-top: 1px solid var(--line); }
  .cart-body { grid-template-columns: 1fr; }
  .service-slide { padding: 30px 30px 80px; gap: 15px; }
  .slider-controls { left: 24px; right: 24px; }
  .slide-visual svg { width: 125px; height: 125px; }
}
@media (max-width: 600px) {
  .service-slider { margin: 18px 0; border-radius: 20px; }
  .service-slide { grid-template-columns: 1fr; min-height: 335px; padding: 25px 23px 78px; }
  .slide-copy { position: relative; z-index: 1; }
  .slide-copy h2 { font-size: 28px; }
  .slide-copy > p:not(.slide-eyebrow) { font-size: 13px; max-width: 88%; }
  .slide-eyebrow { font-size: 9px; letter-spacing: .12em; }
  .slide-visual { position: absolute; right: 5px; bottom: 70px; opacity: .13; font-size: 140px; }
  .slider-controls { left: 15px; right: 15px; bottom: 14px; gap: 4px; }
  .slider-dots button { width: 29px; }
  .slider-navigation { gap: 5px; }
  .slider-navigation span { display: none; }
  .cart-foot { display: flex; flex-direction: column; gap: 12px; padding: 18px; }
  .cart-foot .checkout-button { width: 100%; }
  .cart-body { padding: 8px 16px; }
  .checkout-content .checkout-main { padding: 20px 16px; }
  .checkout-content .contact-grid { grid-template-columns: 1fr; }
  .postal-lookup { max-width: none; }
  .nip-row { flex-direction: column; align-items: stretch; }
  .cookie-banner { left: 9px; right: 9px; bottom: 9px; max-height: 65svh; overflow: auto; padding: 18px; border-radius: 17px; }
  .cookie-actions .secondary-button { flex-basis: 100%; }
  .cookie-actions .text-button { flex: 1; }
  .privacy-dialog-content, .store-information { padding: 21px; }
}
@media (prefers-reduced-motion: reduce) { .cart-panel { transition: none; } }
@media print {
  .service-slider, .cookie-banner, .cookie-dialog { display: none !important; }
  .cart-panel:has(.success-view) { display: block !important; }
  .cart-panel:has(.success-view) > :not(.checkout-content) { display: none !important; }
}
