:root {
  --bg: #ffffff;
  --bg-soft: #f5f7f2;
  --bg-muted: #eef1ea;
  --surface: #ffffff;
  --text: #1a1f16;
  --muted: #5c6656;
  --line: #e2e7dc;
  --accent: #96b746;
  --accent-dark: #275319;
  --accent-hover: #7fa03a;
  --danger: #c62828;
  --ok: #2e7d32;
  --radius: 10px;
  --radius-sm: 6px;
  --shadow: 0 1px 2px rgba(26, 31, 22, .04), 0 8px 24px rgba(26, 31, 22, .06);
  --shadow-hover: 0 2px 6px rgba(26, 31, 22, .06), 0 14px 32px rgba(39, 83, 25, .10);
  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Manrope", "Segoe UI", sans-serif;
  --header-h: 72px;
  --container: 1380px;
  --transition: .2s ease;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  min-height: 100vh;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}
a { color: var(--accent-dark); text-decoration: none; }
a:hover { color: var(--accent-hover); }
img { max-width: 100%; height: auto; display: block; }
button, input, select, textarea { font: inherit; }
.skip-link {
  position: absolute;
  left: .75rem;
  top: -100px;
  z-index: 1000;
  background: var(--accent-dark);
  color: #fff;
  padding: .65rem 1rem;
  border-radius: 8px;
  font-weight: 700;
}
.skip-link:focus {
  top: .75rem;
  color: #fff;
  outline: 2px solid #fff;
  outline-offset: 2px;
}
a:focus-visible,
.btn:focus-visible,
.nav a:focus-visible,
.product-card-link:focus-visible,
.cat-chip:focus-visible,
.tab:focus-visible {
  outline: 2px solid var(--accent-dark);
  outline-offset: 2px;
}
#main:focus { outline: none; }

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

/* Top bar */
.store-notice {
  background: #1a3d12;
  color: #f3f7ec;
  text-align: center;
  padding: .55rem 1rem;
  font-size: .88rem;
  font-weight: 600;
}
.cookie-bar {
  display: none !important;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 200;
  background: #13240f;
  color: #f3f7ec;
  padding: .9rem 0;
  box-shadow: 0 -10px 28px rgba(0,0,0,.2);
}
.cookie-bar.is-open {
  display: block !important;
}
.cookie-bar-inner {
  display: flex;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  position: relative;
  padding-right: 2.2rem;
}
.cookie-bar-close {
  position: absolute;
  top: -.15rem;
  right: 0;
  width: 2.2rem;
  height: 2.2rem;
  border: 0;
  background: transparent;
  color: #f3f7ec;
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
  border-radius: 8px;
}
.cookie-bar-close:hover { background: rgba(255,255,255,.1); }
.cookie-bar p { margin: 0; max-width: 62ch; font-size: .92rem; }
.cookie-bar a { color: #d5e8b8; font-weight: 700; }
.cookie-bar-actions { display: flex; gap: .5rem; flex-wrap: wrap; }
.cookie-bar .btn-ghost {
  background: transparent;
  color: #f3f7ec;
  border-color: rgba(243, 247, 236, .4);
}
.cookie-bar .btn-ghost:hover { color: #fff; border-color: #d5e8b8; }
.topbar {
  background: var(--accent-dark);
  color: #e8f0df;
  font-size: .82rem;
  font-weight: 500;
}
.topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: .45rem 0;
  flex-wrap: wrap;
}
.topbar a { color: #fff; }
.lang-switch { display: flex; gap: .3rem; flex-wrap: wrap; }
.lang-switch a {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .04em;
  padding: .18rem .42rem;
  border-radius: 4px;
  color: rgba(255,255,255,.75);
  border: 1px solid transparent;
}
.lang-switch a:hover { color: #fff; }
.lang-switch a.active {
  background: var(--accent);
  color: #143010;
  border-color: var(--accent);
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 70;
  background: rgba(255,255,255,.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(10px);
  overflow: visible;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  min-height: 72px;
  padding: .65rem 0;
}
.brand {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  text-decoration: none;
}
.brand img {
  height: 48px;
  width: auto;
  transition: height .2s ease;
}
@media (min-width: 641px) {
  body.header-compact .header-inner--shop { padding: .4rem 0; }
  body.header-compact .brand img { height: 36px; }
}
.header-actions {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  justify-self: end;
}
.nav-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  cursor: pointer;
  padding: 0;
}
.nav-toggle-bars,
.nav-toggle-bars::before,
.nav-toggle-bars::after {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--accent-dark);
  border-radius: 2px;
  position: relative;
  transition: transform .2s ease, opacity .2s ease;
}
.nav-toggle-bars::before,
.nav-toggle-bars::after {
  content: "";
  position: absolute;
  left: 0;
}
.nav-toggle-bars::before { top: -6px; }
.nav-toggle-bars::after { top: 6px; }
.nav-toggle[aria-expanded="true"] .nav-toggle-bars { background: transparent; }
.nav-toggle[aria-expanded="true"] .nav-toggle-bars::before { top: 0; transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle-bars::after { top: 0; transform: rotate(-45deg); }
.site-drawer {
  display: none;
}
.site-drawer-inner { padding: 1rem 0 1.25rem; }
.nav--drawer {
  display: grid;
  gap: .15rem;
  margin-bottom: 1rem;
}
.nav--drawer a {
  display: block;
  padding: .7rem .2rem;
  border-bottom: 1px solid var(--line);
  font-weight: 700;
  color: var(--text);
}
.site-drawer-label {
  margin: .85rem 0 .45rem;
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--muted);
}
.site-drawer-cats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .4rem;
}
.site-drawer-cats a {
  display: block;
  padding: .55rem .65rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--bg-soft);
  color: var(--accent-dark);
  font-size: .88rem;
  font-weight: 650;
}
body.nav-open { overflow: hidden; }
.nav {
  display: flex;
  align-items: center;
  gap: 1.35rem;
  flex-wrap: wrap;
}
.nav a {
  color: var(--text);
  font-weight: 650;
  font-size: .95rem;
  text-decoration: none;
  position: relative;
}
.nav a:hover { color: var(--accent-dark); }
.nav .cart-link,
.cart-link--icon {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  padding: .45rem .85rem;
  border-radius: 999px;
}
.nav .cart-link span[data-cart-count],
.cart-link--icon span[data-cart-count] {
  display: inline-grid;
  place-items: center;
  min-width: 1.35rem;
  height: 1.35rem;
  padding: 0 .3rem;
  border-radius: 999px;
  background: var(--accent);
  color: #143010;
  font-size: .75rem;
  font-weight: 800;
}
.cart-link--icon { color: var(--text); font-weight: 700; text-decoration: none; }
.wish-link,
.wish-link--icon {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  color: var(--text);
  font-weight: 700;
  text-decoration: none;
  padding: .4rem .7rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--bg-soft);
}
.wish-link span[data-wish-count],
.wish-link--icon span[data-wish-count] {
  display: inline-grid;
  place-items: center;
  min-width: 1.25rem;
  height: 1.25rem;
  border-radius: 999px;
  background: var(--accent-dark);
  color: #fff;
  font-size: .72rem;
  font-weight: 800;
}
.wish-form { margin: 0; }
.wish-btn {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--accent-dark);
  border-radius: 999px;
  padding: .45rem .85rem;
  font-weight: 700;
  cursor: pointer;
}
.wish-btn:hover { border-color: var(--accent); }
.wish-btn.is-active {
  background: #fde8e8;
  border-color: #f0b4b4;
  color: #b42318;
}
.wish-btn--compact {
  width: 36px;
  height: 36px;
  padding: 0;
  justify-content: center;
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(0,0,0,.08);
}
.product-card--shop { position: relative; }
.card-wish {
  position: absolute;
  top: .55rem;
  left: .55rem;
  z-index: 3;
}
.card-compare {
  position: absolute;
  top: .55rem;
  right: .55rem;
  z-index: 3;
}
.compare-form { margin: 0; }
.compare-btn {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--accent-dark);
  border-radius: 999px;
  padding: .45rem .85rem;
  font-weight: 700;
  cursor: pointer;
}
.compare-btn:hover { border-color: var(--accent); }
.compare-btn.is-active {
  background: #eef5e0;
  border-color: var(--accent);
  color: var(--accent-dark);
}
.compare-btn--compact {
  width: 36px;
  height: 36px;
  padding: 0;
  justify-content: center;
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(0,0,0,.08);
}
.compare-link {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  color: var(--text);
  font-weight: 700;
  text-decoration: none;
  padding: .4rem .7rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--bg-soft);
}
.compare-link span[data-compare-count] {
  display: inline-grid;
  place-items: center;
  min-width: 1.25rem;
  height: 1.25rem;
  border-radius: 999px;
  background: var(--accent);
  color: #1d2a1d;
  font-size: .72rem;
  font-weight: 800;
}
.pdp-wish-row {
  margin: 0 0 .85rem;
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  align-items: center;
}
.compare-bar {
  position: sticky;
  bottom: 0;
  z-index: 40;
  background: color-mix(in srgb, var(--accent-dark) 92%, #000);
  color: #fff;
  padding: .7rem 0;
  box-shadow: 0 -4px 18px rgba(0,0,0,.12);
}
.compare-bar-inner {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  align-items: center;
  justify-content: space-between;
}
.compare-bar-inner p { margin: 0; font-weight: 600; }
.compare-bar .btn-primary {
  background: var(--accent);
  color: #1d2a1d;
  border-color: var(--accent);
}
.compare-scroll { overflow-x: auto; }
.compare-table {
  width: 100%;
  min-width: 640px;
  border-collapse: collapse;
  background: #fff;
}
.compare-table th,
.compare-table td {
  border: 1px solid var(--line);
  padding: .75rem .85rem;
  vertical-align: top;
  text-align: left;
}
.compare-table thead th { background: #f7f9f2; }
.compare-table tbody th {
  width: 10rem;
  background: #fafaf7;
  font-weight: 700;
  color: var(--accent-dark);
}
.compare-head {
  display: grid;
  gap: .45rem;
  justify-items: start;
  min-width: 160px;
}
.compare-head img {
  width: 96px;
  height: 96px;
  object-fit: cover;
  border-radius: 8px;
  background: #f3f5ee;
}
.compare-name {
  font-weight: 700;
  color: var(--accent-dark);
  text-decoration: none;
  line-height: 1.25;
}
.compare-name:hover { text-decoration: underline; }
.compare-count-line { margin: 0 0 .65rem; }
.compare-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: .65rem 1rem;
  align-items: center;
  margin: 0 0 1rem;
}
.compare-diffs {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-weight: 600;
  font-size: .9rem;
  color: var(--accent-dark);
  cursor: pointer;
}
.compare-table tbody th,
.compare-table thead th:first-child {
  position: sticky;
  left: 0;
  z-index: 2;
  background: #fafaf7;
  box-shadow: 2px 0 0 var(--line);
}
.compare-table thead th:first-child {
  background: #f7f9f2;
  z-index: 3;
}
.compare-table tbody tr.is-diff td {
  background: #f7fbf0;
}
.compare-table.compare-diffs-only tbody tr.is-same {
  display: none;
}
.product-card .media { position: relative; }
.wishlist-actions { display: flex; flex-wrap: wrap; gap: .5rem; }

/* Hero */
.hero {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 2.5rem;
  align-items: center;
  padding: 3.2rem 0 2.8rem;
}
.hero-copy h1 {
  font-family: var(--font-display);
  font-size: clamp(2.3rem, 4.2vw, 3.6rem);
  line-height: 1.08;
  letter-spacing: -.02em;
  margin: 0 0 1rem;
  color: var(--accent-dark);
  max-width: 14ch;
}
.hero-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 1.08rem;
  max-width: 42ch;
}
.hero-actions {
  display: flex;
  gap: .75rem;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}
.hero-panel {
  background:
    linear-gradient(145deg, rgba(150,183,70,.16), rgba(39,83,25,.08)),
    var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: 18px;
  min-height: 280px;
  padding: 2rem;
  display: grid;
  align-content: end;
  gap: .6rem;
  box-shadow: var(--shadow);
}
.hero-panel strong {
  font-family: var(--font-display);
  font-size: 1.55rem;
  color: var(--accent-dark);
}
.hero-panel span { color: var(--muted); }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .45rem;
  border: 0;
  cursor: pointer;
  padding: .85rem 1.35rem;
  border-radius: 999px;
  font-weight: 750;
  font-size: .95rem;
  text-decoration: none;
  transition: transform var(--transition), background var(--transition), box-shadow var(--transition);
}
.btn:hover { transform: translateY(-1px); text-decoration: none; }
.btn-primary {
  background: var(--accent);
  color: #143010;
  box-shadow: 0 8px 18px rgba(150, 183, 70, .28);
}
.btn-primary:hover { background: var(--accent-hover); color: #143010; }
.btn-dark {
  background: var(--accent-dark);
  color: #fff;
}
.btn-dark:hover { background: #1d3f13; color: #fff; }
.btn-ghost {
  background: #fff;
  color: var(--accent-dark);
  border: 1px solid var(--line);
}
.btn-ghost:hover { border-color: var(--accent); color: var(--accent-dark); }

/* Sections */
.section { padding: 2.4rem 0; }
.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.25rem;
}
.section h2, .section-head h2 {
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 2.4vw, 1.9rem);
  margin: 0;
  color: var(--accent-dark);
  letter-spacing: -.01em;
}
.section-head a { font-weight: 700; font-size: .92rem; }

/* Grids */
.grid-cats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: .9rem;
}
.grid-products {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.1rem;
}

.category-card {
  display: block;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.15rem 1.1rem;
  text-decoration: none;
  color: inherit;
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}
.category-card:hover {
  border-color: rgba(150,183,70,.55);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
  color: inherit;
  text-decoration: none;
}
.category-card h3 {
  margin: 0 0 .35rem;
  font-size: 1.02rem;
  font-weight: 750;
  color: var(--accent-dark);
}
.category-card p {
  margin: 0;
  color: var(--muted);
  font-size: .88rem;
  line-height: 1.45;
}

