:root {
  --a39-moss: #1B4332;
  --a39-moss-dark: #081C15;
  --a39-moss-light: #2D6A4F;
  --a39-copper: #B8860B;
  --a39-copper-light: #D4A843;
  --a39-parchment: #F5F0E6;
  --a39-linen: #EDE4D3;
  --a39-ink: #1A2E2E;
  --a39-muted: #5C6B66;
  --a39-white: #FFFCF8;
  --a39-border: rgba(27, 67, 50, 0.14);
  --a39-radius: 16px;
  --a39-shadow: 0 20px 50px rgba(26, 46, 46, 0.1);
  --a39-font-display: "Libre Baskerville", Georgia, serif;
  --a39-font-body: "Work Sans", system-ui, sans-serif;
  /* Legacy aliases used by inner pages */
  --a39-indigo: var(--a39-moss);
  --a39-indigo-dark: var(--a39-moss-dark);
  --a39-slate: var(--a39-muted);
  --a39-wheat: var(--a39-linen);
  --a39-wheat-light: var(--a39-parchment);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body.a39-store {
  margin: 0;
  font-family: var(--a39-font-body);
  color: var(--a39-ink);
  background: var(--a39-parchment);
  line-height: 1.6;
}
img { max-width: 100%; display: block; height: auto; }
a { color: var(--a39-moss); text-decoration: none; }
a:hover { text-decoration: underline; }
.container { width: min(1180px, calc(100% - 2rem)); margin-inline: auto; }
.page-main { min-height: 50vh; }
.page-wrap { min-height: 100vh; display: flex; flex-direction: column; }
.page-main { flex: 1 0 auto; }
.visually-hidden {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); border: 0;
}