.product-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  animation: rise .55s ease both;
}
.product-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(150,183,70,.45);
}
.product-card > a { color: inherit; text-decoration: none; display: block; }
.product-card .media {
  aspect-ratio: 1 / 1;
  background: #fff;
  border-bottom: 1px solid var(--line);
  display: grid;
  place-items: center;
  overflow: hidden;
  padding: .75rem;
}
.product-card .media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform .35s ease;
}
.product-card:hover .media img { transform: scale(1.03); }
.product-card .body { padding: .95rem 1rem 1.1rem; }
.product-card h3 {
  margin: 0 0 .55rem;
  font-size: .98rem;
  font-weight: 700;
  line-height: 1.35;
  color: var(--text);
  min-height: 2.6em;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.price {
  color: var(--accent-dark);
  font-weight: 800;
  font-size: 1.05rem;
  letter-spacing: -.01em;
}
.price-lg { font-size: 1.65rem; }

/* Breadcrumbs */
.breadcrumbs {
  color: var(--muted);
  font-size: .88rem;
  margin: 1.15rem 0 1.4rem;
  display: flex;
  flex-wrap: wrap;
  gap: .35rem;
  align-items: center;
}
.breadcrumbs a { color: var(--muted); }
.breadcrumbs a:hover { color: var(--accent-dark); }
.breadcrumbs .sep { opacity: .5; }

/* Product page */
.product-layout {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 2rem;
  padding: .5rem 0 2rem;
  align-items: start;
}
.gallery {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.promo-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 2;
  background: #c62828;
  color: #fff;
  font-weight: 800;
  font-size: .95rem;
  padding: .45rem .7rem;
  border-radius: 8px;
  box-shadow: 0 8px 18px rgba(198,40,40,.25);
}
.gallery-main {
  aspect-ratio: 1 / 1;
  display: grid;
  place-items: center;
  padding: 1.25rem;
  background: #fff;
}
.gallery-main img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.gallery-thumbs {
  display: flex;
  gap: .5rem;
  padding: .75rem;
  border-top: 1px solid var(--line);
  overflow-x: auto;
  background: var(--bg-soft);
}
.gallery-thumbs button {
  flex: 0 0 68px;
  width: 68px;
  height: 68px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  padding: .25rem;
  cursor: pointer;
}
.gallery-thumbs button.is-active,
.gallery-thumbs button:hover {
  border-color: var(--accent);
}
.gallery-thumbs img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.gallery-zoom {
  display: block;
  width: 100%;
  height: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: zoom-in;
  position: relative;
  -webkit-appearance: none;
  appearance: none;
}
.gallery-zoom img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.gallery-zoom-hint {
  position: absolute;
  right: .65rem;
  bottom: .65rem;
  width: 36px;
  height: 36px;
  border-radius: 999px;
  background: rgba(255,255,255,.92);
  color: var(--accent-dark);
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  box-shadow: 0 4px 12px rgba(26,31,22,.08);
}
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 120;
  background: rgba(16, 24, 14, .92);
  display: grid;
  grid-template-rows: auto 1fr auto;
  padding: .75rem .75rem calc(.75rem + env(safe-area-inset-bottom));
}
.lightbox[hidden] { display: none !important; }
.lightbox-toolbar {
  display: flex;
  justify-content: flex-end;
}
.lightbox-close {
  min-width: 44px;
  min-height: 44px;
  border: 0;
  border-radius: 999px;
  background: rgba(255,255,255,.12);
  color: #fff;
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
}
.lightbox-figure {
  margin: 0;
  display: grid;
  place-items: center;
  min-height: 0;
}
.lightbox-figure img {
  max-width: min(100%, 1100px);
  max-height: calc(100vh - 8.5rem);
  object-fit: contain;
}
.lightbox-nav {
  display: flex;
  justify-content: center;
  gap: .5rem;
}
.lightbox-nav button {
  min-width: 48px;
  min-height: 44px;
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 10px;
  background: rgba(255,255,255,.08);
  color: #fff;
  font-size: 1.25rem;
  cursor: pointer;
}
.lightbox-nav[hidden] { display: none !important; }
body.lightbox-open { overflow: hidden; }
.buy-box {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 1.35rem 1.4rem 1.5rem;
  box-shadow: var(--shadow);
  position: sticky;
  top: calc(var(--header-h) + 1rem);
}
.buy-tags { display: flex; flex-wrap: wrap; gap: .4rem; margin-bottom: .75rem; }
.tag {
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .02em;
  text-transform: uppercase;
  padding: .28rem .55rem;
  border-radius: 999px;
}
.tag-sale { background: #fdecea; color: #b71c1c; }
.tag-promo { background: #eaf5dd; color: #275319; }
.tag-ok { background: #e3f2fd; color: #1565c0; }
.buy-box h1 {
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 2.3vw, 1.95rem);
  line-height: 1.2;
  margin: 0 0 .75rem;
  color: var(--accent-dark);
}
.price-block {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: .55rem;
}
.price-compare {
  color: var(--muted);
  text-decoration: line-through;
  font-size: 1.05rem;
  font-weight: 600;
}
.price-note { color: var(--muted); font-size: .85rem; }
.price-save {
  margin: .35rem 0 0;
  color: #b71c1c;
  font-size: .9rem;
  font-weight: 600;
}
.buy-meta {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem .9rem;
  color: var(--muted);
  font-size: .88rem;
  margin: .85rem 0 .9rem;
}
.buy-excerpt { margin-bottom: .9rem; font-size: .95rem; }
.stock-ok { color: var(--ok); font-weight: 700; }
.stock-out { color: var(--danger); font-weight: 700; }
.stock-low {
  color: #9a6b12;
  font-weight: 750;
  font-size: .88rem;
}
.gallery-count {
  margin: .45rem 0 0;
  color: var(--muted);
  font-size: .82rem;
  font-weight: 650;
  text-align: center;
}
.tech-chips-more {
  display: inline-block;
  margin: .45rem 0 0;
  font-size: .88rem;
  font-weight: 750;
}
.field-error {
  display: block;
  margin: .3rem 0 0;
  color: var(--danger);
  font-size: .8rem;
  font-weight: 700;
}
.bis-box {
  margin: .4rem 0 1rem;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #f7f9f2;
}
.bis-box > strong {
  display: block;
  color: var(--accent-dark);
  font-family: var(--font-display);
  margin-bottom: .25rem;
}
.bis-box .prose { margin: 0 0 .7rem; font-size: .92rem; }
.bis-row { display: flex; gap: .45rem; }
.bis-row input { flex: 1; text-transform: none; }
.bis-msg { margin: .45rem 0 0; font-size: .88rem; color: var(--accent-dark); }
.bis-msg.is-error { color: #b42318; }

.volume-box {
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--bg-soft);
  padding: .85rem;
  margin-bottom: 1rem;
}
.volume-head {
  display: flex;
  justify-content: space-between;
  gap: .5rem;
  align-items: baseline;
  margin-bottom: .65rem;
}
.volume-head strong { color: var(--accent-dark); font-size: .95rem; }
.volume-head span { color: var(--muted); font-size: .8rem; }
.volume-tiers {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: .4rem;
}
.volume-tier {
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 8px;
  padding: .45rem .3rem;
  cursor: pointer;
  display: grid;
  gap: .15rem;
  text-align: center;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.volume-tier:hover { border-color: var(--accent); }
.volume-tier.is-active {
  border-color: var(--accent-dark);
  box-shadow: 0 0 0 2px rgba(39,83,25,.12);
  background: #f4f9ec;
}
.vt-qty { font-size: .72rem; font-weight: 800; color: var(--accent-dark); }
.vt-disc { font-size: .7rem; font-weight: 800; color: #c62828; }
.vt-disc--muted { color: var(--muted); font-weight: 600; }
.vt-price { font-size: .78rem; font-weight: 700; }

.qty-row {
  display: flex;
  gap: .75rem;
  align-items: end;
  margin: 0 0 .65rem;
}
.qty-row label { flex: 0 0 130px; margin: 0; }
.qty-row .btn-buy { flex: 1; min-height: 48px; font-size: 1rem; }
.qty-stepper {
  display: grid;
  grid-template-columns: 36px 1fr 36px;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
}
.qty-stepper button {
  border: 0;
  background: var(--bg-soft);
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  color: var(--accent-dark);
}
.qty-stepper input {
  border: 0;
  text-align: center;
  border-radius: 0;
  padding: .55rem .2rem;
}
.buy-total-line {
  font-size: .95rem;
  color: var(--muted);
  margin-bottom: .9rem;
}
.buy-total-line strong { color: var(--accent-dark); font-size: 1.15rem; }
.buy-total-line [data-volume-hint] {
  display: block;
  margin-top: .2rem;
  color: #2e7d32;
  font-weight: 700;
  font-size: .85rem;
  min-height: 1.2em;
}
.buy-trust {
  list-style: none;
  margin: 0;
  padding: .85rem 0 0;
  border-top: 1px solid var(--line);
  display: grid;
  gap: .35rem;
  color: var(--muted);
  font-size: .86rem;
}
.buy-trust li::before {
  content: "✓ ";
  color: var(--accent);
  font-weight: 800;
}
.upsell-mini {
  margin-top: 1rem;
  padding: .8rem;
  border-radius: 10px;
  background: #fff8e1;
  border: 1px solid #ffe082;
}
.upsell-mini strong {
  display: block;
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .04em;
  color: #8d6e00;
  margin-bottom: .35rem;
}
.upsell-mini a {
  display: flex;
  justify-content: space-between;
  gap: .75rem;
  color: var(--text);
  font-weight: 700;
  font-size: .9rem;
  text-decoration: none;
}
.upsell-mini a:hover { color: var(--accent-dark); }
.upsell-mini em { font-style: normal; color: var(--accent-dark); white-space: nowrap; }

.pdp-tabs .tablist {
  display: flex;
  flex-wrap: wrap;
  gap: .4rem;
  margin-bottom: .85rem;
  border-bottom: 1px solid var(--line);
  padding-bottom: .65rem;
}
.pdp-tabs .tab {
  border: 1px solid transparent;
  background: transparent;
  padding: .55rem .9rem;
  border-radius: 999px;
  font-weight: 750;
  color: var(--muted);
  cursor: pointer;
}
.pdp-tabs .tab.is-active {
  background: var(--accent-dark);
  color: #fff;
}
.faq-item {
  border-bottom: 1px solid var(--line);
  padding: .7rem 0;
}
.faq-item summary {
  cursor: pointer;
  font-weight: 700;
  color: var(--accent-dark);
}
.cross-section .section-head .prose { margin: 0; }

.stack { display: grid; gap: 1.1rem; }
.panel {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.25rem 1.35rem;
}
.panel h2 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  margin: 0 0 .75rem;
  color: var(--accent-dark);
}
.prose { color: var(--muted); line-height: 1.7; }
.prose h2, .prose h3 { color: var(--accent-dark); font-family: var(--font-display); }
.prose ul { padding-left: 1.2rem; }
.prose img { border-radius: 8px; }

/* Forms */
form label {
  display: grid;
  gap: .35rem;
  margin-bottom: .8rem;
  color: var(--muted);
  font-size: .9rem;
  font-weight: 600;
}
input, select, textarea {
  width: 100%;
  padding: .75rem .9rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--line);
  background: #fff;
  color: var(--text);
}
input:focus, select:focus, textarea:focus {
  outline: 2px solid rgba(150,183,70,.35);
  border-color: var(--accent);
}
table { width: 100%; border-collapse: collapse; }
th, td {
  padding: .85rem .6rem;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: middle;
}
th { font-size: .82rem; text-transform: uppercase; letter-spacing: .04em; color: var(--muted); }
.flash { padding: .85rem 1rem; border-radius: var(--radius-sm); margin: 1rem 0; display: flex; align-items: flex-start; justify-content: space-between; gap: .75rem; }
.flash-error { background: #fdecea; color: #8a1c1c; }
.flash-success { background: #eaf5dd; color: #275319; }
.flash-close {
  border: 0;
  background: transparent;
  color: inherit;
  font-size: 1.25rem;
  line-height: 1;
  cursor: pointer;
  min-width: 32px;
  min-height: 32px;
  opacity: .7;
}
.flash-close:hover { opacity: 1; }
.password-field {
  position: relative;
  display: block;
}
.password-field input { padding-right: 6.2rem; }
.password-toggle {
  position: absolute;
  right: .35rem;
  top: 50%;
  transform: translateY(-50%);
  border: 0;
  background: transparent;
  color: var(--accent-dark);
  font-size: .78rem;
  font-weight: 800;
  cursor: pointer;
  min-height: 36px;
  padding: 0 .55rem;
}
.btn.is-busy { opacity: .72; pointer-events: none; }
a.btn.is-disabled { opacity: .55; pointer-events: none; }
.cart-page.is-updating { opacity: .72; pointer-events: none; }
input.is-invalid, select.is-invalid, textarea.is-invalid {
  border-color: #c62828;
  outline: 2px solid rgba(198,40,40,.18);
}

/* Content cards */
.content-card {
  display: block;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.2rem;
  background: #fff;
  transition: border-color var(--transition), box-shadow var(--transition);
  color: inherit;
  text-decoration: none;
}
.content-card:hover {
  border-color: rgba(150,183,70,.5);
  box-shadow: var(--shadow);
  text-decoration: none;
  color: inherit;
}
.content-card h3 {
  margin: 0 0 .4rem;
  font-size: 1.05rem;
  color: var(--accent-dark);
}
.content-card p { margin: 0; color: var(--muted); font-size: .9rem; }

/* Filters */
.filters {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: .8rem;
  align-items: end;
  margin-bottom: 1.25rem;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1rem;
}
.filters label { margin: 0; }

/* Footer */
.site-footer {
  margin-top: 4rem;
  background: #163214;
  color: rgba(243, 247, 236, .72);
  padding: 3rem 0 1.5rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) repeat(2, minmax(0, .7fr));
  gap: 2.5rem 3rem;
  margin-bottom: 2.25rem;
  align-items: start;
}
.site-footer .brand img { height: 40px; width: auto; }
.footer-tagline {
  margin: 1rem 0 0;
  max-width: 34ch;
  line-height: 1.55;
  font-size: .95rem;
}
.footer-contact {
  display: grid;
  gap: .25rem;
  margin: 1rem 0 0;
}
.footer-contact a { color: #fff; font-weight: 650; }
.footer-social {
  display: flex;
  gap: .75rem;
  flex-wrap: wrap;
  margin: .9rem 0 0;
}
.footer-social a { color: #d5e8b8; font-weight: 700; font-size: .9rem; }
.site-footer h4 {
  margin: .15rem 0 .85rem;
  color: #fff;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.site-footer a { color: rgba(243, 247, 236, .78); }
.site-footer a:hover { color: #fff; }
.site-footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: .5rem; }
.footer-nav li { font-size: .95rem; }
.footer-acc {
  border: 0;
  margin: 0;
  padding: 0;
}
.footer-acc summary {
  margin: .15rem 0 .85rem;
  color: #fff;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .75rem;
  min-height: 44px;
}
.footer-acc summary::-webkit-details-marker { display: none; }
.footer-acc summary::after {
  content: "+";
  font-size: 1.1rem;
  font-weight: 600;
  line-height: 1;
  color: #d5e8b8;
}
.footer-acc[open] summary::after { content: "–"; }
@media (min-width: 561px) {
  .footer-acc summary {
    min-height: 0;
    cursor: default;
    pointer-events: none;
  }
  .footer-acc summary::after { display: none; }
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 1.1rem;
  display: flex;
  flex-wrap: wrap;
  gap: .65rem 1.25rem;
  align-items: center;
  justify-content: space-between;
  font-size: .8rem;
  color: rgba(243, 247, 236, .55);
}
.footer-copy { margin: 0; }
.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: .35rem .9rem;
}
.footer-legal a { color: rgba(243, 247, 236, .62); }
.footer-pay { margin: 0; letter-spacing: .04em; }

/* Category sales layout */
.cat-hero {
  display: grid;
  grid-template-columns: 1.4fr .8fr;
  gap: 1.25rem;
  margin: .25rem 0 1.25rem;
  align-items: stretch;
}
.cat-hero-main {
  background: linear-gradient(135deg, #f7faf2 0%, #fff 55%);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 1.5rem 1.6rem;
}
.cat-hero-main h1 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.35rem);
  line-height: 1.15;
  margin: 0 0 .65rem;
  color: var(--accent-dark);
}
.cat-hero-intro {
  margin: 0;
  color: var(--muted);
  font-size: 1.02rem;
  max-width: 62ch;
}
.cat-rating {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .45rem .7rem;
  margin-top: .95rem;
  color: var(--muted);
  font-size: .9rem;
}
.cat-trust {
  display: flex;
  flex-wrap: wrap;
  gap: .45rem;
  margin-top: 1.1rem;
}
.cat-trust span {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: .35rem .75rem;
  font-size: .82rem;
  font-weight: 700;
  color: var(--accent-dark);
}
.cat-hero-aside {
  background: var(--accent-dark);
  color: rgba(255,255,255,.88);
  border-radius: 14px;
  padding: 1.45rem 1.35rem;
  display: grid;
  align-content: center;
  gap: .65rem;
}
.cat-hero-aside strong {
  color: #fff;
  font-family: var(--font-display);
  font-size: 1.25rem;
}
.cat-hero-aside p { margin: 0; font-size: .95rem; line-height: 1.5; }
.cat-hero-aside .btn { justify-self: start; margin-top: .35rem; }

.cat-subs {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin-bottom: 1rem;
}
@media (max-width: 640px) {
  .cat-subs {
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    margin-left: -1rem;
    margin-right: -1rem;
    padding: 0 1rem .4rem;
  }
  .cat-subs .cat-chip { flex: 0 0 auto; }
}
.cat-chip {
  display: inline-flex;
  align-items: center;
  padding: .45rem .85rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--bg-soft);
  color: var(--accent-dark);
  font-weight: 700;
  font-size: .88rem;
  text-decoration: none;
}
.cat-chip:hover {
  border-color: var(--accent);
  background: #fff;
  color: var(--accent-dark);
  text-decoration: none;
}

.cat-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: .85rem;
  flex-wrap: wrap;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: .75rem .9rem;
  margin: 0 0 1.15rem;
  position: relative;
  z-index: 1;
}
#productos { scroll-margin-top: calc(var(--header-h) + 1rem); }
.cat-toolbar-left {
  display: flex;
  align-items: baseline;
  gap: .4rem;
  color: var(--muted);
  font-size: .92rem;
}
.cat-toolbar-left strong { color: var(--accent-dark); font-size: 1.1rem; }
.cat-toolbar-right {
  display: flex;
  flex-wrap: wrap;
  gap: .45rem;
  align-items: center;
}
.cat-toolbar-right select,
.cat-toolbar-right input {
  width: auto;
  min-width: 0;
  padding: .55rem .7rem;
  margin: 0;
}
.cat-toolbar-right input { width: 96px; }
.cat-toolbar-right .btn { padding: .55rem .95rem; }
.cat-toolbar-prices {
  display: flex;
  gap: .45rem;
  align-items: center;
}
.cat-filter-chips {
  display: flex;
  flex-wrap: wrap;
  gap: .4rem;
  margin: -.45rem 0 1rem;
}
.cat-chip--filter {
  background: #fff;
  border-color: var(--accent);
  color: var(--accent-dark);
}
.cat-chip--filter span { opacity: .55; margin-left: .15rem; }
.cat-chip--clear {
  font-weight: 800;
}

.product-card--shop {
  display: flex;
  flex-direction: column;
}
.product-card--shop .product-card-link { flex: 1; }
.product-card--shop .media { position: relative; }
.badge-stock,
.badge-offer {
  position: absolute;
  top: auto;
  bottom: .55rem;
  left: .55rem;
  right: auto;
  font-size: .72rem;
  font-weight: 800;
  padding: .22rem .5rem;
  border-radius: 999px;
  letter-spacing: .01em;
  z-index: 2;
}
.badge-stock {
  background: #eaf5dd;
  color: var(--ok);
  border: 1px solid #cfe6b4;
}
.badge-stock--low {
  background: #fff6e8;
  color: #8a5a12;
  border-color: #f0d7a8;
}
.badge-offer {
  background: #275319;
  color: #fff;
  border: 1px solid #1f4214;
}
.price-row {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: .45rem .55rem;
}
.price-compare {
  color: var(--muted);
  text-decoration: line-through;
  font-size: .88rem;
  font-weight: 600;
}
.product-card--shop .price {
  font-size: 1.12rem;
  font-weight: 800;
  color: var(--accent-dark);
}
.card-volume-hint {
  margin: .35rem 0 0;
  font-size: .75rem;
  color: var(--muted);
  font-weight: 600;
}
.product-card-title {
  margin: 0 0 .55rem;
  font-size: .95rem;
  font-weight: 700;
  line-height: 1.35;
  color: var(--text);
  min-height: 2.6em;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-family: var(--font-body);
}
.product-card-actions {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: .45rem;
  padding: 0 1rem 1rem;
}
.product-card-actions .btn {
  width: 100%;
  padding: .65rem .7rem;
  font-size: .88rem;
  border-radius: 8px;
}
.product-card-actions form { margin: 0; }

.cat-seo { padding: 1rem 0 2.5rem; }
.cat-seo-box {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
}
.cat-seo-title {
  margin: 0;
  padding: 1.2rem 1.4rem 0;
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2vw, 1.45rem);
  color: var(--accent-dark);
}
.cat-seo-body {
  padding: 1rem 1.4rem 1.5rem;
  max-width: 85ch;
}
.cat-seo-body h2,
.cat-seo-body h3 {
  margin-top: 1.25rem;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}

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

@media (max-width: 1100px) {
  .grid-products, .grid-cats { grid-template-columns: repeat(3, 1fr); }
  .hero { grid-template-columns: 1fr; }
  .hero-panel { min-height: 180px; }
  .cat-hero { grid-template-columns: 1fr; }
}
@media (max-width: 900px) {
  .volume-tiers { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 800px) {
  .grid-products, .grid-cats { grid-template-columns: repeat(2, 1fr); }
  .product-layout { grid-template-columns: 1fr; }
  .buy-box { position: static; }
  .filters { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 1.75rem 1.5rem; }
  .footer-brand { grid-column: 1 / -1; max-width: 42rem; }
}
@media (max-width: 560px) {
  .footer-grid { grid-template-columns: 1fr; gap: 1.6rem; }
  .footer-brand { grid-column: auto; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: .7rem; }
  .header-inner { flex-wrap: wrap; }
  .nav { width: 100%; justify-content: space-between; gap: .75rem; }
  .cat-toolbar { position: static; }
  .cat-toolbar-right { width: 100%; }
  .cat-toolbar-right select { flex: 1; }
  .qty-row { flex-direction: column; align-items: stretch; }
  .qty-row label { flex: 1; }
  .pack-card-actions { grid-template-columns: 1fr; }
}
@media (max-width: 520px) {
  .container { width: min(var(--container), calc(100% - 1.25rem)); }
  /* Mantener 2 columnas: más productos visibles = más conversión móvil */
  .grid-products { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: .65rem; }
  .grid-cats { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: .65rem; }
  .filters { grid-template-columns: 1fr; }
  .product-card-actions { grid-template-columns: 1fr; }
  .volume-tiers { grid-template-columns: repeat(2, 1fr); }
}

/* Header search */
.header-inner--shop {
  display: grid;
  grid-template-columns: minmax(140px, auto) minmax(220px, 1fr) auto;
  gap: 1rem 1.25rem;
  align-items: center;
  justify-content: stretch;
  flex-wrap: unset;
}
.header-inner--shop .brand { grid-column: 1; grid-row: 1; }
.header-inner--shop .header-search { grid-column: 2; grid-row: 1; }
.header-inner--shop .header-actions {
  grid-column: 3;
  grid-row: 1;
}
.header-search {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: .4rem;
  max-width: 560px;
  width: 100%;
  margin: 0;
  min-width: 0;
  position: relative;
}
.header-search-field {
  position: relative;
  display: flex;
  align-items: center;
  min-width: 0;
}
.search-hero-field { position: relative; }
.header-search-icon {
  position: absolute;
  left: .85rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--accent-dark);
  display: inline-flex;
  pointer-events: none;
  opacity: .7;
}
.header-search input {
  margin: 0;
  width: 100%;
  padding: .7rem 2.4rem .7rem 2.45rem;
  border-radius: 999px;
  background: var(--bg-soft);
  min-width: 0;
  border: 1px solid transparent;
  transition: border-color .18s ease, box-shadow .18s ease, background .18s ease;
}
.header-search input:hover { border-color: #d5ddc8; }
.header-search input:focus {
  outline: none;
  background: #fff;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(150, 183, 70, .22);
}
.header-search.is-open input,
.header-search input[aria-expanded="true"] {
  background: #fff;
  border-color: var(--accent-dark);
}
.header-search-kbd {
  position: absolute;
  right: .7rem;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-body);
  font-size: .68rem;
  font-weight: 700;
  color: var(--muted);
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 5px;
  padding: .05rem .35rem;
  line-height: 1.3;
  pointer-events: none;
}
.header-search-clear {
  position: absolute;
  right: .45rem;
  top: 50%;
  transform: translateY(-50%);
  width: 28px;
  height: 28px;
  border: 0;
  border-radius: 999px;
  background: var(--bg-muted);
  color: var(--text);
  font-size: 1.1rem;
  line-height: 1;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.header-search-clear:hover { background: var(--line); }
.header-search.has-value .header-search-kbd { display: none; }
.header-search .btn { border-radius: 999px; padding: .7rem 1.1rem; white-space: nowrap; }

.search-suggest {
  position: absolute;
  top: calc(100% + .45rem);
  left: 0;
  width: max(100%, min(540px, 92vw));
  z-index: 80;
  background: #fff;
  border: 1px solid #d7decc;
  border-radius: 16px;
  box-shadow: 0 18px 50px rgba(26, 31, 22, .16), 0 0 0 1px rgba(39, 83, 25, .04);
  overflow: hidden;
  max-height: min(72vh, 560px);
  display: flex;
  flex-direction: column;
}
.search-suggest[hidden] { display: none !important; }
.search-suggest-scroll {
  overflow-y: auto;
  overscroll-behavior: contain;
  padding: .45rem 0 .2rem;
}
.search-suggest-group {
  padding: .15rem 0 .35rem;
}
.search-suggest-label {
  margin: 0;
  padding: .35rem 1rem .2rem;
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--muted);
}
.search-suggest-item {
  display: grid;
  grid-template-columns: 40px 1fr auto;
  gap: .7rem;
  align-items: center;
  padding: .45rem .85rem;
  color: var(--text);
  text-decoration: none;
  cursor: pointer;
  border: 0;
  width: 100%;
  background: transparent;
  text-align: left;
  font: inherit;
}
.search-suggest-item:hover,
.search-suggest-item.is-active {
  background: linear-gradient(90deg, rgba(150, 183, 70, .16), rgba(245, 247, 242, .4));
  color: var(--accent-dark);
}
.search-suggest-item img,
.search-suggest-thumb {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  object-fit: cover;
  background: var(--bg-soft);
  border: 1px solid var(--line);
}
.search-suggest-thumb {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-dark);
  font-size: .85rem;
}
.search-suggest-item strong {
  display: block;
  font-size: .92rem;
  font-weight: 700;
  line-height: 1.25;
}
.search-suggest-item span.meta {
  display: block;
  font-size: .75rem;
  color: var(--muted);
  font-weight: 500;
}
.search-suggest-item em {
  font-style: normal;
  background: rgba(150, 183, 70, .35);
  border-radius: 3px;
  padding: 0 .05em;
}
.search-suggest-item .price {
  font-weight: 800;
  font-size: .86rem;
  color: var(--accent-dark);
  white-space: nowrap;
}
.search-suggest-chips {
  display: flex;
  flex-wrap: wrap;
  gap: .4rem;
  padding: .15rem .85rem .5rem;
}
.search-suggest-chip {
  display: inline-flex;
  align-items: center;
  gap: .3rem;
  border: 1px solid var(--line);
  background: var(--bg-soft);
  color: var(--accent-dark);
  border-radius: 999px;
  padding: .28rem .7rem;
  font-size: .8rem;
  font-weight: 700;
  text-decoration: none;
}
.search-suggest-chip:hover,
.search-suggest-chip.is-active {
  background: var(--accent-dark);
  color: #fff;
  border-color: var(--accent-dark);
}
.search-suggest-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .75rem;
  padding: .7rem .95rem;
  border-top: 1px solid var(--line);
  background: #f7f9f3;
  font-size: .86rem;
  font-weight: 700;
  color: var(--accent-dark);
  text-decoration: none;
}
.search-suggest-foot:hover,
.search-suggest-foot.is-active { background: #eef3e4; }
.search-suggest-empty {
  padding: 1.1rem 1rem;
  color: var(--muted);
  font-size: .9rem;
  margin: 0;
}
.search-suggest-status {
  height: 2px;
  background: transparent;
  overflow: hidden;
}
.search-suggest-status.is-loading {
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  background-size: 40% 100%;
  animation: search-shimmer .8s linear infinite;
}
@keyframes search-shimmer {
  from { background-position: -40% 0; }
  to { background-position: 140% 0; }
}

.search-page { padding: 1.1rem 0 2.5rem; }
.search-toolbar { margin: 0 0 1.1rem; }
.search-hero {
  padding: 1.35rem 1.5rem 1.2rem;
  margin-bottom: 1.25rem;
  border-radius: 18px;
  border: 1px solid var(--line);
  background:
    radial-gradient(1200px 180px at 8% -40%, rgba(150, 183, 70, .22), transparent 55%),
    linear-gradient(180deg, #f7f9f2, #fff);
}
.search-hero h1 {
  margin: 0 0 .9rem;
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3vw, 2.35rem);
  color: var(--accent-dark);
  letter-spacing: -.02em;
}
.search-hero-form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: .5rem;
  position: relative;
  max-width: 720px;
}
.search-hero-field {
  position: relative;
  display: flex;
  align-items: center;
}
.search-hero-field input {
  width: 100%;
  margin: 0;
  border: 1px solid #d5ddc8;
  border-radius: 999px;
  padding: .9rem 2.6rem .9rem 2.6rem;
  background: #fff;
  font-size: 1.02rem;
}
.search-hero-field input:focus {
  outline: none;
  border-color: var(--accent-dark);
  box-shadow: 0 0 0 3px rgba(150, 183, 70, .22);
}
.search-hero-form .header-search-icon { left: 1rem; }
.search-hero-form .header-search-clear { right: .55rem; }
.search-hero-meta {
  margin: .7rem 0 0;
  color: var(--muted);
  font-size: .92rem;
}
.search-hero-meta strong { color: var(--accent-dark); }
.search-corrected {
  margin: 0 0 1rem;
  font-size: .95rem;
}
.search-corrected a { font-weight: 800; }
.search-popular, .search-cats, .search-packs { margin: 0 0 1.25rem; }
.search-popular h2, .search-cats h2, .search-packs h2 {
  margin: 0 0 .55rem;
  font-size: .78rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--muted);
}
.search-chip-row, .search-pack-row {
  display: flex;
  flex-wrap: wrap;
  gap: .45rem;
}
.search-chip {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--line);
  background: var(--bg-soft);
  color: var(--accent-dark);
  border-radius: 999px;
  padding: .4rem .85rem;
  font-size: .86rem;
  font-weight: 700;
}
.search-chip:hover { background: var(--accent-dark); color: #fff; border-color: var(--accent-dark); }
.search-pack-card {
  display: inline-flex;
  align-items: center;
  gap: .65rem;
  padding: .45rem .85rem .45rem .45rem;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  font-weight: 700;
  color: var(--text);
}
.search-pack-card img {
  width: 48px;
  height: 48px;
  object-fit: cover;
  border-radius: 8px;
  background: var(--bg-soft);
}
.search-pack-card:hover { border-color: var(--accent); color: var(--accent-dark); }

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: .75rem;
  margin: .25rem 0 1.5rem;
}
.trust-strip div {
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: .85rem 1rem;
  text-align: center;
  font-size: .88rem;
  font-weight: 700;
  color: var(--accent-dark);
}
.eyebrow {
  margin: 0 0 .45rem;
  font-size: .8rem;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--accent-hover);
}
.hero--shop .hero-panel {
  background: linear-gradient(160deg, #275319, #3d6b28);
  color: #fff;
}
.hero--shop .hero-panel span { color: rgba(255,255,255,.85); }

/* Bundle */
.bundle-box {
  display: grid;
  grid-template-columns: 1.5fr .8fr;
  gap: 1.25rem;
  align-items: center;
}
.bundle-items {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  align-items: center;
}
.bundle-item {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: .65rem;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: .55rem;
  background: #fff;
  min-width: 210px;
  color: inherit;
  text-decoration: none;
}
.bundle-item .media {
  width: 64px;
  height: 64px;
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
}
.bundle-item .media img { width: 100%; height: 100%; object-fit: contain; }
.bundle-item strong { font-size: .85rem; display: block; margin-bottom: .2rem; }
.bundle-plus { font-size: 1.4rem; font-weight: 800; color: var(--accent-dark); }
.bundle-cta .btn { margin-top: .55rem; }

/* Cart */
.cart-layout {
  display: grid;
  grid-template-columns: 1.5fr .7fr;
  gap: 1.25rem;
  align-items: start;
}
.cart-item {
  display: flex;
  gap: .85rem;
  align-items: center;
}
.cart-item img {
  width: 72px;
  height: 72px;
  object-fit: contain;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  padding: 4px;
  display: block;
}
.cart-item-img:hover img {
  border-color: var(--accent);
}
.cart-vol-nudge {
  margin: .35rem 0 0;
}
.cart-vol-nudge button {
  border: 0;
  background: #eaf5dd;
  color: var(--accent-dark);
  font: inherit;
  font-size: .78rem;
  font-weight: 700;
  padding: .28rem .55rem;
  border-radius: 999px;
  cursor: pointer;
}
.cart-vol-nudge button:hover {
  background: #dcecbe;
}
.cart-vol-hint {
  color: #2e7d32;
  font-size: .78rem;
  font-weight: 700;
  margin-top: .2rem;
}
.ship-progress { margin-bottom: 1rem; }
.ship-bar {
  margin-top: .65rem;
  height: 10px;
  background: var(--bg-muted);
  border-radius: 999px;
  overflow: hidden;
}
.ship-bar span {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, var(--accent), var(--accent-dark));
  border-radius: 999px;
}
.summary-row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin: .45rem 0;
  color: var(--muted);
}
.summary-total {
  margin-top: .75rem;
  padding-top: .75rem;
  border-top: 1px solid var(--line);
  font-size: 1.1rem;
  color: var(--text);
}
.cart-summary h3 {
  margin: 0 0 .85rem;
  font-family: var(--font-display);
  color: var(--accent-dark);
}
.coupon-form { margin-top: .9rem; }
.cart-email-form {
  margin: .85rem 0 0;
  padding: .85rem 0 0;
  border-top: 1px solid color-mix(in srgb, var(--line, #d7ddcf) 80%, transparent);
}
.cart-email-title {
  margin: 0;
  font-weight: 700;
  color: var(--accent-dark, #275319);
  font-size: .95rem;
}
.cart-email-text { margin: .25rem 0 .55rem; font-size: .88rem; }
.cart-email-row { display: flex; gap: .4rem; }
.cart-email-row input { flex: 1; text-transform: none; }
.cart-email-msg { margin: .4rem 0 0; font-size: .85rem; color: var(--accent-dark, #275319); }
.cart-email-msg.is-error { color: #b42318; }
.cart-email-saved { margin: .4rem 0 0; font-size: .82rem; color: #4a6b3a; }
.coupon-row { display: flex; gap: .4rem; }
.coupon-row input { flex: 1; text-transform: uppercase; }
.coupon-applied { margin: .4rem 0 .5rem; font-size: .88rem; }
.coupon-err { display: block; color: #b42318; margin-top: .25rem; }
.empty-cart { text-align: center; padding: 2rem 1rem; }
.empty-cart h3 { margin-top: 0; color: var(--accent-dark); font-family: var(--font-display); }
.empty-cart .hero-actions { justify-content: center; }

/* Mobile sticky buy bar */
.mobile-buybar {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 60;
  background: rgba(255,255,255,.98);
  border-top: 1px solid var(--line);
  padding: .65rem .85rem calc(.65rem + env(safe-area-inset-bottom));
  box-shadow: 0 -8px 24px rgba(0,0,0,.1);
  grid-template-columns: auto 1fr auto;
  gap: .55rem;
  align-items: center;
}
.mobile-buybar-price strong { color: var(--accent-dark); font-size: 1.1rem; display: block; line-height: 1.15; }
.mobile-buybar-price span { display: block; color: var(--muted); font-size: .75rem; }
.mobile-buybar .btn {
  min-height: 48px;
  padding: .7rem 1rem;
  font-size: .95rem;
  white-space: nowrap;
}
.mobile-buybar-qty {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 10px;
  overflow: hidden;
  background: var(--bg-soft);
}
.mobile-buybar-qty button {
  width: 40px;
  height: 44px;
  border: 0;
  background: transparent;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--accent-dark);
  cursor: pointer;
}
.mobile-buybar-qty span {
  min-width: 1.5rem;
  text-align: center;
  font-weight: 800;
  color: var(--text);
}
.mobile-buybar.is-idle {
  transform: translateY(110%);
  pointer-events: none;
}
@media (prefers-reduced-motion: no-preference) {
  .mobile-buybar {
    transition: transform .22s ease;
  }
}
.nav-toggle--leading { display: none; }
.search-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  color: var(--accent-dark);
  font-size: 1.2rem;
  cursor: pointer;
  padding: 0;
}
.topbar-short { display: none; }
.cart-unit-mobile { display: none; }
.cart-mobile-bar {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 60;
  background: #fff;
  border-top: 1px solid var(--line);
  padding: .7rem 1rem calc(.7rem + env(safe-area-inset-bottom));
  box-shadow: 0 -8px 24px rgba(0,0,0,.1);
  grid-template-columns: 1fr auto;
  gap: .75rem;
  align-items: center;
}
.cart-mobile-bar strong { color: var(--accent-dark); font-size: 1.15rem; display: block; }
.cart-mobile-bar span { display: block; color: var(--muted); font-size: .78rem; }
.cart-mobile-bar .btn { min-height: 48px; padding: .75rem 1.15rem; }
.mobile-tabbar { display: none; }

@media (max-width: 1100px) {
  .primary-link--end { display: none; }
  .mega-cols { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .mega-col {
    min-width: 0;
    padding: 0 1rem .85rem 0;
    margin: 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .mega-col:nth-last-child(-n+2) { border-bottom: 0; padding-bottom: 0; }
}
@media (max-width: 920px) {
  .header-search { grid-template-columns: 1fr; max-width: none; }
  .header-search .btn { display: none; }
  .mega-panel-inner { grid-template-columns: 1fr; }
  .mega-aside { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .mega-guides { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 980px) {
  .trust-strip { grid-template-columns: repeat(2, 1fr); }
  .bundle-box, .cart-layout { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  :root { --header-h: 58px; --tabbar-h: 64px; }
  .header-actions { display: inline-flex; gap: .35rem; }
  .nav--desktop,
  .primary-nav,
  .cat-nav--desktop,
  .content-nav--desktop { display: none !important; }
  .nav-toggle--trailing { display: none !important; }
  .nav-toggle--leading { display: inline-flex; }
  .search-toggle { display: inline-flex; }
  .header-wish-desktop,
  .header-compare-desktop,
  .header-club-desktop,
  .header-account-desktop { display: none !important; }
  .header-inner--shop {
    grid-template-columns: auto 1fr auto;
    grid-template-rows: auto;
    align-items: center;
    gap: .45rem;
    min-height: 52px;
    padding: .4rem 0;
  }
  .header-inner--shop .nav-toggle--leading { grid-column: 1; grid-row: 1; }
  .header-inner--shop .brand { grid-column: 2; grid-row: 1; justify-self: start; }
  .header-inner--shop .header-actions { grid-column: 3; grid-row: 1; }
  .header-inner--shop .header-search {
    display: none;
    grid-column: 1 / -1;
    grid-row: 2;
    max-width: none;
    margin-top: .15rem;
  }
  .header-inner--shop.is-search-open {
    grid-template-rows: auto auto;
  }
  .header-inner--shop.is-search-open .header-search { display: grid; }
  .header-search-kbd { display: none; }
  .search-suggest { width: 100%; max-width: none; }
  .cart-link--icon .cart-link-label { display: none; }
  .brand img { height: 34px; }
  .topbar-full { display: none; }
  .topbar-short { display: inline; }
  .topbar .container { padding: .32rem 0; gap: .5rem; }
  .topbar { font-size: .78rem; }
  .lang-switch { gap: .15rem; flex-wrap: nowrap; overflow-x: auto; max-width: 52%; scrollbar-width: none; }
  .lang-switch::-webkit-scrollbar { display: none; }
  .lang-switch a { padding: .14rem .32rem; font-size: .68rem; }
  .cookie-bar { padding: .65rem 0; }
  .cookie-bar-inner { gap: .55rem; }
  .cookie-bar p { font-size: .82rem; }
  .cookie-bar-actions { width: 100%; }
  .cookie-bar-actions .btn { flex: 1; min-height: 44px; }
}
@media (max-width: 800px) {
  .mobile-buybar { display: grid; }
  .cart-mobile-bar { display: grid; }
  body:has(.mobile-buybar:not(.is-idle)),
  body:has(.opc-mobile-bar),
  body:has(.cart-mobile-bar) { padding-bottom: calc(78px + env(safe-area-inset-bottom)); }
  body:has(.mobile-buybar:not(.is-idle)) .mobile-tabbar,
  body:has(.opc-mobile-bar) .mobile-tabbar,
  body:has(.cart-mobile-bar) .mobile-tabbar { display: none; }
}
@media (max-width: 520px) {
  .trust-strip { grid-template-columns: 1fr 1fr; }
}

/* Category nav */
.cat-nav {
  border-top: 1px solid var(--line);
  background: #fbfcf9;
}
.cat-nav-inner {
  display: flex;
  gap: .15rem 1rem;
  overflow-x: auto;
  padding: .55rem 0;
  scrollbar-width: thin;
}
.cat-nav a {
  white-space: nowrap;
  font-size: .86rem;
  font-weight: 700;
  color: var(--muted);
  text-decoration: none;
  padding: .2rem 0;
}
.cat-nav a:hover { color: var(--accent-dark); }

.icon-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  height: 44px;
  padding: 0 .55rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--bg-soft);
  color: var(--accent-dark);
  text-decoration: none;
  gap: .2rem;
}
.icon-action:hover { border-color: var(--accent); color: var(--accent-dark); }
.header-actions .wish-link--icon,
.header-actions .compare-link--icon {
  min-width: 44px;
  height: 44px;
  padding: 0 .55rem;
}

.primary-nav {
  position: relative;
  z-index: 2;
  border-top: 1px solid var(--line);
  background: #fbfcf8;
}
.primary-nav-inner {
  display: flex;
  align-items: stretch;
  gap: .15rem 0;
  min-height: 48px;
}
.mega-trigger,
.primary-link {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  padding: .85rem 1rem;
  border: 0;
  background: transparent;
  color: var(--text);
  font: inherit;
  font-weight: 750;
  font-size: .92rem;
  letter-spacing: .01em;
  text-decoration: none;
  cursor: pointer;
  white-space: nowrap;
}
.mega-trigger:hover,
.primary-link:hover,
.mega-item.is-open .mega-trigger,
.mega-item.is-current .mega-trigger,
.primary-link.is-current {
  color: var(--accent-dark);
}
.mega-item.is-open .mega-trigger,
.mega-item.is-current .mega-trigger,
.primary-link.is-current {
  box-shadow: inset 0 -2px 0 var(--accent-dark);
}
.mega-chevron { transition: transform .18s ease; }
.mega-item.is-open .mega-chevron { transform: rotate(180deg); }
.primary-link--end { margin-left: auto; color: var(--muted); font-weight: 650; }
.mega-item { position: static; }
.mega-panel {
  position: absolute;
  left: 0;
  right: 0;
  top: calc(100% - 1px);
  z-index: 80;
  background: #fff;
  border-top: 1px solid var(--line);
  box-shadow: 0 18px 40px rgba(26, 31, 22, .12);
  padding: 1.5rem 0 1.75rem;
}
.mega-panel[hidden],
.nav-scrim[hidden],
.site-drawer[hidden] { display: none !important; }
.mega-panel-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 220px;
  gap: 1.5rem 2rem;
  align-items: start;
}
.mega-panel-inner--compact { grid-template-columns: 1fr; }
.mega-cols {
  display: grid;
  grid-template-columns: repeat(var(--mega-n, 4), minmax(0, 1fr));
  gap: 0;
}
.mega-col {
  min-width: 0;
  padding: 0 1.25rem 0 0;
  margin-right: 1.25rem;
  border-right: 1px solid var(--line);
}
.mega-col:last-child {
  border-right: 0;
  margin-right: 0;
  padding-right: 0;
}
.mega-col-title {
  margin: 0 0 .65rem;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--muted);
}
.mega-col-title--spacer { visibility: hidden; }
.mega-parent {
  display: block;
  font-weight: 800;
  font-size: .95rem;
  color: var(--accent-dark);
  text-decoration: none;
  margin: .15rem 0 .2rem;
  overflow-wrap: anywhere;
}
.mega-parent:hover { text-decoration: underline; }
.mega-children {
  list-style: none;
  margin: 0 0 .75rem;
  padding: 0;
}
.mega-children a {
  display: block;
  padding: .18rem 0;
  color: var(--muted);
  font-size: .88rem;
  font-weight: 600;
  text-decoration: none;
}
.mega-parent.is-current,
.mega-children a.is-current { color: var(--accent-dark); }
.mega-aside {
  display: grid;
  gap: .65rem;
}
.mega-promo {
  display: grid;
  gap: .2rem;
  padding: .9rem 1rem;
  border-radius: 12px;
  background: var(--accent-dark);
  color: #fff;
  text-decoration: none;
}
.mega-promo strong { font-size: .95rem; }
.mega-promo span { font-size: .82rem; opacity: .88; font-weight: 500; }
.mega-promo:hover { color: #fff; filter: brightness(1.06); }
.mega-promo--soft {
  background: var(--bg-soft);
  color: var(--text);
  border: 1px solid var(--line);
}
.mega-promo--soft:hover { color: var(--accent-dark); border-color: var(--accent); }
.mega-guides {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: .35rem .8rem;
}
.mega-guides a {
  padding: .55rem .7rem;
  border-radius: 8px;
  font-weight: 700;
  color: var(--accent-dark);
  text-decoration: none;
}
.mega-guides a:hover { background: var(--bg-soft); }
.mega-guides a.is-current { background: var(--bg-soft); box-shadow: inset 0 0 0 1px var(--line); }

.nav-scrim {
  position: fixed;
  inset: 0;
  z-index: 85;
  background: rgba(26, 31, 22, .42);
}
.site-drawer {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  z-index: 90;
  width: min(100%, 400px);
  background: #fff;
  box-shadow: 8px 0 32px rgba(26, 31, 22, .16);
  display: none;
  flex-direction: column;
  max-height: none;
  overflow: hidden;
  border-top: 0;
}
.site-drawer.is-open {
  display: flex;
}
.site-drawer-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: .85rem 1.1rem;
  border-bottom: 1px solid var(--line);
  flex-shrink: 0;
}
.site-drawer-head strong { font-size: 1.05rem; }
.site-drawer-close {
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  font-size: 1.8rem;
  line-height: 1;
  color: var(--muted);
  cursor: pointer;
}
.site-drawer-body {
  overflow: auto;
  padding: .4rem 1.1rem calc(1.5rem + env(safe-area-inset-bottom));
  -webkit-overflow-scrolling: touch;
}
.drawer-link,
.drawer-acc > summary,
.drawer-parent,
.drawer-children a {
  display: block;
  padding: .7rem 0;
  border-bottom: 1px solid var(--line);
  color: var(--text);
  font-weight: 700;
  text-decoration: none;
}
.drawer-acc { border-bottom: 0; }
.drawer-acc > summary {
  list-style: none;
  cursor: pointer;
  font-weight: 800;
  color: var(--accent-dark);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .75rem;
}
.drawer-acc > summary::-webkit-details-marker { display: none; }
.drawer-acc > summary::after {
  content: "";
  width: 7px;
  height: 7px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  transition: transform .15s ease;
  flex-shrink: 0;
}
.drawer-acc[open] > summary::after {
  transform: rotate(-135deg);
  margin-top: 4px;
}
.drawer-acc-body { padding: 0 0 .5rem .1rem; }
.drawer-group-label {
  margin: .85rem 0 .25rem;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--muted);
}
.drawer-parent { color: var(--accent-dark); padding: .55rem 0; border-bottom: 0; }
.drawer-children { display: grid; padding: 0 0 .45rem .85rem; }
.drawer-children a {
  padding: .4rem 0;
  border: 0;
  font-weight: 600;
  font-size: .9rem;
  color: var(--muted);
}

.mobile-tabbar button {
  appearance: none;
  border: 0;
  background: transparent;
  font: inherit;
  color: inherit;
  cursor: pointer;
}

/* Variants */
.variant-box {
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  padding: .85rem;
  margin-bottom: 1rem;
}
.variant-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: .45rem;
}
.variant-chip {
  display: grid;
  gap: .15rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: .55rem .65rem;
  background: var(--bg-soft);
  text-decoration: none;
  color: inherit;
  min-height: 3.4rem;
  align-content: center;
}
.variant-chip em {
  font-style: normal;
  font-size: .78rem;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.25;
}
.variant-chip strong {
  color: var(--accent-dark);
  font-size: .9rem;
}
@media (max-width: 720px) {
  .variant-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
.variant-chip:hover { border-color: var(--accent); }
.variant-chip.is-active {
  border-color: var(--accent-dark);
  background: #f4f9ec;
  box-shadow: 0 0 0 2px rgba(39,83,25,.1);
}

/* Checkout */
.checkout-steps {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin: .5rem 0 1.25rem;
}
.checkout-steps span {
  font-size: .82rem;
  font-weight: 800;
  padding: .4rem .75rem;
  border-radius: 999px;
  background: var(--bg-soft);
  color: var(--muted);
  border: 1px solid var(--line);
}
.checkout-steps .is-active {
  background: var(--accent-dark);
  color: #fff;
  border-color: var(--accent-dark);
}
.checkout-steps .is-done {
  background: #eaf5dd;
  color: var(--accent-dark);
  border-color: #cfe6b4;
}
.checkout-block-title {
  margin: 1.1rem 0 .65rem;
  font-size: 1.05rem;
  color: var(--accent-dark);
  font-family: var(--font-display);
}
.form-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .75rem;
}
.form-grid-3 {
  display: grid;
  grid-template-columns: 1.2fr .8fr 1fr;
  gap: .75rem;
}
.pay-methods { display: grid; gap: .5rem; }
.pay-method {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: .75rem;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: .75rem .9rem;
  background: #fff;
  cursor: pointer;
}
.pay-method:has(input:checked) {
  border-color: var(--accent-dark);
  background: #f4f9ec;
}
.pay-method strong { display: block; color: var(--text); }
.pay-method small { color: var(--muted); }
.thanks-box { text-align: center; padding: 2.25rem 1.25rem; max-width: 640px; margin: 0 auto; }
.thanks-order-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: .5rem .75rem;
  flex-wrap: wrap;
  margin: 0 0 .75rem;
}
.contact-sent {
  margin: 0;
  max-width: none;
  text-align: left;
}
.contact-sent .thanks-icon { margin: 0 0 .85rem; }
.auth-hint.is-ok { color: var(--ok); }
.thanks-box h1 {
  font-family: var(--font-display);
  color: var(--accent-dark);
  margin: .5rem 0;
}
.thanks-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #eaf5dd;
  color: var(--ok);
  font-size: 1.6rem;
  font-weight: 800;
}
.thanks-total { margin: 1rem 0 .75rem; }
.thanks-next {
  text-align: left;
  background: var(--bg-soft);
  margin: 1rem 0;
}
.bank-box {
  text-align: left;
  margin: 1rem 0;
  background: var(--bg-soft);
}
.bank-dl {
  margin: 0;
  display: grid;
  gap: .45rem;
}
.bank-dl div {
  display: grid;
  grid-template-columns: 8.5rem 1fr;
  gap: .4rem;
  align-items: baseline;
}
.bank-dl dt { margin: 0; color: var(--muted); font-size: .82rem; font-weight: 700; }
.bank-dl dd { margin: 0; }
.bank-dl code { font-size: .92rem; }
.thanks-paid-badge {
  display: inline-block;
  margin: .35rem 0 0;
  padding: .35rem .75rem;
  border-radius: 999px;
  background: #eaf5dd;
  color: var(--accent-dark);
  font-size: .85rem;
  font-weight: 800;
}
.thanks-trust {
  list-style: none;
  margin: 1.15rem auto 0;
  padding: 0;
  display: grid;
  gap: .4rem;
  max-width: 28rem;
  text-align: left;
  color: var(--muted);
  font-size: .92rem;
}
.thanks-trust li::before {
  content: "✓ ";
  color: var(--ok);
  font-weight: 800;
}
.thanks-rating {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: .45rem .7rem;
  margin-top: 1.1rem;
  color: var(--muted);
  font-size: .9rem;
}
.thanks-actions { justify-content: center; margin-top: 1.25rem; }
.pay-ssl-note {
  margin: .75rem 0 0;
  text-align: center;
  color: var(--muted);
  font-size: .82rem;
}
.pay-rating,
.cart-rating {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .4rem .65rem;
  margin-top: 1rem;
  padding-top: .9rem;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: .88rem;
}
.search-trust {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .45rem .7rem;
  margin: -.35rem 0 1rem;
  color: var(--muted);
  font-size: .9rem;
}

/* Toast */
.toast-wrap {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 80;
  display: grid;
  gap: .5rem;
}
.toast {
  background: var(--accent-dark);
  color: #fff;
  padding: .85rem 1rem;
  border-radius: 10px;
  box-shadow: var(--shadow-hover);
  font-weight: 700;
  font-size: .92rem;
  animation: rise .25s ease both;
  max-width: 280px;
}
.toast a { color: #d4e157; margin-left: .35rem; }

@media (max-width: 800px) {
  .form-grid-2, .form-grid-3 { grid-template-columns: 1fr; }
  .toast-wrap { left: 1rem; right: 1rem; bottom: 5.2rem; }
  .toast { max-width: none; }
}

/* Home commercial */
.hero-panel--deal {
  align-content: start;
  gap: .85rem;
  background:
    linear-gradient(160deg, #275319 0%, #3a6f22 55%, #96b746 140%);
  color: #fff;
  border: 0;
}
.hero-panel--deal strong { color: #fff; }
.hero-kicker {
  display: inline-block;
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
  background: rgba(255,255,255,.14);
  padding: .35rem .65rem;
  border-radius: 999px;
  width: fit-content;
}
.hero-tiers {
  list-style: none;
  margin: .25rem 0 .5rem;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .45rem;
}
.hero-tiers li {
  display: flex;
  justify-content: space-between;
  gap: .5rem;
  background: rgba(255,255,255,.12);
  border-radius: 8px;
  padding: .55rem .7rem;
  font-size: .9rem;
}
.hero-tiers em { font-style: normal; font-weight: 700; }
.hero-tiers span { font-weight: 800; color: #eaf5dd; }
.hero-panel--deal .btn-primary {
  justify-self: start;
  margin-top: .35rem;
}

.grid-cats--visual {
  grid-template-columns: repeat(4, 1fr);
}
.category-card--visual {
  padding: 0;
  overflow: hidden;
  background: #fff;
}
.category-card-media {
  aspect-ratio: 4 / 3;
  background: #fff;
  display: grid;
  place-items: center;
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}
.category-card-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: .75rem;
  transition: transform .35s ease;
}
.category-card--visual:hover .category-card-media img {
  transform: scale(1.04);
}
.category-card-body { padding: .95rem 1rem 1.1rem; }
.category-card-body h3 { margin: 0 0 .25rem; }
.category-card-body p { margin: 0; }

.home-cta {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 1.5rem;
  align-items: center;
  margin: .5rem 0 1.5rem;
  padding: 1.5rem 1.6rem;
  border-radius: 16px;
  border: 1px solid var(--line);
  background:
    linear-gradient(120deg, rgba(150,183,70,.12), rgba(255,255,255,.9) 45%),
    var(--bg-soft);
}
.home-cta h2 {
  margin: 0 0 .4rem;
  font-family: var(--font-display);
  color: var(--accent-dark);
  font-size: clamp(1.35rem, 2.2vw, 1.75rem);
}
.home-cta p { margin: 0; color: var(--muted); max-width: 46ch; }
.home-cta-search {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: .55rem;
}
.home-cta-search input {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: .85rem 1.1rem;
  font: inherit;
}

/* Auth / account */
.auth-wrap {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 1.25rem;
  padding: 1.5rem 0 2.5rem;
  align-items: start;
}
.auth-card h1 {
  margin: .2rem 0 .5rem;
  font-family: var(--font-display);
  color: var(--accent-dark);
  font-size: clamp(1.7rem, 3vw, 2.2rem);
}
.auth-lead { margin: 0 0 1.1rem; color: var(--muted); }
.auth-form {
  display: grid;
  gap: .85rem;
}
.auth-form label { margin: 0; }
.auth-form .btn { width: 100%; margin-top: .25rem; }
.auth-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .75rem;
}
.auth-hint { margin: -.35rem 0 0; color: var(--muted); font-size: .85rem; }
.auth-forgot { margin: -.35rem 0 0; font-size: .9rem; }
.auth-forgot a { font-weight: 700; }
.auth-switch { margin: 1rem 0 0; color: var(--muted); }
.auth-aside {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.25rem 1.3rem;
  background: var(--bg-soft);
}
.auth-aside strong {
  display: block;
  font-family: var(--font-display);
  color: var(--accent-dark);
  font-size: 1.2rem;
  margin-bottom: .75rem;
}
.auth-aside ul {
  margin: 0 0 1.1rem;
  padding-left: 1.1rem;
  color: var(--muted);
  display: grid;
  gap: .35rem;
}

.account-wrap { padding: 1.25rem 0 2.5rem; }
.account-wrap h1 {
  margin: .15rem 0 0;
  font-family: var(--font-display);
  color: var(--accent-dark);
  font-size: clamp(1.6rem, 2.8vw, 2.1rem);
}
.account-grid {
  display: grid;
  grid-template-columns: .9fr 1.4fr;
  gap: 1rem;
}
.account-summary h2,
.account-grid h2 {
  margin: 0 0 1rem;
  font-size: 1.1rem;
  color: var(--accent-dark);
}
.account-dl {
  margin: 0 0 1.1rem;
  display: grid;
  gap: .75rem;
}
.account-dl dt {
  font-size: .78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .04em;
  color: var(--muted);
}
.account-dl dd { margin: .15rem 0 0; font-weight: 650; }
.order-status {
  display: inline-block;
  padding: .25rem .55rem;
  border-radius: 999px;
  background: #eaf5dd;
  color: var(--accent-dark);
  font-size: .82rem;
  font-weight: 750;
}
.order-status--lg { font-size: .95rem; padding: .4rem .8rem; }
.account-wrap .muted { color: var(--muted); font-size: .85rem; }
.account-addresses { grid-column: 1 / -1; }
.account-addresses h3 { margin: 1.25rem 0 .75rem; font-size: 1rem; color: var(--accent-dark); }
.address-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: .75rem;
  margin: 0 0 1.1rem;
}
.address-card {
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: .85rem 1rem;
  background: #fff;
  display: grid;
  gap: .3rem;
}
.address-card header { display: flex; gap: .45rem; align-items: center; flex-wrap: wrap; }
.address-card p { margin: 0; line-height: 1.4; }
.address-card form { margin-top: .35rem; }
.address-badge {
  font-size: .72rem;
  font-weight: 800;
  color: var(--ok);
  background: #eaf5dd;
  border-radius: 999px;
  padding: .12rem .45rem;
}
.address-picker { display: grid; gap: .45rem; margin: 0 0 1rem; }
.address-picker-label { margin: 0; font-weight: 700; color: var(--accent-dark); font-size: .88rem; }
.address-chip {
  display: grid;
  gap: .15rem;
  text-align: left;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 10px;
  padding: .65rem .8rem;
  cursor: pointer;
  font: inherit;
}
.address-chip.is-active { border-color: var(--accent-dark); box-shadow: 0 0 0 2px rgba(26, 61, 18, .12); }
.address-chip span { color: var(--muted); font-size: .86rem; }
.account-summary .auth-form .btn,
.account-profile-form .btn { width: 100%; }
.account-profile-form { display: grid; gap: .75rem; }
.account-pass {
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: .65rem .8rem;
  background: var(--bg-soft);
}
.account-pass summary {
  cursor: pointer;
  font-weight: 750;
  color: var(--accent-dark);
}
.account-pass[open] summary { margin-bottom: .65rem; }
.account-pass label { display: grid; gap: .3rem; margin-top: .55rem; }
.account-tracking {
  margin-bottom: 1rem;
  background: #f4f9ec;
  border-color: #cfe6b4;
  display: grid;
  gap: .45rem;
}
.account-tracking p { margin: 0; }
.order-number-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .55rem .75rem;
}
.order-number-row h1 { margin: 0; }
.btn-copy-inline {
  padding: .28rem .7rem;
  min-height: 36px;
  font-size: .82rem;
}
.order-item-link {
  color: inherit;
  text-decoration: none;
}
.order-item-link:hover { color: var(--accent-dark); text-decoration: underline; }
.account-order-grid {
  display: grid;
  grid-template-columns: 1.45fr .85fr;
  gap: 1rem;
}
.account-order-aside { display: grid; gap: .85rem; align-content: start; }
.account-order-aside h3 {
  margin: 0 0 .75rem;
  font-size: 1.05rem;
  color: var(--accent-dark);
  font-family: var(--font-display);
}
.account-totals {
  margin-top: 1rem;
  display: grid;
  gap: .4rem;
  border-top: 1px solid var(--line);
  padding-top: .85rem;
}
.account-totals > div {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  color: var(--muted);
}
.account-totals .is-total {
  color: var(--text);
  font-size: 1.05rem;
  margin-top: .25rem;
}
.contact-layout {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 1rem;
  align-items: start;
}
.legal-body h2 {
  margin: 1.35rem 0 .5rem;
  font-size: 1.15rem;
  color: var(--accent-dark);
  font-family: var(--font-display);
}
.empty-content .hero-actions { margin-top: .25rem; }
.error-404 { padding-top: 1.5rem; }
.error-404-card {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
  padding: 2rem 1.4rem;
}
.error-404-card h1 {
  margin: .35rem 0 .75rem;
  font-family: var(--font-display);
  color: var(--accent-dark);
  font-size: clamp(1.7rem, 3vw, 2.2rem);
}
.error-404-card .hero-actions { justify-content: center; }
.error-404-search {
  max-width: 28rem;
  margin: 1.1rem auto 1.15rem;
  text-align: left;
}
.pager {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: .55rem;
  margin: 1.4rem 0 .25rem;
  flex-wrap: wrap;
}
.pager-btn {
  min-height: 44px;
  min-width: 44px;
  padding: .45rem .95rem;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  color: var(--accent-dark);
  font-weight: 800;
  text-decoration: none;
  display: inline-grid;
  place-items: center;
}
.pager-btn:hover { border-color: var(--accent); }
.pager-btn.is-disabled {
  color: var(--muted);
  pointer-events: none;
  background: var(--bg-soft);
}
.pager-status {
  font-weight: 700;
  color: var(--muted);
  font-size: .92rem;
}
.back-top {
  position: fixed;
  right: 1rem;
  bottom: calc(1rem + env(safe-area-inset-bottom));
  z-index: 50;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.96);
  color: var(--accent-dark);
  box-shadow: 0 8px 22px rgba(26,31,22,.14);
  display: grid;
  place-items: center;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
}
.back-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: none;
}
@media (prefers-reduced-motion: no-preference) {
  .back-top { transition: opacity .2s ease, transform .2s ease; }
}

@media (max-width: 960px) {
  .grid-cats--visual { grid-template-columns: repeat(2, 1fr); }
  .home-cta, .auth-wrap, .account-grid, .account-order-grid, .contact-layout { grid-template-columns: 1fr; }
}

/* Professional store home */
.home-hero {
  position: relative;
  min-height: min(72vh, 640px);
  display: grid;
  align-items: end;
  margin: 0 calc(50% - 50vw);
  width: 100vw;
  overflow: hidden;
  background: #10180e;
}
.home-hero-media {
  position: absolute;
  inset: 0;
}
.home-hero-media picture,
.home-hero-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 72% 48%;
}
.home-hero-veil {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(105deg,
      rgba(12, 20, 10, .92) 0%,
      rgba(14, 26, 12, .86) 28%,
      rgba(16, 30, 14, .58) 48%,
      rgba(18, 34, 16, .28) 68%,
      rgba(18, 34, 16, .12) 100%),
    linear-gradient(to top, rgba(10, 16, 8, .55) 0%, transparent 42%);
}
.home-hero-veil::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .18;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='140' height='140'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='4' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 .55 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
}
.home-hero-inner {
  position: relative;
  z-index: 1;
  padding: 4.6rem 0 3.6rem;
}
.home-hero-copy {
  max-width: 36rem;
  animation: homeRise .7s ease both;
}
.home-hero-brand {
  display: block;
  height: 52px;
  width: auto;
  margin-bottom: 1.25rem;
  filter: drop-shadow(0 8px 18px rgba(0,0,0,.35));
}
.home-hero h1,
.home-hero-title {
  margin: 0 0 .8rem;
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4.8vw, 3.45rem);
  line-height: 1.05;
  letter-spacing: -.03em;
  color: #fff;
  max-width: 14ch;
  text-shadow: 0 2px 24px rgba(0,0,0,.35);
}
.home-hero-copy > p {
  margin: 0;
  font-size: 1.1rem;
  color: rgba(255,255,255,.9);
  max-width: 38ch;
  text-shadow: 0 1px 12px rgba(0,0,0,.35);
}
.home-hero-search {
  margin-top: 1.35rem;
  max-width: 28rem;
}
.home-hero-search .search-hero-field input {
  background: rgba(255,255,255,.96);
  border-color: transparent;
}
.home-hero-search .search-suggest {
  top: auto;
  bottom: calc(100% + .4rem);
  max-height: min(42vh, 340px);
}
.home-hero .hero-actions { margin-top: 1.65rem; }
.home-hero .hero-actions .btn-primary {
  background: #96b746;
  border-color: #96b746;
  color: #1a3812;
}
.home-hero .hero-actions .btn-primary:hover {
  background: #a8c85a;
  border-color: #a8c85a;
}
.home-hero .hero-actions .btn-dark {
  background: transparent;
  border: 1.5px solid rgba(255,255,255,.72);
  color: #fff;
}
.home-hero .hero-actions .btn-dark:hover {
  background: rgba(255,255,255,.12);
  border-color: #fff;
}