.a39-announce {
  background: var(--a39-moss-dark);
  color: #D8E2DC;
  font-size: 0.78rem;
}
.a39-announce-inner {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  padding: 0.55rem 0;
}
.a39-announce-tag {
  background: var(--a39-copper);
  color: var(--a39-moss-dark);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.2rem 0.65rem;
  border-radius: 999px;
}
.a39-announce-link { margin-left: auto; color: #fff; font-weight: 600; }

.a39-masthead {
  display: grid;
  grid-template-columns: 220px 1fr;
  background: var(--a39-white);
  border-bottom: 3px solid var(--a39-copper);
  position: sticky;
  top: 0;
  z-index: 50;
  box-shadow: var(--a39-shadow);
}
.a39-masthead-brand-col {
  background: linear-gradient(165deg, var(--a39-moss-dark), var(--a39-moss));
  display: flex;
  align-items: stretch;
  padding: 1rem;
}
.a39-masthead-brand {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  color: #fff;
  text-decoration: none;
  width: 100%;
}
.a39-masthead-brand:hover { text-decoration: none; opacity: 0.95; }
.a39-seal {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 2px solid var(--a39-copper-light);
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 1.1rem;
  background: rgba(255,255,255,0.08);
  flex-shrink: 0;
}
.a39-seal--sm { width: 40px; height: 40px; font-size: 0.9rem; }
.a39-seal--footer { width: 44px; height: 44px; margin-bottom: 0.75rem; }
.a39-masthead-word { display: flex; flex-direction: column; line-height: 1.15; }
.a39-masthead-word em { font-style: normal; font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase; opacity: 0.82; }
.a39-masthead-word strong { font-family: var(--a39-font-display); font-size: 1.15rem; }
.a39-masthead-word small { font-size: 0.72rem; color: var(--a39-copper-light); margin-top: 0.15rem; }

.a39-masthead-toolbar {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.85rem 0 0.65rem;
}
.a39-menu-btn {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  border: 1px solid var(--a39-border);
  border-radius: 12px;
  background: linear-gradient(135deg, #fff, rgba(149, 213, 178, 0.12));
  padding: 10px;
  cursor: pointer;
  flex-shrink: 0;
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
}
.a39-menu-btn:hover {
  border-color: rgba(82, 183, 136, 0.45);
  box-shadow: 0 6px 16px rgba(27, 67, 50, 0.1);
}
.a39-menu-btn span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--a39-moss);
  border-radius: 999px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.a39-menu-btn.is-active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.a39-menu-btn.is-active span:nth-child(2) { opacity: 0; }
.a39-menu-btn.is-active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.a39-search-bar {
  flex: 1;
  display: flex;
  border: 1px solid var(--a39-border);
  border-radius: 999px;
  overflow: hidden;
  background: var(--a39-parchment);
  min-width: 0;
}
.a39-search-bar input {
  flex: 1;
  border: 0;
  background: transparent;
  padding: 0.65rem 1rem;
  font: inherit;
  outline: none;
  min-width: 0;
}
.a39-search-bar button {
  border: 0;
  background: var(--a39-moss);
  color: #fff;
  padding: 0 1.1rem;
  font-weight: 700;
  cursor: pointer;
}

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

/* Conservatory passport account chip */
.a39-account-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  max-width: 200px;
  padding: 0.35rem 0.85rem 0.35rem 0.35rem;
  border-radius: 999px;
  border: 1px solid var(--a39-border);
  background: linear-gradient(135deg, #fff 0%, rgba(149, 213, 178, 0.12) 100%);
  color: var(--a39-ink);
  text-decoration: none;
  transition: transform 0.25s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.25s, border-color 0.25s, background 0.25s;
}
.a39-account-chip:hover {
  text-decoration: none;
  transform: translateY(-1px);
  border-color: rgba(82, 183, 136, 0.45);
  box-shadow: 0 10px 24px rgba(27, 67, 50, 0.12);
  background: #fff;
}
.a39-account-chip.is-member {
  background: linear-gradient(135deg, rgba(27, 67, 50, 0.04) 0%, rgba(184, 134, 11, 0.08) 100%);
}
.a39-account-chip.is-member:hover {
  background: linear-gradient(135deg, rgba(27, 67, 50, 0.06) 0%, rgba(149, 213, 178, 0.14) 100%);
}
.a39-account-chip__ring {
  position: relative;
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, var(--a39-moss-dark), var(--a39-moss));
  border: 2px solid var(--a39-copper-light);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15), 0 4px 12px rgba(27, 67, 50, 0.2);
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s;
}
.a39-account-chip:hover .a39-account-chip__ring {
  transform: rotate(-6deg) scale(1.04);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 6px 16px rgba(27, 67, 50, 0.28);
}
.a39-account-chip.is-guest .a39-account-chip__ring {
  background: linear-gradient(145deg, var(--a39-moss), var(--a39-moss-light));
}
.a39-account-chip__icon {
  width: 20px;
  height: 20px;
  color: #fff;
}
.a39-account-chip__initials {
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: #fff;
  line-height: 1;
}
.a39-account-chip__verified {
  position: absolute;
  right: -1px;
  bottom: -1px;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: #52B788;
  border: 2px solid #fff;
  box-shadow: 0 0 0 2px rgba(82, 183, 136, 0.35);
}
.a39-account-chip.is-verified .a39-account-chip__ring {
  border-color: #52B788;
}
.a39-account-chip__text {
  display: flex;
  flex-direction: column;
  gap: 0.05rem;
  min-width: 0;
  line-height: 1.15;
}
.a39-account-chip__label {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--a39-ink);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 120px;
}
.a39-account-chip__sub {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--a39-muted);
}
.a39-account-chip.is-member .a39-account-chip__sub {
  color: var(--a39-copper);
}

@media (prefers-reduced-motion: reduce) {
  .a39-account-chip:hover { transform: none; }
  .a39-account-chip:hover .a39-account-chip__ring { transform: none; }
}