.trust-bar {
  position: relative;
  z-index: 3;
  margin: -1.35rem calc(50% - 50vw) 0;
  width: 100vw;
  background: #f4f1ea;
  background: color-mix(in srgb, #f4f1ea 88%, #fff);
  border-top: 1px solid rgba(255,255,255,.18);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 -18px 40px rgba(8, 14, 6, .18);
}
.trust-bar-inner {
  width: min(var(--container), calc(100% - 2rem));
  margin: 0 auto;
  display: flex;
  align-items: stretch;
}
.trust-bar-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: .7rem;
  align-items: center;
  flex: 1 1 0;
  padding: 1.05rem 1rem;
  min-height: 88px;
  min-width: 0;
  text-decoration: none;
  color: var(--accent-dark);
  border-right: 1px solid var(--line);
}
.trust-bar-item:last-child { border-right: 0; }
.trust-bar-item--link:hover { color: var(--accent-dark); background: rgba(150, 183, 70, .08); }
.trust-bar-icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #eef3e2;
  color: var(--accent-dark);
  flex-shrink: 0;
}
.trust-bar-copy {
  display: grid;
  gap: .12rem;
  min-width: 0;
}
.trust-bar-copy strong {
  font-size: .92rem;
  font-weight: 800;
  line-height: 1.25;
}
.trust-bar-copy > span,
.trust-bar-copy .stars-count {
  color: var(--muted);
  font-size: .8rem;
  font-weight: 650;
  overflow: hidden;
  line-height: 1.3;
}
.trust-bar-copy .stars {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .15rem .3rem;
  font-size: .92rem;
  line-height: 1;
}
.trust-bar-copy .stars-value { color: var(--accent-dark); font-size: .92rem; }
.home-section { padding: 2.75rem 0; }
.home-section--soft {
  background: var(--bg-soft);
  margin: 0 calc(50% - 50vw);
  width: 100vw;
  padding-left: max(1rem, calc((100vw - var(--container)) / 2));
  padding-right: max(1rem, calc((100vw - var(--container)) / 2));
}
.home-volume {
  background: linear-gradient(120deg, #1f4214 0%, #275319 45%, #4a7a2a 100%);
  color: #fff;
  margin: .5rem calc(50% - 50vw);
  width: 100vw;
  padding: 2.4rem 0;
}
.home-volume-inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr auto;
  gap: 1.5rem;
  align-items: center;
}
.home-volume h2 {
  margin: .2rem 0 .45rem;
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.6vw, 2rem);
  color: #fff;
}
.home-volume p { margin: 0; color: rgba(255,255,255,.82); max-width: 36ch; }
.home-volume-tiers {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: .45rem;
}
.home-volume-tiers li {
  display: grid;
  gap: .15rem;
  background: rgba(255,255,255,.12);
  border-radius: 10px;
  padding: .7rem .75rem;
  text-align: center;
}
.home-volume-tiers em { font-style: normal; font-weight: 700; font-size: .85rem; }
.home-volume-tiers span { font-weight: 800; color: #eaf5dd; font-size: 1.05rem; }
.home-paths {
  padding: 2.5rem 0 1rem;
}
.home-paths-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: .75rem;
}
.home-path {
  display: grid;
  gap: .3rem;
  padding: 1.15rem 1.2rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  text-decoration: none;
  color: inherit;
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}
.home-path:hover {
  border-color: rgba(150,183,70,.55);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
  text-decoration: none;
  color: inherit;
}
.home-path strong {
  color: var(--accent-dark);
  font-size: 1.05rem;
}
.home-path span { color: var(--muted); font-size: .9rem; }
@keyframes homeRise {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: none; }
}
@media (max-width: 960px) {
  .home-volume-inner { grid-template-columns: 1fr; }
  .home-volume-tiers { grid-template-columns: repeat(2, 1fr); }
  .home-paths-grid { grid-template-columns: repeat(2, 1fr); }
  .home-hero { min-height: min(70vh, 560px); }
  .home-hero-media img { object-position: 78% 42%; }
  .trust-bar { margin-top: -1rem; }
  .trust-bar-inner { flex-wrap: wrap; }
  .trust-bar-item {
    flex: 1 1 32%;
    border-bottom: 0;
  }
  .trust-bar-item:nth-child(-n+3) { border-bottom: 1px solid var(--line); }
  .trust-bar-item:nth-child(3n) { border-right: 0; }
}
@media (max-width: 640px) {
  .home-paths-grid { grid-template-columns: 1fr; }
  .home-hero-brand { height: 46px; }
  .home-hero-inner { padding: 3rem 0 2.4rem; }
}