.a39-toolbar-link { font-weight: 600; font-size: 0.92rem; white-space: nowrap; }
.a39-toolbar-cart {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  background: var(--a39-linen);
  border: 1px solid var(--a39-border);
  border-radius: 999px;
  padding: 0.4rem 0.85rem;
  text-decoration: none;
  color: var(--a39-ink);
}
.a39-toolbar-cart:hover { text-decoration: none; background: #fff; }
.a39-toolbar-cart-count {
  background: var(--a39-copper);
  color: #fff;
  min-width: 22px;
  height: 22px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 0.75rem;
  font-weight: 800;
}
.a39-toolbar-cart-label { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.06em; color: var(--a39-muted); }
.a39-toolbar-cart-total { font-weight: 700; font-size: 0.88rem; }

.a39-tab-nav { border-top: 1px solid var(--a39-border); background: var(--a39-linen); }
.a39-tab-nav-inner { display: flex; gap: 0.35rem; overflow-x: auto; padding: 0.45rem 0; scrollbar-width: none; }
.a39-tab-nav-inner::-webkit-scrollbar { display: none; }
.a39-tab-link {
  padding: 0.45rem 0.95rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.88rem;
  white-space: nowrap;
  color: var(--a39-muted);
  text-decoration: none;
}
.a39-tab-link:hover { color: var(--a39-moss); text-decoration: none; background: rgba(255,255,255,0.65); }
.a39-tab-link.is-active { background: var(--a39-moss); color: #fff; }
.a39-tab-link--cta { background: var(--a39-copper); color: #fff; margin-left: auto; }
.a39-tab-link--cta:hover { background: var(--a39-copper-light); color: var(--a39-moss-dark); }

.a39-seed-lanes { border-top: 1px dashed var(--a39-border); }
.a39-seed-lanes-inner {
  display: flex;
  gap: 0.5rem;
  overflow-x: auto;
  padding: 0.55rem 0;
  scrollbar-width: none;
}
.a39-seed-lanes-inner::-webkit-scrollbar { display: none; }
.a39-lane-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  border: 1px solid var(--a39-border);
  background: #fff;
  font-size: 0.82rem;
  font-weight: 600;
  white-space: nowrap;
  text-decoration: none;
  color: var(--a39-ink);
}
.a39-lane-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--a39-copper);
}

.a39-drawer {
  position: fixed;
  inset: 0;
  z-index: 100;
  pointer-events: none;
  visibility: hidden;
}
.a39-drawer.is-open { pointer-events: auto; visibility: visible; }
.a39-drawer-scrim {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(8, 28, 21, 0.55);
  backdrop-filter: blur(3px);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.a39-drawer.is-open .a39-drawer-scrim { opacity: 1; }
.a39-drawer-sheet {
  position: absolute;
  top: 0;
  left: 0;
  width: min(380px, 92vw);
  height: 100%;
  background: var(--a39-parchment);
  transform: translateX(-105%);
  transition: transform 0.32s cubic-bezier(0.22, 1, 0.36, 1);
  display: flex;
  flex-direction: column;
  box-shadow: 16px 0 48px rgba(8, 28, 21, 0.25);
  overflow: hidden;
}
.a39-drawer.is-open .a39-drawer-sheet { transform: translateX(0); }

.a39-drawer-head {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1.1rem 1.15rem;
  background: linear-gradient(135deg, var(--a39-moss-dark), var(--a39-moss));
  color: #fff;
  overflow: hidden;
}
.a39-drawer-head__mesh {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.35;
  background:
    radial-gradient(circle at 20% 80%, rgba(149, 213, 178, 0.35), transparent 50%),
    radial-gradient(circle at 85% 15%, rgba(184, 134, 11, 0.2), transparent 45%);
}
.a39-drawer-brand {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  min-width: 0;
}
.a39-drawer-brand strong {
  display: block;
  font-family: var(--a39-font-display);
  font-size: 1.05rem;
  line-height: 1.2;
}
.a39-drawer-brand span {
  display: block;
  font-size: 0.72rem;
  opacity: 0.8;
  letter-spacing: 0.04em;
}
.a39-drawer-close {
  position: relative;
  z-index: 1;
  border: 0;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}
.a39-drawer-close svg { width: 1.15rem; height: 1.15rem; }
.a39-drawer-close:hover { background: rgba(255, 255, 255, 0.22); transform: scale(1.05); }

.a39-drawer-body {
  flex: 1;
  overflow-y: auto;
  overscroll-behavior: contain;
  padding-bottom: 0.5rem;
}

.a39-drawer-quick {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
  padding: 0.85rem 1rem;
  background: #fff;
  border-bottom: 1px solid var(--a39-border);
}
.a39-drawer-quick__btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  padding: 0.65rem 0.35rem;
  border-radius: 14px;
  background: var(--a39-parchment);
  border: 1px solid rgba(27, 67, 50, 0.08);
  text-decoration: none;
  color: var(--a39-ink);
  font-size: 0.68rem;
  font-weight: 700;
  text-align: center;
  line-height: 1.25;
  transition: transform 0.2s, border-color 0.2s, box-shadow 0.2s;
}
.a39-drawer-quick__btn:hover {
  text-decoration: none;
  transform: translateY(-2px);
  border-color: rgba(82, 183, 136, 0.35);
  box-shadow: 0 8px 18px rgba(26, 46, 46, 0.08);
  color: var(--a39-ink);
}
.a39-drawer-quick__btn.is-member {
  background: linear-gradient(135deg, rgba(27, 67, 50, 0.06), rgba(184, 134, 11, 0.08));
}
.a39-drawer-quick__btn--cta {
  background: linear-gradient(135deg, var(--a39-moss), var(--a39-moss-light));
  border-color: transparent;
  color: #fff;
}
.a39-drawer-quick__btn--cta:hover { color: #fff; }
.a39-drawer-quick__icon {
  display: grid;
  place-items: center;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: rgba(27, 67, 50, 0.08);
  font-size: 0.95rem;
}
.a39-drawer-quick__btn--cta .a39-drawer-quick__icon { background: rgba(255, 255, 255, 0.15); }
.a39-drawer-quick__btn.is-member .a39-drawer-quick__icon {
  background: var(--a39-moss);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 800;
}

.a39-drawer-search {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1rem;
  background: #fff;
  border-bottom: 1px solid var(--a39-border);
}
.a39-drawer-search__icon {
  display: grid;
  place-items: center;
  width: 1.1rem;
  height: 1.1rem;
  color: var(--a39-muted);
  flex-shrink: 0;
}
.a39-drawer-search__icon svg { width: 100%; height: 100%; }
.a39-drawer-search input {
  flex: 1;
  min-width: 0;
  border: 1px solid var(--a39-border);
  border-radius: 10px;
  padding: 0.6rem 0.75rem;
  font: inherit;
  font-size: 0.88rem;
  background: var(--a39-parchment);
}
.a39-drawer-search input:focus {
  outline: none;
  border-color: #52B788;
  box-shadow: 0 0 0 3px rgba(82, 183, 136, 0.15);
}
.a39-drawer-search button {
  border: 0;
  background: var(--a39-copper);
  color: #fff;
  border-radius: 10px;
  padding: 0.6rem 0.85rem;
  font-weight: 700;
  font-size: 0.78rem;
  cursor: pointer;
  white-space: nowrap;
}

.a39-drawer-nav { padding: 0.85rem 1rem 0.25rem; }
.a39-drawer-label {
  margin: 0 0 0.55rem;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--a39-copper);
}
.a39-drawer-nav-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.55rem;
}
.a39-drawer-tile {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.75rem 0.85rem;
  border-radius: 14px;
  background: #fff;
  border: 1px solid rgba(27, 67, 50, 0.08);
  text-decoration: none;
  color: var(--a39-ink);
  box-shadow: 0 4px 14px rgba(26, 46, 46, 0.04);
  transition: transform 0.2s, border-color 0.2s, box-shadow 0.2s, background 0.2s;
}
.a39-drawer-tile:hover {
  text-decoration: none;
  transform: translateX(4px);
  border-color: rgba(82, 183, 136, 0.35);
  box-shadow: 0 8px 20px rgba(26, 46, 46, 0.08);
  color: var(--a39-moss);
}
.a39-drawer-tile.is-active {
  background: linear-gradient(135deg, var(--a39-moss-dark), var(--a39-moss));
  border-color: transparent;
  color: #fff;
  box-shadow: 0 8px 20px rgba(27, 67, 50, 0.25);
}
.a39-drawer-tile.is-active:hover { color: #fff; }
.a39-drawer-tile__icon {
  display: grid;
  place-items: center;
  width: 2.1rem;
  height: 2.1rem;
  border-radius: 10px;
  background: rgba(27, 67, 50, 0.06);
  font-size: 1rem;
  flex-shrink: 0;
}
.a39-drawer-tile.is-active .a39-drawer-tile__icon { background: rgba(255, 255, 255, 0.15); }
.a39-drawer-tile__label {
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1.2;
}
.a39-drawer-tile--catalog { grid-column: 1 / -1; }

.a39-drawer-collections { padding: 0.85rem 1rem 1rem; }
.a39-drawer-lanes {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}
.a39-drawer-lane-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.45rem 0.75rem;
  border-radius: 999px;
  border: 1px solid rgba(27, 67, 50, 0.1);
  background: #fff;
  font-size: 0.75rem;
  font-weight: 600;
  text-decoration: none;
  color: var(--a39-ink);
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
}
.a39-drawer-lane-chip:hover {
  text-decoration: none;
  background: rgba(82, 183, 136, 0.1);
  border-color: rgba(82, 183, 136, 0.35);
  transform: translateY(-1px);
  color: var(--a39-moss);
}
.a39-drawer-lane-chip .a39-lane-dot {
  width: 7px;
  height: 7px;
}