/* Content SEO nav */
.content-nav {
  border-bottom: 1px solid var(--line);
  background: #f7faf2;
}
.content-nav-inner {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  padding: .55rem 0;
  font-size: .86rem;
  font-weight: 700;
}
.content-nav a {
  color: var(--accent-dark);
  text-decoration: none;
  white-space: nowrap;
  opacity: .85;
}
.content-nav a:hover { opacity: 1; color: var(--accent-dark); text-decoration: underline; }

.universe-index {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: .75rem;
  margin-bottom: 2rem;
}
.universe-card {
  display: grid;
  gap: .25rem;
  padding: 1rem 1.1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  text-decoration: none;
  color: inherit;
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}
.universe-card:hover {
  border-color: rgba(150,183,70,.55);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
  text-decoration: none;
  color: inherit;
}
.universe-card strong {
  color: var(--accent-dark);
  font-size: 1.02rem;
}
.universe-card span {
  color: var(--muted);
  font-size: .88rem;
  line-height: 1.4;
}
@media (max-width: 900px) {
  .universe-index { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .universe-index { grid-template-columns: 1fr; }
}

/* SEO content */
.content-header { margin: 1rem 0 1.25rem; }
.content-header h1 {
  margin: .25rem 0 .65rem;
  font-family: var(--font-display);
  color: var(--accent-dark);
  font-size: clamp(1.8rem, 3.2vw, 2.5rem);
  max-width: 22ch;
}
.content-lead {
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 56ch;
}
.content-read-meta {
  margin: .65rem 0 0;
  color: var(--muted);
  font-size: .88rem;
  font-weight: 650;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .5rem 1rem;
}
.content-read-meta .btn { font-weight: 700; }
.read-progress {
  position: fixed;
  top: var(--header-h, 72px);
  left: 0;
  right: 0;
  height: 3px;
  z-index: 65;
  pointer-events: none;
  background: transparent;
}
.read-progress[hidden] { display: none; }
.read-progress > span {
  display: block;
  height: 100%;
  width: 0;
  background: var(--accent);
  box-shadow: 0 0 8px rgba(150, 183, 70, .45);
}
.content-layout {
  display: grid;
  grid-template-columns: 1.55fr .75fr;
  gap: 1.25rem;
  align-items: start;
}
.content-body { margin: 0; }
.content-body h2,
.legal-body h2 {
  scroll-margin-top: calc(var(--header-h) + 1.25rem);
}
.sticky-buy {
  position: sticky;
  top: calc(var(--header-h) + .75rem);
}
.content-aside { display: grid; gap: 1rem; }
.aside-products { display: grid; gap: .85rem; }
.aside-product {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: .65rem;
  align-items: start;
}
.aside-product img {
  width: 64px;
  height: 64px;
  object-fit: contain;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}
.aside-product a { color: inherit; text-decoration: none; }
.aside-links {
  margin: .65rem 0 0;
  padding-left: 1.1rem;
  display: grid;
  gap: .35rem;
}
.universe-block { margin-bottom: 2rem; }
.faq-list { display: grid; gap: .55rem; }
.help-toc {
  display: flex;
  flex-wrap: wrap;
  gap: .45rem;
  margin: 0 0 1.35rem;
}
.help-toc a {
  display: inline-flex;
  align-items: center;
  padding: .35rem .7rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: #fff;
  font-size: .82rem;
  font-weight: 700;
  color: var(--accent-dark);
  text-decoration: none;
}
.help-toc a:hover { border-color: var(--accent); background: var(--bg-soft); }
.content-toc {
  margin: 0 0 1rem;
  position: sticky;
  top: calc(var(--header-h) + .4rem);
  z-index: 4;
  background: var(--bg);
  padding: .35rem 0;
}

/* Packs */
.pack-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.15rem;
}
.pack-card { display: flex; flex-direction: column; overflow: hidden; padding: 0; }
.pack-card-media {
  display: flex;
  gap: .35rem;
  align-items: center;
  justify-content: center;
  padding: 1rem 1rem .4rem;
  background:
    radial-gradient(120% 80% at 10% 0%, rgba(150, 183, 70, .18), transparent 55%),
    var(--bg-soft);
  min-height: 132px;
  position: relative;
}
.pack-card-media img {
  width: 72px;
  height: 72px;
  object-fit: contain;
  background: #fff;
  border-radius: 10px;
  border: 1px solid var(--line);
  padding: .25rem;
}
.pack-save {
  position: absolute;
  top: .7rem;
  right: .7rem;
  background: var(--accent-dark);
  color: #fff;
  font-size: .75rem;
  font-weight: 800;
  padding: .2rem .5rem;
  border-radius: 999px;
}
.pack-card-body { padding: 1rem 1.1rem 1.15rem; display: grid; gap: .45rem; }
.pack-card-body h2, .pack-card-body h3 { margin: 0; font-size: 1.12rem; font-family: var(--font-display); color: var(--accent-dark); }
.pack-card-body p { margin: 0; color: var(--muted); font-size: .9rem; }
.pack-bits { margin: .15rem 0; padding-left: 1.1rem; color: var(--muted); font-size: .85rem; }
.pack-bits a { color: inherit; text-decoration: underline; text-underline-offset: .12em; }
.pack-bits a:hover { color: var(--accent-dark); }
.pack-price-row { display: flex; gap: .65rem; align-items: baseline; }
.pack-card-actions {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: .45rem;
  align-items: stretch;
  margin-top: .25rem;
}
.pack-card-actions .btn { min-height: 44px; }
.pack-card-actions form { margin: 0; }
.pack-includes { font-size: .82rem; font-weight: 650; }
.price-was { color: var(--muted); text-decoration: line-through; font-size: .9rem; }
.pack-detail-head { margin-bottom: 1.4rem; max-width: 62ch; }
.pack-detail-layout {
  display: grid;
  grid-template-columns: 1.4fr .7fr;
  gap: 1.25rem;
  align-items: start;
}
.pack-detail-items { display: grid; gap: .7rem; }
.pack-line {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: .85rem;
  align-items: center;
  text-decoration: none;
  color: inherit;
}
.pack-line .media { width: 88px; height: 88px; background: var(--bg-soft); border-radius: 10px; overflow: hidden; }
.pack-line .media img { width: 100%; height: 100%; object-fit: contain; }
.pack-save-label { margin: 0 0 .35rem; font-weight: 800; color: var(--accent-dark); }
.pack-grid--pdp { grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); }
@media (max-width: 860px) {
  .pack-detail-layout { grid-template-columns: 1fr; }
}
.help-group { margin: 0 0 1.6rem; scroll-margin-top: calc(var(--header-h) + 1rem); }
.help-search {
  max-width: 28rem;
  margin: 0 0 1.1rem;
}
.help-search input {
  width: 100%;
  min-height: 48px;
}
.help-empty { color: var(--muted); margin: 0 0 1rem; }
.sku-copy {
  border: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
  padding: 0;
  text-decoration: underline dotted;
  text-underline-offset: .15em;
}
.sku-copy:hover { color: var(--accent-dark); }
.help-group h2 {
  margin: 0 0 .7rem;
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--accent-dark);
}
.help-faq-item {
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: .85rem 1rem;
  background: #fff;
  scroll-margin-top: calc(var(--header-h) + 1rem);
}
.help-faq-item summary { list-style: none; }
.help-faq-item summary::-webkit-details-marker { display: none; }
.help-faq-item .prose { margin: .55rem 0 0; }
.help-aside { margin-top: .5rem; }
@media (max-width: 900px) {
  .content-layout { grid-template-columns: 1fr; }
  .content-toc { position: static; }
  .sticky-buy { position: static; }
}
@media (max-width: 640px) {
  .grid-cats--visual { grid-template-columns: 1fr 1fr; }
  .auth-grid-2 { grid-template-columns: 1fr; }
  .home-cta-search { grid-template-columns: 1fr; }
}