.a39-drawer-foot {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.45rem;
  padding: 0.85rem 1rem;
  border-top: 1px solid var(--a39-border);
  background: #fff;
}
.a39-drawer-action {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.65rem 0.5rem;
  border-radius: 12px;
  background: var(--a39-parchment);
  border: 1px solid rgba(27, 67, 50, 0.08);
  font-weight: 700;
  font-size: 0.75rem;
  text-decoration: none;
  color: var(--a39-moss);
  text-align: center;
  transition: background 0.2s, color 0.2s;
}
.a39-drawer-action:hover {
  background: var(--a39-moss);
  color: #fff;
  text-decoration: none;
}

body.a39-drawer-open { overflow: hidden; }

.section { padding: 3rem 0; }
.section-muted { background: var(--a39-linen); }
.section-head { display: flex; justify-content: space-between; align-items: end; gap: 1rem; margin-bottom: 1.5rem; flex-wrap: wrap; }
.section-head h2 { margin: 0; font-family: var(--a39-font-display); font-size: clamp(1.5rem, 2.5vw, 2rem); }
.section-head p { margin: 0.35rem 0 0; color: var(--a39-muted); }
.section-head a { font-weight: 700; white-space: nowrap; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 1.25rem;
  border-radius: 999px;
  font-weight: 700;
  border: 2px solid transparent;
  cursor: pointer;
  text-decoration: none;
  font-size: 0.92rem;
}
.btn:hover { text-decoration: none; }
.btn-primary { background: var(--a39-copper); color: var(--a39-moss-dark); }
.btn-primary:hover { background: var(--a39-copper-light); }
.btn-outline { border-color: var(--a39-moss); color: var(--a39-moss); background: transparent; }
.btn-outline:hover { background: var(--a39-moss); color: #fff; }
.btn-sm { padding: 0.45rem 0.85rem; font-size: 0.82rem; }
.btn-soft { background: var(--a39-linen); color: var(--a39-moss); }

.product-grid, .a39-product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
  gap: 1.25rem;
}
.product-card {
  background: #fff;
  border: 1px solid var(--a39-border);
  border-radius: var(--a39-radius);
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(26, 46, 46, 0.05);
}
.product-img {
  display: block;
  aspect-ratio: 1;
  background: var(--a39-parchment);
  position: relative;
  overflow: hidden;
}
.product-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  padding: 8%;
  box-sizing: border-box;
}
.product-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  background: var(--a39-copper);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.25rem 0.5rem;
  border-radius: 6px;
}
.product-body { padding: 0.9rem 1rem 1rem; }
.product-cat { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.06em; color: var(--a39-muted); }
.product-body h3 { margin: 0.35rem 0 0.65rem; font-size: 1rem; line-height: 1.35; }
.product-body h3 a { color: inherit; text-decoration: none; }
.product-body h3 a:hover { color: var(--a39-moss); }
.product-foot { display: flex; justify-content: space-between; align-items: center; gap: 0.5rem; }
.price { font-weight: 800; color: var(--a39-moss); }
.empty-state { text-align: center; padding: 3rem 1rem; color: var(--a39-muted); }