/* One-page checkout */
.opc { padding: 1rem 0 5.5rem; }
.opc-top {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: .75rem 1.25rem;
  align-items: center;
  margin-bottom: .35rem;
}
.opc-top .checkout-steps { margin: 0; }
.opc-top .checkout-steps a {
  font-size: .82rem;
  font-weight: 800;
  padding: .4rem .75rem;
  border-radius: 999px;
  background: #eaf5dd;
  color: var(--accent-dark);
  border: 1px solid #cfe6b4;
  text-decoration: none;
}
.opc-secure {
  display: grid;
  gap: .1rem;
  text-align: right;
  font-size: .8rem;
  color: var(--muted);
}
.opc-secure strong { color: var(--ok); font-size: .85rem; }
.opc-top-aside { display: grid; gap: .25rem; justify-items: end; }
.opc-help-link {
  font-size: .82rem;
  font-weight: 700;
  color: var(--accent-dark);
}
.opc-head { margin: .5rem 0 1.1rem; }
.opc-head h1 {
  margin: 0 0 .35rem;
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 2.6vw, 2.1rem);
  color: var(--accent-dark);
}
.opc-head p { margin: 0; color: var(--muted); }
.opc-ship-banner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: .85rem;
  align-items: center;
  margin-bottom: 1.1rem;
  padding: .95rem 1.1rem;
}
.opc-ship-banner[hidden] { display: none !important; }
.opc-ship-banner .ship-bar { margin-top: .55rem; max-width: 360px; }
.opc-ship-banner--ok { background: #eaf5dd; border-color: #cfe6b4; }
.opc-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, .85fr);
  gap: 1.25rem;
  align-items: start;
}
.opc-form { display: grid; gap: 1rem; }
.opc-block { padding: 1.15rem 1.2rem 1.25rem; margin: 0; }
.opc-block-head {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem 1rem;
  align-items: flex-start;
  margin-bottom: .9rem;
}
.opc-block-head h2 {
  margin: 0;
  font-size: 1.15rem;
  font-family: var(--font-display);
  color: var(--accent-dark);
}
.opc-block-head p { margin: .15rem 0 0; color: var(--muted); font-size: .9rem; }
.opc-step-num {
  width: 1.85rem;
  height: 1.85rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--accent-dark);
  color: #fff;
  font-weight: 800;
  font-size: .9rem;
  flex-shrink: 0;
}
.opc-login-link {
  margin-left: auto;
  font-size: .88rem;
  font-weight: 700;
}
.opc-check {
  display: flex;
  gap: .55rem;
  align-items: flex-start;
  margin: .85rem 0;
  font-size: .92rem;
  font-weight: 600;
}
.opc-check input { margin-top: .2rem; width: auto; }
.opc-reveal {
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--bg-soft);
  padding: .85rem;
  margin-bottom: .75rem;
}
.opc-ship-methods { display: grid; gap: .5rem; margin: .85rem 0 1rem; }
.opc-ship-method {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  margin: 0;
  padding: .75rem .9rem;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: #fff;
  font-size: .92rem;
  cursor: pointer;
}
.opc-ship-method:has(input:checked) {
  border-color: var(--accent-dark);
  background: #f4f9ec;
  box-shadow: 0 0 0 2px rgba(26, 61, 18, .12);
}
.opc-ship-method input { width: auto; margin: 0; }
.opc-ship-method span { display: grid; gap: .15rem; flex: 1; }
.opc-ship-method strong { color: var(--accent-dark); }
.opc-ship-method small { color: var(--muted); font-size: .78rem; }
.opc-ship-method em { font-style: normal; font-weight: 800; color: var(--accent-dark); white-space: nowrap; }
.opc-ship-notice {
  margin: 0 0 1rem;
  padding: .7rem .85rem;
  border-radius: 10px;
  background: rgba(181, 106, 50, .08);
  border: 1px solid rgba(181, 106, 50, .22);
  color: var(--ink-soft);
  font-size: .86rem;
}
.ship-calc { margin: 0 0 1.2rem; }
.ship-calc-title { font-weight: 700; margin: 0 0 .55rem; color: var(--accent-dark); }
.ship-calc-row {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, .9fr) auto;
  gap: .55rem;
  align-items: end;
}
.ship-calc-row label { margin: 0; }
.ship-calc-result { margin: .7rem 0 0; font-weight: 700; color: var(--accent-dark); }
.ship-calc-notice {
  margin: .45rem 0 0;
  font-size: .86rem;
  color: var(--ink-soft);
}
.ship-rates { margin: 1.1rem 0 1.2rem; }
.ship-rates .table-wrap { overflow-x: auto; }
.ship-rates-title { margin: 0 0 .6rem; font-size: 1.05rem; }
.ship-rates-table { width: 100%; border-collapse: collapse; font-size: .88rem; }
.ship-rates-table th, .ship-rates-table td {
  text-align: left; padding: .45rem .5rem; border-bottom: 1px solid var(--line); vertical-align: top;
}
.ship-rates-table small { display: block; font-weight: 500; }
.ship-rates-table tr.is-current td { background: rgba(47, 93, 50, .08); }
.ship-rates-note { margin: .6rem 0 0; font-size: .82rem; }
.cart-ship-dest { margin: .35rem 0 .75rem; }
.cart-ship-label { margin: 0 0 .35rem; font-size: .82rem; color: var(--muted); font-weight: 600; }
.cart-ship-row { display: grid; grid-template-columns: 1.2fr .9fr; gap: .4rem; margin-bottom: .4rem; }
.cart-ship-meta { margin: 0 0 .45rem; font-size: .8rem; color: var(--muted); }
@media (max-width: 720px) {
  .ship-calc-row, .cart-ship-row { grid-template-columns: 1fr; }
}
.opc-notes textarea {
  width: 100%;
  margin-top: .35rem;
  resize: vertical;
  min-height: 64px;
}
.opc-pay-icon { margin-right: .25rem; }
.opc-submit { width: 100%; margin-top: .35rem; font-size: 1.05rem; padding: .95rem 1.2rem; }
.opc-submit-hint {
  margin: .65rem 0 0;
  text-align: center;
  color: var(--muted);
  font-size: .82rem;
}
.opc-form-error, .opc-error {
  margin-top: .75rem;
  padding: .7rem .85rem;
  border-radius: 8px;
  background: #fdecea;
  color: #b71c1c;
  font-weight: 700;
  font-size: .9rem;
}
.opc-form.is-loading { opacity: .72; pointer-events: none; }
.opc-summary { display: grid; gap: 1rem; position: sticky; top: calc(var(--header-h) + .75rem); }
.opc-summary-card { position: static; }
.opc-items { display: grid; gap: .7rem; margin: .35rem 0 .75rem; }
.opc-item {
  display: grid;
  grid-template-columns: 56px 1fr auto;
  gap: .65rem;
  align-items: center;
}
.opc-item img {
  width: 56px;
  height: 56px;
  object-fit: contain;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}
.opc-item-body { display: grid; gap: .15rem; min-width: 0; }
.opc-item-body a {
  color: inherit;
  text-decoration: none;
  font-weight: 700;
  font-size: .9rem;
  line-height: 1.3;
}
.opc-item-body span { color: var(--muted); font-size: .8rem; }
.opc-edit-cart {
  display: inline-block;
  margin-bottom: .85rem;
  font-size: .88rem;
  font-weight: 700;
}
.opc-coupon { margin-bottom: .85rem; }
.opc-upsells h3 {
  margin: 0 0 .85rem;
  font-size: 1rem;
  color: var(--accent-dark);
  font-family: var(--font-display);
}
.opc-upsell {
  display: grid;
  grid-template-columns: 48px 1fr auto;
  gap: .55rem;
  align-items: center;
  padding: .55rem 0;
  border-top: 1px solid var(--line);
}
.opc-upsell:first-of-type { border-top: 0; padding-top: 0; }
.opc-upsell img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: #fff;
}
.opc-upsell a {
  display: block;
  color: inherit;
  text-decoration: none;
  font-weight: 700;
  font-size: .86rem;
  line-height: 1.3;
}
.opc-upsell strong { display: block; color: var(--accent-dark); font-size: .9rem; margin-top: .15rem; }
.opc-upsell .btn { padding: .45rem .7rem; font-size: .8rem; }
.opc-mobile-bar {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 60;
  background: #fff;
  border-top: 1px solid var(--line);
  padding: .75rem 1rem calc(.75rem + env(safe-area-inset-bottom));
  box-shadow: 0 -8px 24px rgba(0,0,0,.08);
  grid-template-columns: 1fr auto;
  gap: .75rem;
  align-items: center;
}
.opc-mobile-bar strong { color: var(--accent-dark); font-size: 1.15rem; }
.opc-mobile-bar span { display: block; color: var(--muted); font-size: .78rem; }
.opc-legal-note { margin: 0 0 .75rem; color: var(--muted); font-size: .88rem; }
@media (max-width: 980px) {
  .opc-layout { grid-template-columns: 1fr; }
  .opc-summary { position: static; }
}
@media (max-width: 720px) {
  .opc-mobile-bar { display: grid; }
  body:has(.opc) { padding-bottom: 78px; }
  .opc-secure { text-align: left; width: 100%; }
}