.a39-footer { margin-top: auto; }
.a39-footer-top { background: var(--a39-moss-dark); color: #D8E2DC; padding: 3rem 0 2rem; }
.a39-footer-bento {
  display: grid;
  grid-template-columns: 1.3fr repeat(3, 1fr);
  gap: 1.25rem;
}
.a39-footer-panel h2, .a39-footer-panel h3 {
  font-family: var(--a39-font-display);
  margin: 0 0 0.75rem;
  color: #fff;
}
.a39-footer-panel h3 { font-size: 0.95rem; text-transform: uppercase; letter-spacing: 0.06em; }
.a39-footer-panel p, .a39-footer-panel a {
  display: block;
  margin: 0 0 0.45rem;
  color: #C7D4CC;
  font-size: 0.92rem;
  text-decoration: none;
}
.a39-footer-panel a:hover { color: var(--a39-copper-light); }
.a39-footer-entity { font-size: 0.82rem; opacity: 0.75; margin-top: 0.75rem; }

/* Light footer (Vegist-style) */
.a39-footer--light {
  background: #f4f4f4;
  color: var(--a39-ink);
}
.a39-footer-columns {
  display: grid;
  grid-template-columns: 1.2fr repeat(4, 1fr);
  gap: 2rem;
  padding: 3.5rem 0 2.5rem;
}
.a39-footer-col h3 {
  margin: 0 0 1rem;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--a39-ink);
}
.a39-footer-col p {
  margin: 0 0 1rem;
  font-size: 0.88rem;
  color: var(--a39-muted);
  line-height: 1.55;
}
.a39-footer-col a {
  display: block;
  margin: 0 0 0.5rem;
  font-size: 0.88rem;
  color: var(--a39-muted);
  text-decoration: none;
}
.a39-footer-col a:hover { color: var(--a39-moss); }
.a39-footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.85rem;
  text-decoration: none;
  color: var(--a39-ink);
}
.a39-footer-logo strong {
  font-family: var(--a39-font-body);
  font-size: 1.35rem;
  font-weight: 800;
}
.a39-footer-logo-icon { font-size: 1.1rem; }
.a39-footer-newsletter {
  display: flex;
  align-items: stretch;
  border: 1px solid #ddd;
  background: #fff;
  border-radius: 4px;
  overflow: hidden;
}
.a39-footer-newsletter input {
  flex: 1;
  border: 0;
  padding: 0.65rem 0.85rem;
  font: inherit;
  font-size: 0.85rem;
  min-width: 0;
}
.a39-footer-newsletter input:focus { outline: none; }
.a39-footer-newsletter button {
  border: 0;
  background: transparent;
  padding: 0 0.85rem;
  font-size: 1.1rem;
  cursor: pointer;
  color: var(--a39-ink);
}
.a39-footer-bottom {
  background: #111;
  color: #aaa;
  padding: 0.85rem 0;
  font-size: 0.82rem;
}
.a39-footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.a39-footer-policy-strip {
  background: #061410;
  color: #8FA89A;
  padding: 0.85rem 0;
  font-size: 0.82rem;
}
.a39-footer-policy-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.a39-footer-policy-links { display: flex; flex-wrap: wrap; gap: 0.75rem 1rem; }
.a39-footer-policy-links a { color: #C7D4CC; text-decoration: none; font-weight: 600; }
.a39-footer-bottom .a39-footer-policy-links a { color: #ccc; font-weight: 600; font-size: 0.82rem; }
.a39-footer-copy { margin: 0; }