/* Trust + reviews */
.stars { display: inline-flex; align-items: center; gap: .12rem; color: #c9a227; font-size: .95rem; line-height: 1; }
.stars .star { opacity: .28; }
.stars .star.is-full, .stars .star.is-half { opacity: 1; }
.stars-value { color: var(--text); font-size: .9rem; margin-left: .25rem; }
.stars-count { color: var(--muted); font-size: .82rem; font-weight: 600; }
.pdp-rating-link {
  display: inline-flex; align-items: center; gap: .55rem;
  margin: 0 0 .75rem; text-decoration: none; color: inherit; font-weight: 700; font-size: .9rem;
}
.pdp-rating-link:hover { color: var(--accent-dark); }
.tech-chips {
  display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: .45rem;
  margin: 0 0 1rem; padding: 0;
}
.tech-chips > div {
  border: 1px solid var(--line); border-radius: 8px; background: var(--bg-soft);
  padding: .45rem .6rem;
}
.tech-chips dt { margin: 0; font-size: .72rem; color: var(--muted); font-weight: 700; text-transform: uppercase; letter-spacing: .03em; }
.tech-chips dd { margin: .1rem 0 0; font-size: .9rem; font-weight: 700; color: var(--accent-dark); }
.tech-table { width: 100%; border-collapse: collapse; margin: 0 0 1.25rem; }
.tech-table th, .tech-table td { border-bottom: 1px solid var(--line); padding: .65rem .4rem; text-align: left; vertical-align: top; }
.tech-table th { width: 38%; color: var(--muted); font-weight: 700; }
.specs-title { margin: 0 0 .75rem; font-family: var(--font-display); color: var(--accent-dark); }
.trust-badges {
  list-style: none; margin: 0 0 .9rem; padding: 0;
  display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: .45rem;
}
.trust-badges li {
  border: 1px solid var(--line); border-radius: 10px; background: #f7faF2;
  padding: .55rem .65rem; display: grid; gap: .1rem;
}
.trust-badges strong { color: var(--accent-dark); font-size: .92rem; }
.trust-badges span { color: var(--muted); font-size: .75rem; font-weight: 600; }
.trust-badges--compact { grid-template-columns: 1fr 1fr; }
.reviews-head { margin-bottom: 1rem; }
.reviews-list { display: grid; gap: .85rem; margin-bottom: 1.25rem; }
.review-card {
  border: 1px solid var(--line); border-radius: 12px; padding: .9rem 1rem; background: #fff;
}
.review-card header { display: flex; flex-wrap: wrap; gap: .4rem .7rem; align-items: center; margin-bottom: .45rem; }
.review-card h4 { margin: 0 0 .35rem; font-size: 1rem; color: var(--accent-dark); }
.review-card p { margin: 0; color: var(--text); line-height: 1.5; }
.review-card time { color: var(--muted); font-size: .8rem; margin-left: auto; }
.review-verified {
  font-size: .72rem; font-weight: 800; color: var(--ok);
  background: #eaf5dd; border-radius: 999px; padding: .15rem .45rem;
}
.review-verified-hint {
  margin: 0 0 .85rem; font-size: .86rem; color: var(--ok); font-weight: 600;
}
.order-review-link {
  display: inline-block; margin-top: .3rem; font-size: .82rem; font-weight: 700;
}
.review-form {
  border: 1px solid var(--line); border-radius: 12px; padding: 1rem 1.1rem; background: var(--bg-soft);
}
.review-form h3 { margin: 0 0 .75rem; font-family: var(--font-display); color: var(--accent-dark); }
.card-rating { margin: 0 0 .4rem; }
.card-rating .stars { font-size: .82rem; }
.store-reviews-grid {
  display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: .9rem;
}
.store-review-card {
  border: 1px solid var(--line); border-radius: 14px; background: #fff;
  padding: 1.1rem 1.2rem; display: grid; gap: .55rem;
}
.store-review-card h3 { margin: 0; font-size: 1.05rem; color: var(--accent-dark); font-family: var(--font-display); }
.store-review-card p { margin: 0; color: var(--muted); line-height: 1.5; }
.store-review-card footer { display: flex; gap: .45rem; align-items: baseline; flex-wrap: wrap; }
.store-review-card footer span { color: var(--muted); font-size: .85rem; }
.trust-strip-rating { display: grid; gap: .2rem; justify-items: start; }
.opc-mini-reviews { margin-top: .9rem; display: grid; gap: .65rem; }
.opc-mini-reviews blockquote {
  margin: 0; padding: .7rem .8rem; border-radius: 10px; background: var(--bg-soft); border: 1px solid var(--line);
}
.opc-mini-reviews p { margin: .35rem 0; font-size: .86rem; color: var(--text); }
.opc-mini-reviews cite { font-style: normal; font-size: .78rem; font-weight: 700; color: var(--muted); }
@media (max-width: 800px) {
  .store-reviews-grid, .tech-chips { grid-template-columns: 1fr; }
}

/* ===== Mobile commerce polish ===== */
.mobile-tabbar {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 55;
  background: rgba(255,255,255,.98);
  border-top: 1px solid var(--line);
  padding: .35rem .25rem calc(.35rem + env(safe-area-inset-bottom));
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  box-shadow: 0 -6px 20px rgba(26,31,22,.08);
}
.mobile-tabbar a,
.mobile-tabbar button {
  display: grid;
  justify-items: center;
  gap: .12rem;
  padding: .35rem .15rem;
  text-decoration: none;
  color: var(--muted);
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .01em;
  position: relative;
  min-height: 48px;
  align-content: center;
}
.mobile-tabbar a.is-active,
.mobile-tabbar button.is-active { color: var(--accent-dark); }
.mobile-tabbar-icon {
  font-size: 1.15rem;
  line-height: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.mobile-tabbar-icon svg { display: block; }
.mobile-tabbar em {
  position: absolute;
  top: .15rem;
  right: calc(50% - 1.35rem);
  min-width: 1.1rem;
  height: 1.1rem;
  padding: 0 .25rem;
  border-radius: 999px;
  background: var(--accent-dark);
  color: #fff;
  font-size: .65rem;
  font-style: normal;
  font-weight: 800;
  display: inline-grid;
  place-items: center;
}
.mobile-tabbar em:empty,
.mobile-tabbar em[data-empty="1"] { display: none; }

@media (max-width: 640px) {
  .mobile-tabbar { display: grid; }
  body.storefront-body {
    padding-bottom: calc(var(--tabbar-h, 64px) + env(safe-area-inset-bottom));
  }
  body.storefront-body:has(.compare-bar:not([hidden])) {
    padding-bottom: calc(var(--tabbar-h, 64px) + 58px + env(safe-area-inset-bottom));
  }
  body.storefront-body:has(.mobile-buybar:not(.is-idle)),
  body.storefront-body:has(.opc-mobile-bar),
  body.storefront-body:has(.cart-mobile-bar) {
    padding-bottom: calc(78px + env(safe-area-inset-bottom));
  }
  body.nav-open { overflow: hidden; }
  .site-drawer {
    max-height: none;
    width: min(100vw, 400px);
  }
  .site-drawer-cats a {
    min-height: 44px;
    display: flex;
    align-items: center;
  }

  input, select, textarea {
    font-size: 16px !important; /* evita zoom iOS */
  }
  .btn, .qty-stepper button {
    min-height: 44px;
  }
  .wish-btn:not(.wish-btn--compact),
  .compare-btn:not(.compare-btn--compact) {
    min-height: 44px;
  }
  .qty-stepper input {
    min-width: 2.6rem;
    min-height: 44px;
  }

  .product-card--shop .body { padding: .65rem .65rem .5rem; }
  .product-card-title {
    font-size: .82rem;
    min-height: 2.3em;
    margin-bottom: .35rem;
  }
  .product-card--shop .price { font-size: 1rem; }
  .card-volume-hint { display: none; }
  .product-card-actions {
    padding: 0 .55rem .65rem;
    gap: .35rem;
  }
  .product-card-actions .btn-ghost { display: none; }
  .product-card-actions .btn {
    min-height: 42px;
    font-size: .82rem;
    padding: .55rem .4rem;
  }
  .card-wish, .card-compare {
    top: .2rem;
    padding: .35rem;
  }
  .card-wish { left: .15rem; }
  .card-compare { right: .15rem; }
  .wish-btn--compact, .compare-btn--compact {
    width: 40px;
    height: 40px;
    min-height: 40px;
    font-size: .95rem;
  }
  .badge-offer, .badge-stock {
    top: auto;
    bottom: .35rem;
    left: .35rem;
    font-size: .68rem;
  }
  .product-card .media { padding: .4rem; }

  .home-hero { min-height: min(78vh, 460px); }
  .home-hero-inner { padding: 2.4rem 0 2rem; }
  .home-hero-brand { height: 40px; }
  .home-hero-title { font-size: clamp(1.55rem, 7vw, 2.1rem); }
  .home-hero-veil {
    background:
      linear-gradient(180deg, rgba(12, 20, 10, .72) 0%, rgba(12, 20, 10, .62) 55%, rgba(10, 16, 8, .78) 100%);
  }
  .home-hero-media img { object-position: 80% 38%; }
  .home-hero .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: .55rem;
    width: 100%;
  }
  .home-hero .hero-actions .btn {
    width: 100%;
    min-height: 48px;
    justify-content: center;
  }
  .trust-bar {
    margin-top: 0;
    box-shadow: none;
  }
  .trust-bar-inner {
    flex-wrap: nowrap;
    overflow-x: auto;
    width: 100%;
    padding: 0 .75rem;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }
  .trust-bar-inner::-webkit-scrollbar { display: none; }
  .trust-bar-item {
    flex: 0 0 78%;
    min-height: 76px;
    border-right: 1px solid var(--line);
    border-bottom: 0;
    scroll-snap-align: start;
  }
  .trust-bar-item:nth-child(3),
  .trust-bar-item:nth-last-child(-n+2) { border-bottom: 0; }
  .section { padding: 1.4rem 0; }
  .section-head h2 { font-size: 1.25rem; }
  .breadcrumbs { margin: .75rem 0 1rem; font-size: .8rem; }

  .product-layout { gap: 1.1rem; padding-top: 0; }
  .gallery-thumbs { gap: .35rem; }
  .buy-box { padding: 0; border: 0; box-shadow: none; }
  .price-lg { font-size: 1.45rem; }
  .pdp-tabs .tablist {
    overflow-x: auto;
    flex-wrap: nowrap;
    -webkit-overflow-scrolling: touch;
    gap: .25rem;
    padding: .4rem 0 .35rem;
    position: sticky;
    top: var(--header-h);
    z-index: 12;
    background: var(--bg);
  }
  .pdp-tabs .tab {
    flex: 0 0 auto;
    white-space: nowrap;
    min-height: 40px;
  }

  .cart-panel { padding: .65rem; overflow: visible; }
  .cart-table { width: 100%; border-collapse: separate; border-spacing: 0 .65rem; }
  .cart-table thead { display: none; }
  .cart-table tbody { display: grid; gap: 0; }
  .cart-row {
    display: grid;
    grid-template-columns: 1fr auto;
    grid-template-areas:
      "product remove"
      "qty total";
    gap: .55rem .75rem;
    align-items: center;
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: .75rem;
    background: #fff;
  }
  .cart-row td { border: 0; padding: 0; }
  .cart-row td:nth-child(1) { grid-area: product; }
  .cart-col-unit { display: none; }
  .cart-row td:nth-child(3) { grid-area: qty; }
  .cart-col-total { grid-area: total; text-align: right; font-size: 1.05rem; }
  .cart-col-remove { grid-area: remove; justify-self: end; }
  .cart-unit-mobile {
    display: block;
    margin-top: .25rem;
    font-size: .8rem;
    color: var(--muted);
    font-weight: 600;
  }
  .cart-item img { width: 64px; height: 64px; }
  .cart-summary .cart-checkout-desktop { display: none; }

  .form-grid-2,
  .form-grid-3 { grid-template-columns: 1fr; }
  .opc-form label,
  .auth-form label { font-size: .9rem; }
  .pay-method { min-height: 56px; }
  .opc-mobile-bar .btn { min-height: 48px; padding: .75rem 1.1rem; }

  .compare-bar {
    bottom: calc(var(--tabbar-h, 64px) + env(safe-area-inset-bottom));
  }
  body:has(.mobile-buybar:not(.is-idle)) .compare-bar,
  body:has(.opc-mobile-bar) .compare-bar,
  body:has(.cart-mobile-bar) .compare-bar {
    bottom: calc(78px + env(safe-area-inset-bottom));
  }
  .cookie-bar {
    bottom: calc(var(--tabbar-h, 64px) + env(safe-area-inset-bottom));
  }
  body:has(.mobile-buybar:not(.is-idle)) .cookie-bar,
  body:has(.opc-mobile-bar) .cookie-bar,
  body:has(.cart-mobile-bar) .cookie-bar {
    bottom: calc(78px + env(safe-area-inset-bottom));
  }

  .toast-wrap {
    bottom: calc(var(--tabbar-h, 64px) + .75rem + env(safe-area-inset-bottom));
  }
  body:has(.mobile-buybar:not(.is-idle)) .toast-wrap,
  body:has(.opc-mobile-bar) .toast-wrap,
  body:has(.cart-mobile-bar) .toast-wrap {
    bottom: calc(86px + env(safe-area-inset-bottom));
  }
  .back-top {
    bottom: calc(var(--tabbar-h, 64px) + .75rem + env(safe-area-inset-bottom));
  }
  body:has(.mobile-buybar:not(.is-idle)) .back-top,
  body:has(.opc-mobile-bar) .back-top,
  body:has(.cart-mobile-bar) .back-top {
    bottom: calc(86px + env(safe-area-inset-bottom));
  }
}

@media (min-width: 641px) {
  .nav-toggle--leading { display: none !important; }
  .search-toggle { display: none !important; }
  .mobile-tabbar { display: none !important; }
  .cart-mobile-bar { display: none !important; }
  .topbar-short { display: none !important; }
  .topbar-full { display: inline; }
}

/* ===== Cart / checkout / account mobile UX ===== */
.cart-page-head { align-items: baseline; }
.cart-page-count { margin: 0; color: var(--muted); font-weight: 700; font-size: .9rem; }
.cart-summary { position: sticky; top: calc(var(--header-h) + 1rem); }
.cart-summary .cart-checkout-desktop { width: 100%; margin-top: 1rem; }
.cart-summary .cart-keep { width: 100%; margin-top: .5rem; }
.cart-extras {
  margin-top: .85rem;
  border-top: 1px solid var(--line);
  padding-top: .65rem;
}
.cart-extras > summary {
  cursor: pointer;
  font-weight: 750;
  color: var(--accent-dark);
  list-style: none;
  min-height: 44px;
  display: flex;
  align-items: center;
}
.cart-extras > summary::-webkit-details-marker { display: none; }
.cart-extras > summary::after {
  content: "+";
  margin-left: auto;
  font-weight: 800;
}
.cart-extras[open] > summary::after { content: "−"; }
.cart-extras .cart-email-form { border-top: 0; padding-top: .55rem; margin-top: 0; }
.cart-min-order { margin: .7rem 0 0; color: #b42318; }
.cart-link-glyph { display: none; font-size: 1.05rem; line-height: 1; }
.order-cards { display: none; }
.account-tabs {
  display: none;
  gap: .4rem;
  overflow-x: auto;
  margin: 0 0 1rem;
  padding-bottom: .15rem;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.account-tabs::-webkit-scrollbar { display: none; }
.account-tabs a {
  flex: 0 0 auto;
  padding: .55rem .85rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--accent-dark);
  font-weight: 750;
  font-size: .86rem;
  text-decoration: none;
  min-height: 40px;
  display: inline-flex;
  align-items: center;
}
.account-tabs a.is-active {
  background: var(--accent-dark);
  color: #fff;
  border-color: var(--accent-dark);
}
.account-quick-links {
  display: grid;
  gap: .45rem;
  margin-top: .85rem;
}
.account-quick-links .btn { width: 100%; margin: 0; }
.order-card {
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: .85rem;
  background: #fff;
  display: grid;
  gap: .55rem;
}
.order-card header {
  display: flex;
  justify-content: space-between;
  gap: .5rem;
  align-items: center;
  flex-wrap: wrap;
}
.order-card-meta {
  display: flex;
  justify-content: space-between;
  gap: .5rem;
  color: var(--muted);
  font-weight: 700;
}
.order-card .btn { justify-self: start; min-height: 40px; }

@media (max-width: 640px) {
  .cart-layout {
    display: flex;
    flex-direction: column;
    gap: .85rem;
  }
  .cart-panel { order: 1; }
  .cart-summary { order: 2; position: static; }
  .cart-summary-totals { display: none; }
  .cart-summary .buy-trust,
  .cart-summary .cart-checkout-desktop,
  .cart-summary .cart-keep { display: none; }
  .cart-extras { margin-top: 0; border-top: 0; padding-top: 0; }
  .cart-extras > summary {
    padding: .15rem 0;
    font-size: .95rem;
  }
  .ship-progress { padding: .85rem; }
  .ship-progress .prose { font-size: .82rem; }
  .cart-mobile-bar {
    grid-template-columns: 1.1fr auto;
    gap: .65rem;
  }
  .cart-mobile-bar .btn {
    min-width: 8.5rem;
    font-size: .95rem;
  }
  .cart-link-glyph { display: inline; }
  .cart-link--icon {
    width: 44px;
    height: 44px;
    padding: 0;
    justify-content: center;
    position: relative;
  }
  .cart-link--icon span[data-cart-count] {
    position: absolute;
    top: -.15rem;
    right: -.15rem;
  }

  .account-tabs {
    display: flex;
    position: sticky;
    top: var(--header-h);
    z-index: 14;
    background: var(--bg-soft);
    padding: .4rem 0 .55rem;
  }
  .account-grid {
    display: flex;
    flex-direction: column;
    gap: .85rem;
  }
  .account-orders { order: 1; }
  .account-summary { order: 2; }
  .account-addresses { order: 3; }
  .account-orders-table { display: none; }
  .order-cards {
    display: grid;
    gap: .65rem;
  }
  .account-head { gap: .75rem; }
  .account-logout .btn { min-height: 40px; }
  .auth-wrap {
    grid-template-columns: 1fr;
    padding: .75rem 0 1.5rem;
    gap: .85rem;
  }
  .auth-card { padding: 1.1rem 1rem; }
  .auth-aside { padding: 1rem; }
  .auth-form .btn { min-height: 48px; font-size: 1rem; }
  .auth-grid-2 { grid-template-columns: 1fr; }

  .opc { padding-bottom: .5rem; }
  .opc-top { gap: .5rem; }
  .opc-secure { display: none; }
  .checkout-steps {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: .35rem;
  }
  .checkout-steps a,
  .checkout-steps span {
    text-align: center;
    padding: .45rem .35rem;
    font-size: .72rem;
  }
  .opc-head { margin: .35rem 0 .85rem; }
  .opc-head h1 { font-size: 1.45rem; }
  .opc-head p { font-size: .9rem; }
  .opc-ship-banner {
    padding: .75rem .85rem;
    flex-direction: column;
    align-items: stretch;
  }
  .opc-ship-banner .btn { width: 100%; min-height: 44px; }
  .opc-block { padding: .95rem .9rem; }
  .opc-block-head {
    flex-direction: row;
    gap: .65rem;
  }
  .opc-login-link {
    width: 100%;
    margin-top: .25rem;
    font-weight: 750;
  }
  .opc-block-head .opc-login-link {
    flex: 1 1 100%;
  }
  .pay-method {
    padding: .85rem .9rem;
    min-height: 60px;
    border-radius: 12px;
  }
  .opc-check {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: .55rem .65rem;
    align-items: start;
    line-height: 1.4;
  }
  .opc-check input { width: 1.15rem; height: 1.15rem; margin-top: .15rem; }
  .opc-submit { min-height: 52px; font-size: 1.02rem; width: 100%; }
  .opc-summary-card .buy-trust,
  .opc-mini-reviews,
  .opc-summary-card .trust-badges { display: none; }
  .opc-items { gap: .55rem; }
  .opc-item { gap: .55rem; align-items: center; }
  .opc-upsells { margin-top: .75rem; }
  .opc-upsell {
    grid-template-columns: 48px 1fr auto;
    gap: .55rem;
    align-items: center;
  }
  .opc-upsell .btn { min-height: 40px; }
  .opc-mobile-bar .btn {
    min-width: 7.5rem;
    font-size: 1rem;
  }

  .opc-mobile-order {
    display: block;
    margin: 0 0 .85rem;
    padding: .35rem .9rem .75rem;
  }
  .opc-mobile-order > summary {
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: .75rem;
    min-height: 48px;
    cursor: pointer;
    font-weight: 750;
    color: var(--accent-dark);
  }
  .opc-mobile-order > summary::-webkit-details-marker { display: none; }
  .opc-mobile-order > summary::after {
    content: "+";
    font-weight: 800;
    margin-left: .25rem;
  }
  .opc-mobile-order[open] > summary::after { content: "−"; }
  .opc-mobile-order .opc-items { margin-top: .35rem; }
  .opc-summary-card > h3,
  .opc-summary-card > .opc-items,
  .opc-summary-card > .opc-edit-cart { display: none; }

  .order-line-cards { display: grid; }
  .account-order-table { display: none; }
  .account-order-items { overflow: visible; }
  .wishlist-page .section-head {
    flex-direction: column;
    align-items: stretch;
    gap: .75rem;
  }
  .wishlist-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: .5rem;
  }
  .wishlist-actions .btn {
    width: 100%;
    min-height: 44px;
    margin: 0;
  }
  .address-chip {
    width: 100%;
    text-align: left;
    min-height: 52px;
  }
  .account-tracking .btn { width: 100%; min-height: 48px; }
  .cart-link-glyph { display: inline-flex !important; }
}

.opc-mobile-order { display: none; }
.order-line-cards { display: none; }
.order-line-card {
  display: flex;
  justify-content: space-between;
  gap: .75rem;
  align-items: flex-start;
  padding: .75rem 0;
  border-bottom: 1px solid var(--line);
}
.order-line-card:last-child { border-bottom: 0; }
.order-line-sku { font-size: .8rem; margin-top: .15rem; }
.order-line-meta { margin-top: .3rem; color: var(--muted); font-weight: 650; font-size: .86rem; }
.cart-link-glyph {
  display: none;
  line-height: 0;
}
.cart-link-glyph svg { display: block; }

@media (min-width: 641px) {
  .order-cards { display: none !important; }
  .account-tabs { display: none !important; }
  .opc-mobile-order { display: none !important; }
  .order-line-cards { display: none !important; }
  .cart-extras {
    display: block;
    border: 0;
    padding: 0;
    margin: .85rem 0 0;
  }
  .cart-extras > summary { display: none; }
  .cart-extras .cart-email-form,
  .cart-extras .coupon-form { display: block !important; }
}

/* Reafirmar overrides móviles (después de reglas base) */
@media (max-width: 640px) {
  .opc-mobile-order { display: block; }
  .order-line-cards { display: grid; }
  .account-order-table { display: none; }
  .cart-link-glyph { display: inline-flex; }
  .cart-summary { order: 2; }
  .cart-panel { order: 1; }
}

/* ===== Compare / search / order / auth mobile polish ===== */
.compare-page-title {
  margin: .2rem 0 0;
  font-family: var(--font-display);
  color: var(--accent-dark);
  font-size: clamp(1.6rem, 3vw, 2.1rem);
}
.account-order-actions-mobile { display: none; }
.auth-tips--inline { display: none; }
.auth-aside--desktop { display: block; }

@media (max-width: 640px) {
  .compare-page-head {
    flex-direction: column;
    align-items: stretch;
    gap: .75rem;
  }
  .compare-clear-form .btn { width: 100%; min-height: 44px; }
  .compare-scroll {
    margin: 0 -.75rem;
    padding: 0 .75rem;
    -webkit-overflow-scrolling: touch;
  }
  .compare-table {
    min-width: 0;
    width: max-content;
  }
  .compare-table tbody th,
  .compare-table thead th:first-child {
    position: sticky;
    left: 0;
    z-index: 2;
    background: #f7f9f2;
    box-shadow: 2px 0 0 var(--line);
    min-width: 6.5rem;
    max-width: 7.2rem;
    font-size: .78rem;
    padding: .55rem .5rem;
  }
  .compare-table thead th:first-child { z-index: 3; }
  .compare-table th,
  .compare-table td {
    padding: .55rem .6rem;
    font-size: .84rem;
  }
  .compare-head {
    min-width: 132px;
    gap: .35rem;
  }
  .compare-head img { width: 72px; height: 72px; }
  .compare-name {
    font-size: .82rem;
    line-height: 1.25;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  .compare-head .btn {
    width: 100%;
    min-height: 40px;
    font-size: .8rem;
    padding: .45rem .5rem;
  }

  .search-page .section-head,
  .section:has(.cat-toolbar) .section-head { margin-bottom: .65rem; }
  .cat-toolbar {
    position: static;
    display: grid;
    gap: .65rem;
    padding: .85rem;
  }
  .cat-toolbar-left { flex-wrap: wrap; }
  .cat-toolbar-right {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
    gap: .45rem;
  }
  .cat-toolbar-right select { width: 100%; }
  .cat-toolbar-prices {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
  .cat-toolbar-right input {
    width: 100%;
    min-width: 0 !important;
    flex: 1;
  }
  .cat-toolbar-right .btn { min-height: 48px; }
  .search-empty .hero-actions {
    display: grid;
    gap: .5rem;
  }
  .search-empty .hero-actions .btn { width: 100%; }
  .search-hero { padding: 1rem .95rem 1.05rem; }
  .search-hero-form { grid-template-columns: 1fr; }
  .search-hero-form .btn { min-height: 48px; }

  .account-order-head {
    flex-direction: column;
    align-items: flex-start;
    gap: .55rem;
  }
  .account-order-head h1 {
    font-size: 1.35rem;
    word-break: break-word;
  }
  .account-order-actions-mobile {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: .5rem;
    margin: 0 0 1rem;
  }
  .account-order-actions-mobile .btn {
    width: 100%;
    min-height: 46px;
    margin: 0;
    text-align: center;
  }
  .account-order-reorder-desktop,
  .account-order-back-desktop { display: none !important; }

  .auth-aside--desktop { display: none; }
  .auth-tips--inline {
    display: grid;
    gap: .35rem;
    margin: 1rem 0 0;
    padding: 0;
    list-style: none;
    color: var(--muted);
    font-size: .86rem;
    font-weight: 650;
  }
  .auth-tips--inline li {
    padding: .45rem .65rem;
    border-radius: 10px;
    background: var(--bg-soft);
    border: 1px solid var(--line);
  }
}

.share-bar { margin: 0 0 1rem; }
.share-bar-label { margin: 0 0 .4rem; font-size: .82rem; font-weight: 700; color: var(--muted); }
.share-bar-links { display: flex; flex-wrap: wrap; gap: .4rem; }
.share-btn {
  display: inline-flex; align-items: center; gap: .3rem;
  border: 1px solid var(--line); background: var(--bg-soft);
  color: inherit; border-radius: 999px; padding: .35rem .75rem;
  font-size: .8rem; font-weight: 700; cursor: pointer; text-decoration: none;
}
.share-btn:hover { border-color: var(--accent-dark); }
.club-page .club-grid, .club-account .club-grid {
  display: grid; gap: 1rem; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  margin-top: 1.2rem;
}
.club-hero-card {
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: 1rem; align-items: center;
}
.club-points { font-size: 2rem; font-weight: 800; margin: .2rem 0; }
.club-points span { font-size: 1rem; font-weight: 650; color: var(--muted); }
.club-list { margin: .6rem 0 0; padding-left: 1.1rem; line-height: 1.55; }
.club-hero-actions { display: flex; flex-wrap: wrap; gap: .5rem; }
.ref-banner { background: #2f5d32; color: #fff; font-size: .88rem; font-weight: 650; }
.ref-banner .container { display: flex; flex-wrap: wrap; gap: .6rem 1rem; align-items: center; padding-top: .55rem; padding-bottom: .55rem; }
.ref-banner a { color: #fff; text-decoration: underline; font-weight: 800; }
.club-link {
  display: inline-grid; place-items: center;
  min-width: 2.1rem; height: 2.1rem; padding: 0 .4rem;
  border-radius: 999px; background: var(--accent); color: #1d2a1d;
  font-size: .78rem; font-weight: 800; text-decoration: none;
}
.pdp-earn-points { margin: .35rem 0 0; font-size: .86rem; font-weight: 650; }
.pdp-earn-points a { color: var(--accent-dark); }
.cart-earn-points { margin: .45rem 0 0; font-size: .86rem; font-weight: 650; }
.cart-earn-points a { color: var(--accent-dark); }
.order-expire-note {
  margin: .55rem 0 0;
  padding: .55rem .75rem;
  border-radius: 10px;
  background: #fff6e5;
  color: #6a4a12;
  font-size: .9rem;
  font-weight: 650;
}
.order-expire-mini { margin: .35rem 0 .2rem; font-size: .8rem; color: #6a4a12; font-weight: 650; }
.order-progress {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: .35rem;
  list-style: none;
  margin: 1rem 0 0;
  padding: 0;
}
.order-progress li {
  text-align: center;
  font-size: .78rem;
  font-weight: 700;
  color: #8a948a;
}
.order-progress li::before {
  content: '';
  display: block;
  width: 11px;
  height: 11px;
  margin: 0 auto .4rem;
  border-radius: 50%;
  background: #d5ddd5;
}
.order-progress .is-done,
.order-progress .is-active { color: var(--accent-dark); }
.order-progress .is-done::before,
.order-progress .is-active::before { background: var(--accent); }
.order-progress-failed {
  margin: .8rem 0 0;
  padding: .55rem .75rem;
  border-radius: 10px;
  background: #fdecec;
  color: #7a2e2e;
  font-weight: 700;
}
.auth-hint.password-meter.is-weak { color: #8a3a2a; }
.auth-hint.password-meter.is-ok { color: #8a5a12; }
.auth-hint.password-meter.is-strong { color: #2e7d32; }
[data-contact-order][hidden] { display: none !important; }

@media (min-width: 641px) {
  .account-order-actions-mobile { display: none !important; }
  .auth-tips--inline { display: none !important; }
  .auth-aside--desktop { display: block; }
}

@media print {
  .skip-link, .site-header, .topbar, .mobile-tabbar, .share-bar,
  .footer, .read-progress, .content-aside, [data-print],
  .back-to-top, .flash, .compare-bar { display: none !important; }
  .content-layout { display: block !important; }
  .content-body, .legal-body { box-shadow: none !important; border: 0 !important; }
}
