/* Blissplants — unique nursery skin (not Ugaoo clone) */
@import url('https://fonts.googleapis.com/css2?family=Literata:opsz,wght@7..72,500;7..72,600;7..72,700&family=Source+Sans+3:wght@400;500;600;700&display=swap');

:root {
  --green-dark: #0c221c;
  --green-deep: #14352c;
  --green-mid: #2f5c4c;
  --green-leaf: #3d7a62;
  --green-bright: #4a8f72;
  --cream: #f7f5f1;
  --cream-warm: #efeae2;
  --yellow: #d9c4a0;
  --yellow-soft: #ebe0cf;
  --text: #12241e;
  --text-muted: #4d5f57;
  --border: #d5cfc4;
  --radius-lg: 4px;
  --radius: 10px;
  --font-display: 'Literata', Georgia, 'Times New Roman', serif;
  --font-body: 'Source Sans 3', 'Segoe UI', sans-serif;
  --container: 1180px;
  --accent-gold: #b85c38;
  --accent-clay: #b85c38;
  --mist: #e6ebe8;
  --paper: #fbfaf7;
  --ink: #0c221c;
  --focus: #1a6b52;
}

body {
  background: var(--paper);
  padding-bottom: 72px;
  font-family: var(--font-body);
  color: var(--text);
  line-height: 1.5;
}

/* Accessibility */
.skip-link {
  position: absolute;
  left: 0.75rem;
  top: -100px;
  z-index: 9999;
  background: var(--ink);
  color: #fff;
  padding: 0.65rem 1rem;
  border-radius: 8px;
  font-weight: 700;
  text-decoration: none;
}
.skip-link:focus {
  top: 0.75rem;
  outline: 3px solid var(--accent-clay);
  outline-offset: 2px;
}
.bp-skin :focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 3px;
}
.bp-skin a:focus:not(:focus-visible),
.bp-skin button:focus:not(:focus-visible) {
  outline: none;
}

@media (min-width: 901px) {
  body { padding-bottom: 0; }
}

/* ===== ANNOUNCEMENT — clay ribbon (not solid Ugaoo green) ===== */
.announce {
  background: linear-gradient(90deg, #1a3d33 0%, #14352c 50%, #1f463c 100%);
  color: #f4f1ea;
  overflow: hidden;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  border-bottom: 2px solid var(--accent-clay);
}
.announce-track {
  display: flex;
  gap: 3rem;
  width: max-content;
  animation: marquee 28s linear infinite;
  padding: 0.55rem 0;
}
.announce-item {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  white-space: nowrap;
  letter-spacing: 0.02em;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ===== HEADER / NAV ===== */
.site-header {
  background: var(--paper);
  position: sticky;
  top: 0;
  z-index: 120;
  border-bottom: 1px solid var(--border);
  box-shadow: 0 1px 0 rgba(12, 34, 28, 0.04);
}
.header-row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1rem;
  padding: 0.75rem 0;
}
.header-row .logo img {
  height: 50px;
  width: auto;
  max-width: min(220px, 36vw);
  object-fit: contain;
}
.icon-btn {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--green-deep);
  display: grid;
  place-items: center;
  padding: 0.35rem;
  position: relative;
}
.icon-btn svg { width: 24px; height: 24px; }
.header-icons { display: flex; align-items: center; gap: 0.65rem; }
.search-pill {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: #f0ece6;
  border-radius: 999px;
  padding: 0.7rem 1rem;
  border: none;
  width: 100%;
  max-width: 560px;
  margin-inline: auto;
}
.search-pill input {
  border: none;
  background: transparent;
  outline: none;
  width: 100%;
  color: var(--text);
}
.search-pill svg { width: 18px; height: 18px; color: var(--text-muted); flex-shrink: 0; }

.desk-nav {
  border-top: 1px solid var(--border);
  background: #fff;
}
.desk-nav-list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.15rem;
}
.desk-nav-list > li { position: relative; }
.desk-nav-list > li > a,
.desk-nav-list > li > button {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.85rem 0.55rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text);
  background: none;
  border: none;
  cursor: pointer;
  border-bottom: 2px solid transparent;
}
.desk-nav-list > li:hover > a,
.desk-nav-list > li:hover > button,
.desk-nav-list > li.open > button,
.desk-nav-list > li > a.active {
  border-bottom-color: var(--green-deep);
  color: var(--green-deep);
}

.dropdown {
  position: absolute;
  left: 0;
  top: 100%;
  min-width: 260px;
  background: #f7f5f1;
  border: 1px solid var(--border);
  border-radius: 0 0 12px 12px;
  box-shadow: 0 16px 40px rgba(0,0,0,0.08);
  padding: 0.5rem 0;
  display: none;
  z-index: 130;
}
.desk-nav-list > li:hover > .dropdown,
.desk-nav-list > li.open > .dropdown { display: block; }
.dropdown a {
  display: block;
  padding: 0.7rem 1.15rem;
  font-size: 0.92rem;
  color: #222;
  transition: background 0.15s ease, color 0.15s ease;
}
.dropdown a:hover {
  background: #fff;
  color: var(--green-leaf);
}

/* Mobile drawer */
.drawer-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 55, 45, 0.45);
  opacity: 0;
  visibility: hidden;
  transition: 0.25s ease;
  z-index: 200;
}
.drawer-backdrop.open { opacity: 1; visibility: visible; }
.drawer {
  position: fixed;
  inset: 0 auto 0 0;
  width: min(88vw, 360px);
  background: var(--cream);
  z-index: 210;
  transform: translateX(-105%);
  transition: transform 0.28s ease;
  display: flex;
  flex-direction: column;
  overflow: auto;
}
.drawer.open { transform: translateX(0); }
.drawer-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.1rem;
  border-bottom: 1px solid var(--border);
  background: #fff;
}
.drawer-head .login-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 600;
  color: var(--green-deep);
}
.drawer-nav { padding: 0.25rem 0 1rem; }
.drawer-nav > li { border-bottom: 1px solid #ebe5db; }
.drawer-nav > li > a,
.drawer-nav > li > button {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.15rem;
  background: none;
  border: none;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--green-deep);
  cursor: pointer;
  text-align: left;
}
.drawer-sub {
  display: none;
  background: linear-gradient(180deg, #f7f4ef 0%, #fff 100%);
  margin: 0 0.75rem 0.75rem;
  padding: 0.35rem;
  border-radius: 12px;
  border: 1px solid #ebe5db;
}
.drawer-nav > li.open > .drawer-sub { display: block; }
.drawer-chevron {
  width: 8px;
  height: 8px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(-45deg);
  transition: transform 0.2s ease;
  opacity: 0.7;
}
.drawer-nav > li.open > .drawer-toggle .drawer-chevron {
  transform: rotate(45deg);
}
.drawer-sub a {
  display: block;
  padding: 0.7rem 0.85rem;
  margin: 0.15rem 0;
  font-size: 0.9rem;
  color: #1a2e27;
  text-transform: none;
  letter-spacing: 0;
  font-weight: 500;
  border-radius: 8px;
  text-decoration: none;
}
.drawer-sub a:hover,
.drawer-sub a:focus-visible {
  background: #fff;
  color: var(--green-deep);
}
.drawer-sub-all {
  font-weight: 700 !important;
  color: var(--green-deep) !important;
  background: rgba(255,255,255,0.7);
  margin-bottom: 0.25rem !important;
}
.drawer-leaf > a {
  text-transform: uppercase;
}
.drawer-foot {
  margin-top: auto;
  border-top: 1px solid var(--border);
  padding: 0.75rem 0 1.25rem;
  background: #fff;
}
.drawer-foot a {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.85rem 1.15rem;
  font-size: 0.9rem;
  color: var(--green-deep);
}
.drawer-foot svg { width: 18px; height: 18px; flex-shrink: 0; }

.mobile-only { display: none !important; }
.desktop-only { display: block; }
@media (max-width: 900px) {
  .desktop-only { display: none !important; }
  button.mobile-only.icon-btn,
  a.mobile-only.icon-btn { display: grid !important; }
  .mobile-search {
    display: none !important;
    padding: 0 1rem 0.65rem;
    background: #fff;
  }
  .mobile-search.is-open { display: block !important; }
  .mobile-search .search-pill { max-width: none; }
  .header-row .search-pill { display: none; }
}

/* PDP: Ugaoo-style mobile — hide extra chrome, keep sticky cart + USP marquee */
body.pdp-page .pdp-mobile-head.mobile-only,
body.pdp-page .pdp-thumbs--mobile.mobile-only {
  display: none !important;
}
body.pdp-page .pdp-marquee.mobile-only {
  display: block !important;
}
body.pdp-page .pdp-sticky-bar.mobile-only {
  display: flex !important;
}
body.pdp-page .pdp-title.desktop-only,
body.pdp-page .pdp-desc.desktop-only,
body.pdp-page .pdp-features.desktop-only,
body.pdp-page .pdp-crumb.desktop-only,
body.pdp-page .pdp-thumbs--desktop.desktop-only,
body.pdp-page .pdp-extra-actions.desktop-only,
body.pdp-page .pdp-block.desktop-only {
  display: none !important;
}
@media (min-width: 1024px) {
  body.pdp-page .pdp-mobile-head.mobile-only,
  body.pdp-page .pdp-marquee.mobile-only,
  body.pdp-page .pdp-thumbs--mobile.mobile-only,
  body.pdp-page .pdp-sticky-bar.mobile-only {
    display: none !important;
  }
  body.pdp-page .pdp-crumb.desktop-only { display: block !important; }
  body.pdp-page .pdp-title.desktop-only { display: block !important; }
  body.pdp-page .pdp-desc.desktop-only { display: block !important; }
  body.pdp-page .pdp-features.desktop-only { display: flex !important; }
  body.pdp-page .pdp-thumbs--desktop.desktop-only { display: flex !important; }
  body.pdp-page .pdp-extra-actions.desktop-only { display: flex !important; }
  body.pdp-page .pdp-block.desktop-only { display: block !important; }
}

/* ===== HOME HERO — readable image slider ===== */
.home-hero {
  background: var(--paper);
  padding: 0;
}
.home-hero--spotlight {
  border-bottom: 1px solid var(--border);
}
.spot-slider {
  position: relative;
  width: 100%;
  margin: 0;
  border-radius: 0;
  overflow: hidden;
  border: 0;
  border-bottom: 1px solid var(--border);
  background: #1a2e27;
  /* fixed height only — no aspect-ratio + max-height fight (that was cutting the slider) */
  height: clamp(300px, 72vw, 440px);
  min-height: 300px;
}
.spot-slides {
  position: absolute;
  inset: 0;
}
.spot-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.45s ease;
  pointer-events: none;
}
.spot-slide.is-active {
  opacity: 1;
  pointer-events: auto;
  z-index: 1;
}
.spot-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}
.spot-veil {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(8, 20, 16, 0.12) 0%, rgba(8, 20, 16, 0.25) 45%, rgba(8, 20, 16, 0.82) 100%);
}
.spot-caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
  padding: 1.25rem 1rem 2.5rem;
  color: #fff;
  text-align: left;
}
.spot-kicker {
  display: inline-block;
  margin: 0 0 0.4rem;
  padding: 0.28rem 0.6rem;
  background: var(--accent-clay);
  color: #fff;
  border-radius: 6px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.02em;
}
.spot-caption h1 {
  margin: 0 0 0.45rem;
  max-width: 18ch;
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 5vw, 1.9rem);
  font-weight: 700;
  line-height: 1.2;
  color: #fff;
  text-shadow: 0 1px 2px rgba(0,0,0,0.35);
}
.spot-caption .trust-inline {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.3rem 0.45rem;
  margin: 0;
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(255,255,255,0.95);
}
.spot-caption .trust-inline .stars {
  color: #f0c14d;
  letter-spacing: 1px;
}
.spot-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 4;
  width: 28px;
  height: 28px;
  border: 0;
  border-radius: 50%;
  background: rgba(255,255,255,0.94);
  color: var(--ink);
  font-size: 1.05rem;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 3px 10px rgba(0,0,0,0.16);
  display: grid;
  place-items: center;
  padding: 0;
}
.spot-prev { left: 0.45rem; }
.spot-next { right: 0.45rem; }
.spot-nav:hover { background: #fff; }
.spot-nav:focus-visible {
  outline: 3px solid var(--accent-clay);
  outline-offset: 2px;
}
.spot-slider .hero-dots {
  position: absolute;
  left: 50%;
  bottom: 0.65rem;
  transform: translateX(-50%);
  display: flex;
  gap: 0.4rem;
  z-index: 4;
}
.spot-slider .hero-dots button {
  width: 8px;
  height: 8px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(255,255,255,0.45);
  cursor: pointer;
}
.spot-slider .hero-dots button.active { background: #fff; }

/* Side options under slider — mobile marquee + desktop grid */
.spot-sides-rail {
  margin: 0.45rem 0.75rem 0;
  padding: 0.6rem 0;
  background:
    linear-gradient(145deg, rgba(232, 245, 236, 0.95) 0%, rgba(255, 252, 247, 0.98) 55%, rgba(244, 236, 220, 0.9) 100%);
  border: 1px solid rgba(15, 61, 46, 0.08);
  border-radius: 18px;
  box-shadow: 0 8px 24px rgba(15, 40, 28, 0.05);
  overflow: hidden;
}
.spot-sides-viewport {
  overflow: hidden;
  width: 100%;
  mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent);
}
.spot-sides-track {
  display: flex;
  width: max-content;
  animation: spotSidesMarquee 22s linear infinite;
  will-change: transform;
}
.spot-sides-rail:hover .spot-sides-track,
.spot-sides-rail:focus-within .spot-sides-track {
  animation-play-state: paused;
}
.spot-sides,
.spot-sides--row,
.spot-sides--clone {
  list-style: none;
  margin: 0;
  padding: 0 0.55rem;
  display: flex;
  gap: 0.65rem;
  flex-shrink: 0;
  background: none;
  border: none;
  border-radius: 0;
  box-shadow: none;
}
.spot-side {
  position: static !important;
  max-width: none !important;
  display: flex;
  gap: 0.7rem;
  align-items: center;
  flex: 0 0 auto;
  width: min(78vw, 270px);
  background: #fff !important;
  border: 1px solid rgba(15, 61, 46, 0.07) !important;
  border-radius: 16px;
  padding: 0.85rem 0.95rem;
  backdrop-filter: none;
  box-shadow: 0 4px 14px rgba(15, 40, 28, 0.06);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}
.spot-side:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(15, 40, 28, 0.08);
  border-color: rgba(15, 61, 46, 0.14) !important;
}
.spot-side-copy { min-width: 0; }
.spot-side-copy strong {
  display: block;
  font-family: var(--font-display);
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.2;
  letter-spacing: 0.01em;
  white-space: nowrap;
}
.spot-side-copy span {
  display: block;
  font-size: 0.76rem;
  color: #5f7368;
  line-height: 1.35;
  margin-top: 0.2rem;
  white-space: nowrap;
}
.spot-side .spot-ico {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  min-width: 42px;
  min-height: 42px;
  border-radius: 14px;
  display: flex !important;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  line-height: 0;
  box-sizing: border-box;
}
.spot-side .spot-ico::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  opacity: 0.28;
  z-index: 0;
  pointer-events: none;
}
.spot-side .spot-ico svg {
  width: 20px;
  height: 20px;
  display: block !important;
  flex: 0 0 auto;
  position: relative;
  z-index: 1;
  margin: 0 auto;
}
.spot-side--grow .spot-ico {
  background: linear-gradient(145deg, #0f3d2e, #1a5c42);
  color: #e8f5ec;
}
.spot-side--grow .spot-ico::after {
  background: radial-gradient(circle at 30% 30%, #7cbc8c, transparent 70%);
}
.spot-side--healthy .spot-ico {
  background: linear-gradient(145deg, #2f6b45, #4f8f5c);
  color: #f4fff6;
}
.spot-side--healthy .spot-ico::after {
  background: radial-gradient(circle at 30% 30%, #b7e0b8, transparent 70%);
}
.spot-side--light .spot-ico {
  background: linear-gradient(145deg, #c4a35a, #e0c278);
  color: #2a2414;
}
.spot-side--light .spot-ico::after {
  background: radial-gradient(circle at 30% 30%, #ffe9a8, transparent 70%);
}
@keyframes spotSidesMarquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .spot-sides-track { animation: none; }
  .spot-sides-viewport { overflow-x: auto; -webkit-overflow-scrolling: touch; }
  .spot-sides--clone { display: none; }
  .spot-side:hover { transform: none; }
}
@media (min-width: 640px) {
  .spot-sides-rail {
    padding: 0.7rem;
  }
  .spot-sides-viewport {
    overflow: visible;
    mask-image: none;
    -webkit-mask-image: none;
  }
  .spot-sides-track {
    display: block;
    width: auto;
    animation: none;
  }
  .spot-sides--clone { display: none !important; }
  .spot-sides,
  .spot-sides--row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.65rem;
    padding: 0;
    width: 100%;
  }
  .spot-side {
    width: auto;
    flex-direction: row;
    align-items: center;
    text-align: left;
    min-height: 100%;
    padding: 0.9rem 1rem;
    white-space: normal;
    gap: 0.75rem;
  }
  .spot-side-copy {
    flex: 1 1 auto;
    min-width: 0;
  }
  .spot-side-copy strong,
  .spot-side-copy span {
    white-space: normal;
  }
  .spot-side-copy strong {
    font-size: 1rem;
  }
  .spot-slider {
    height: clamp(360px, 48vw, 480px);
  }
}
@media (min-width: 860px) {
  .spot-slider {
    width: calc(100% - 40px);
    max-width: none;
    margin: 1rem 20px 0;
    border-radius: 16px;
    border: 1px solid var(--border);
    height: clamp(400px, 38vw, 560px);
  }
  .spot-caption { padding: 1.75rem 1.5rem 2.75rem; }
  .spot-caption h1 { font-size: 2.1rem; max-width: 22ch; }
  .spot-sides-rail,
  .spot-sides--row,
  .spot-chips,
  .spot-cta {
    width: min(100% - 2rem, var(--container));
    margin-inline: auto;
    padding-inline: 0;
  }
  .spot-sides-rail { padding: 0.75rem; }
}

.spot-chips {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.55rem;
  padding: 0.65rem 0.75rem 0.35rem;
}
.spot-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  min-height: 44px;
  padding: 0.55rem 0.65rem;
  border-radius: 12px;
  border: 1.5px solid #6f9a8a;
  background: #fff;
  color: var(--ink);
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 700;
}
.spot-chip svg { width: 18px; height: 18px; color: var(--green-mid); flex-shrink: 0; }
.spot-chip:hover { background: #f3faf5; }

.spot-cta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.55rem;
  padding: 0.35rem 0.75rem 0.85rem;
}
.spot-buy,
.spot-cart {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  min-height: 48px;
  border-radius: 12px;
  font-size: 0.88rem;
  font-weight: 800;
  text-decoration: none;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.spot-buy {
  background: var(--ink);
  color: #fff;
  border: 2px solid var(--ink);
}
.spot-buy:hover { background: var(--green-mid); border-color: var(--green-mid); color: #fff; }
.spot-cart {
  background: #fff;
  color: var(--ink);
  border: 2px solid var(--ink);
}
.spot-cart:hover { background: var(--mist); }
.spot-buy svg,
.spot-cart svg { width: 18px; height: 18px; }

.welcome-cats,
.welcome-cats--tiles {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.65rem 0.5rem;
  padding: 0.35rem 0.75rem 1.15rem;
  background: var(--paper);
  overflow: visible;
  scroll-snap-type: none;
}
.welcome-cat {
  width: auto;
  text-align: center;
  text-decoration: none;
  color: var(--ink);
  min-width: 0;
}
.welcome-cats--tiles .welcome-cat-img {
  width: 100%;
  aspect-ratio: 1;
  height: auto;
  max-width: 92px;
  margin: 0 auto 0.4rem;
  border-radius: 12px;
  background: var(--mist);
  overflow: hidden;
  border: 1px solid var(--border);
}
.welcome-cats--tiles .welcome-cat-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.welcome-cat span {
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  line-height: 1.25;
  color: var(--ink);
}
@media (min-width: 700px) {
  .welcome-cats--tiles {
    display: flex;
    gap: 1rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding: 0.5rem 1.25rem 1.35rem;
  }
  .welcome-cats--tiles .welcome-cat {
    flex: 0 0 100px;
    scroll-snap-align: start;
  }
}

.home-hero--split,
.home-hero--welcome,
.trust-strip,
.hero-paths,
.hero-promos,
.promo-card,
.spot-stage,
.spot-visual,
.spot-plant,
.spot-pedestal,
.spot-copy,
.spot-sticker,
.spot-rating { display: none !important; }

/* Value ribbon */
.value-bar--ribbon {
  background: var(--ink);
  color: #f4f1ea;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  border-bottom: 3px solid var(--accent-clay);
  padding: 0.15rem 0.5rem;
  box-sizing: border-box;
  width: 100%;
  overflow: visible;
}
.value-bar--ribbon .value-item {
  text-align: left;
  padding: 0.75rem 0.55rem;
  border-right: 1px solid rgba(244, 241, 234, 0.12);
  display: flex;
  align-items: center;
  gap: 0.45rem;
  min-width: 0;
  box-sizing: border-box;
}
.value-bar--ribbon .value-item:nth-child(2n) { border-right: none; }
.value-bar--ribbon .value-icon {
  width: 30px;
  height: 30px;
  flex-shrink: 0;
  margin: 0;
  background: transparent;
  border: 1px solid rgba(244, 241, 234, 0.35);
  border-radius: 8px;
  display: grid;
  place-items: center;
  color: #e8d5b5;
}
.value-bar--ribbon .value-icon svg { width: 15px; height: 15px; }
.value-bar--ribbon .value-item span {
  font-size: 0.68rem;
  font-weight: 600;
  line-height: 1.25;
  color: #f4f1ea;
  min-width: 0;
  overflow-wrap: anywhere;
  word-break: break-word;
}
@media (min-width: 800px) {
  .value-bar--ribbon {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    padding: 0.25rem 0.75rem;
  }
  .value-bar--ribbon .value-item {
    border-right: 1px solid rgba(244, 241, 234, 0.12);
    padding: 0.85rem 0.75rem;
  }
  .value-bar--ribbon .value-item:last-child { border-right: none; }
  .value-bar--ribbon .value-item span { font-size: 0.78rem; overflow-wrap: normal; }
}

/* Categories as tile band — light bg so dark text stays readable */
.cat-band.cat-band--tiles {
  background: #f4f1ea !important;
  color: #0c221c !important;
  padding: 2rem 0 1.75rem;
  border-bottom: 1px solid var(--border);
}
.cat-band.cat-band--tiles h2 {
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 3vw, 2rem);
  color: #0c221c !important;
  font-weight: 600;
  margin: 0 0 1rem;
  padding-left: 0.75rem;
  border-left: 4px solid var(--accent-clay);
}
.cat-row--wrap {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem 0.5rem;
  overflow: visible !important;
}
.cat-band.cat-band--tiles .cat-chip {
  width: auto;
  color: #0c221c !important;
}
.cat-band.cat-band--tiles .cat-chip .circle {
  width: 72px;
  height: 72px;
  border-radius: 14px;
  border: 1px solid #fff;
  box-shadow: 0 6px 16px rgba(12, 34, 28, 0.08);
  margin: 0 auto 0.35rem;
  background: #fff;
}
.cat-band.cat-band--tiles .cat-chip span {
  color: #0c221c !important;
  font-weight: 700;
  font-size: 0.78rem;
}
@media (min-width: 700px) {
  .cat-row--wrap {
    display: flex !important;
    gap: 1rem;
    overflow-x: auto !important;
  }
  .cat-band.cat-band--tiles .cat-chip { width: 88px; flex: 0 0 auto; }
}

.home-section--tint { background: #f0ebe3; }
.home-section h2,
.section-head-row h2,
.serif-title {
  font-family: var(--font-display);
  color: var(--ink);
}
.section-head-row h2 {
  padding-left: 0.7rem;
  border-left: 3px solid var(--accent-clay);
}

/* Product cards — flatter, editorial */
.ug-card {
  border-radius: 8px !important;
  box-shadow: none !important;
  border: 1px solid var(--border);
  background: #fff;
}
.badge-off {
  background: var(--accent-clay) !important;
  border-radius: 6px !important;
}
.badge-best {
  background: var(--ink) !important;
  color: #fff !important;
  border-radius: 6px !important;
}

/* Bottom nav — ink active underline */
.bottom-nav--five {
  border-top: 2px solid var(--ink);
}
.bottom-nav--four {
  grid-template-columns: repeat(4, 1fr);
  border-top: 2px solid var(--ink);
}
.bottom-nav a {
  min-height: 52px;
  justify-content: center;
}
.bottom-nav a.active {
  color: var(--ink);
  box-shadow: inset 0 -3px 0 var(--accent-clay);
}

/* Value bar base */
.value-bar {
  background: var(--value-bar-bg, var(--mist));
  color: var(--value-bar-fg, var(--green-deep));
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-bottom: 1px solid var(--border);
}
.value-bar--quiet .value-item {
  text-align: center;
  padding: 1rem 0.65rem;
  border-right: 1px solid rgba(30, 51, 44, 0.1);
}
.value-bar--quiet .value-item:last-child { border-right: none; }
.value-bar--quiet .value-icon {
  width: 36px;
  height: 36px;
  margin: 0 auto 0.4rem;
  background: transparent;
  border: 1px solid rgba(30, 51, 44, 0.18);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--green-mid);
}
.value-bar--quiet .value-icon svg { width: 18px; height: 18px; }
.value-bar--quiet .value-item span {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  color: inherit;
  line-height: 1.3;
}

/* Categories — soft linen */
.cat-band {
  background: var(--green-deep);
  color: #fff;
  padding: 2.5rem 0;
}
.cat-band--soft {
  background: linear-gradient(180deg, #ebe7df 0%, #f3f1ec 100%);
  color: var(--green-deep);
  border-bottom: 1px solid var(--border);
}
.cat-band--soft h2 {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3vw, 2.2rem);
  color: var(--green-deep);
  font-weight: 600;
  letter-spacing: 0;
  text-transform: none;
}
.cat-band--soft .cat-chip { color: var(--green-deep); }
.cat-band--soft .cat-chip span { color: var(--green-deep); }
.cat-band--soft .cat-chip .circle {
  box-shadow: 0 8px 20px rgba(22, 36, 31, 0.1);
  border: 2px solid #fff;
}

/* Ensure tile band wins over base .cat-band dark green */
.cat-band.cat-band--tiles {
  background: #f4f1ea !important;
  color: #0c221c !important;
}
.cat-band.cat-band--tiles h2,
.cat-band.cat-band--tiles .cat-chip,
.cat-band.cat-band--tiles .cat-chip span {
  color: #0c221c !important;
}

.cat-band h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  margin-bottom: 1.5rem;
}
.cat-row {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  padding-bottom: 0.5rem;
  scrollbar-width: thin;
}
.cat-chip {
  flex: 0 0 auto;
  width: 100px;
  text-align: center;
  color: #fff;
  text-decoration: none;
}
.cat-chip .circle {
  width: 84px;
  height: 84px;
  border-radius: 50%;
  background: #fff;
  margin: 0 auto 0.55rem;
  overflow: hidden;
  display: grid;
  place-items: center;
}
.cat-chip .circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cat-chip span { font-size: 0.82rem; font-weight: 500; }

/* Section commons */
.home-section { padding: 2.5rem 0; }
.section-head-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 1.25rem;
  gap: 1rem;
}
.section-head-row h2 {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3vw, 2.2rem);
  color: var(--green-deep);
}
.view-all {
  color: var(--green-leaf);
  font-weight: 600;
  text-decoration: underline;
  font-size: 0.95rem;
}

.product-rail {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
  overflow: visible;
  padding-bottom: 0;
  scroll-snap-type: none;
}
.ug-card {
  flex: none;
  width: auto;
  min-width: 0;
  scroll-snap-align: unset;
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0,0,0,0.05);
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  position: relative;
}
@media (min-width: 700px) {
  .product-rail {
    display: flex;
    gap: 1rem;
    overflow-x: auto;
    padding-bottom: 0.75rem;
    scroll-snap-type: x mandatory;
    grid-template-columns: none;
  }
  .ug-card {
    flex: 0 0 220px;
    scroll-snap-align: start;
    border-radius: 16px;
  }
}
.ug-card-img {
  position: relative;
  aspect-ratio: 1;
  background: #eee;
}
.ug-card-img img { width: 100%; height: 100%; object-fit: cover; }
.badge-best {
  position: absolute;
  top: 0.65rem;
  left: 0.65rem;
  background: var(--yellow);
  color: #111;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 0.25rem 0.5rem;
  border-radius: 6px;
  z-index: 2;
}
.badge-off {
  position: absolute;
  top: 0.55rem;
  right: 0.55rem;
  z-index: 2;
  background: #e85d2a;
  color: #fff;
  font-size: 0.68rem;
  font-weight: 700;
  padding: 0.22rem 0.55rem;
  border-radius: 999px;
  line-height: 1.2;
  box-shadow: 0 2px 8px rgba(232, 93, 42, 0.35);
}
.rating-chip {
  position: absolute;
  left: 0.55rem;
  bottom: 0.55rem;
  background: rgba(255,255,255,0.92);
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 600;
  padding: 0.2rem 0.5rem;
}
.ug-card-body { padding: 0.85rem 0.9rem 1rem; flex: 1; display: flex; flex-direction: column; }
.ug-card-body h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--green-deep);
  line-height: 1.25;
  margin-bottom: 0.2rem;
}
.ug-card-body .sub {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-bottom: 0.55rem;
}
.ug-card-foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
}
.ug-price { font-weight: 700; }
.ug-compare {
  font-weight: 400;
  color: #999;
  text-decoration: line-through;
  font-size: 0.85rem;
  margin-left: 0.3rem;
}
.bag-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--green-deep);
  color: #fff;
  border: none;
  display: grid;
  place-items: center;
  cursor: pointer;
  text-decoration: none;
}
.bag-btn svg { width: 16px; height: 16px; }
.rail-dots {
  display: flex;
  justify-content: center;
  gap: 0.4rem;
  margin-top: 0.85rem;
}
.rail-dots span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #d0cbc3;
}
.rail-dots span.active { background: var(--green-deep); }

/* Farm band */
.farm-band {
  background: var(--green-deep);
  color: #fff;
  padding: 3rem 0;
  text-align: center;
}
.farm-band h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  margin-bottom: 0.65rem;
}
.farm-band > .container > p {
  max-width: 52ch;
  margin: 0 auto 1.75rem;
  opacity: 0.9;
}
.farm-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  text-align: left;
}
.farm-card {
  background: rgba(255,255,255,0.08);
  border-radius: 16px;
  overflow: hidden;
}
.farm-card img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}
.farm-card div { padding: 0.9rem 1rem 1.1rem; }
.farm-card h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  margin-bottom: 0.3rem;
}
.farm-card p { font-size: 0.85rem; opacity: 0.85; }

/* Compare table */
.compare-wrap { overflow-x: auto; }
.compare-table {
  width: 100%;
  min-width: 640px;
  border-collapse: separate;
  border-spacing: 0;
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
}
.compare-table th,
.compare-table td {
  padding: 0.85rem 0.75rem;
  text-align: center;
  font-size: 0.88rem;
  border-bottom: 1px solid var(--border);
}
.compare-table th:first-child,
.compare-table td:first-child {
  text-align: left;
  font-weight: 600;
}
.compare-table thead th {
  background: #f3f0ea;
  font-family: var(--font-display);
  font-size: 1rem;
}
.compare-table th.hl,
.compare-table td.hl {
  background: var(--green-deep);
  color: #fff;
}
.compare-table .yes { color: #d4a017; font-weight: 700; }
.compare-table .no { color: #c0392b; }

/* Mobile bottom nav */
.bottom-nav {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: #fff;
  border-top: 1px solid var(--border);
  display: none;
  grid-template-columns: repeat(4, 1fr);
  z-index: 150;
  padding: 0.35rem 0 calc(0.35rem + env(safe-area-inset-bottom));
}
.bottom-nav--five {
  grid-template-columns: repeat(5, 1fr);
}
.bottom-nav--four {
  grid-template-columns: repeat(4, 1fr);
}
.bottom-nav a {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.15rem;
  font-size: 0.62rem;
  font-weight: 600;
  color: var(--green-deep);
  padding: 0.3rem 0.15rem;
  text-decoration: none;
}
.bottom-nav--five a { font-size: 0.58rem; }
.bottom-nav svg { width: 22px; height: 22px; }
.bottom-nav a.active { color: var(--green-mid); }

.wa-fab { bottom: 5.5rem; }

@media (max-width: 900px) {
  .announce-track { padding: 0.4rem 0; font-size: 0.75rem; }
  .site-header .header-row {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 52px;
    padding: 0.5rem 0;
    gap: 0;
  }
  .site-header .header-row > #menuToggle {
    flex: 0 0 44px;
    width: 44px;
    height: 44px;
    z-index: 2;
  }
  .site-header .header-row .logo {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    justify-content: center;
    z-index: 1;
    max-width: calc(100% - 152px);
    pointer-events: none;
  }
  .site-header .header-row .logo img {
    height: 40px;
    width: auto;
    max-width: 100%;
    object-fit: contain;
    display: block;
    pointer-events: auto;
  }
  .site-header .header-icons {
    flex: 0 0 auto;
    margin-left: auto;
    z-index: 2;
    gap: 0;
  }
  .site-header .header-icons .icon-btn {
    width: 44px;
    height: 44px;
    padding: 0.35rem;
  }
  .site-header .header-icons .header-ig svg { width: 22px; height: 22px; }
  .search-pill { padding: 0.55rem 0.9rem; }
  .home-hero { padding: 0; }
  .spot-slider { height: clamp(280px, 70vw, 400px); }
  .spot-caption h1 { font-size: 1.35rem; }
  .welcome-cat { width: 78px; }
  .welcome-cat-img { width: 68px; height: 68px; }
  .value-bar:not(.value-bar--ribbon) { grid-template-columns: repeat(4, 1fr); }
  .value-bar--ribbon {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    padding-inline: 0.5rem;
  }
  .value-bar--quiet .value-item { padding: 0.7rem 0.2rem 0.75rem; }
  .value-bar--quiet .value-icon { width: 30px; height: 30px; margin-bottom: 0.3rem; }
  .value-bar--quiet .value-icon svg { width: 14px; height: 14px; }
  .value-bar--quiet .value-item span { font-size: 0.58rem; line-height: 1.25; }
  .cat-band { padding: 1.35rem 0 1.2rem; }
  .cat-band h2,
  .cat-band--soft h2 { font-size: 1.45rem; margin-bottom: 0.9rem; }
  .cat-chip { width: 78px; }
  .cat-chip .circle { width: 68px; height: 68px; margin-bottom: 0.4rem; }
  .home-section { padding: 1.35rem 0; }
  .home-section .container,
  .cat-band .container,
  .offers-band .container {
    width: 100%;
    max-width: none;
    padding-inline: 1rem;
  }
  .section-head-row { margin-bottom: 0.8rem; }
  .section-head-row h2,
  .serif-title { font-size: 1.45rem; }
  .ug-card { border-radius: 14px; }
  .ug-card-body { padding: 0.65rem 0.7rem 0.75rem; }
  .ug-card-body h3 { font-size: 0.88rem; }
  .offers-band { padding: 1.2rem 0 1.1rem; }
  .offers-head { margin-bottom: 0.75rem; }
  .offers-rail {
    display: flex !important;
    overflow-x: auto;
    gap: 0.75rem;
    scroll-snap-type: x mandatory;
    padding-bottom: 0.35rem;
  }
  .offer-banner,
  .offer-banner--image-only {
    flex: 0 0 86%;
    scroll-snap-align: start;
    min-height: 0;
    aspect-ratio: 16 / 9;
    border-radius: 14px;
  }
  .farm-grid { grid-template-columns: 1fr 1fr; }
  .farm-band { padding: 1.75rem 0; }
  .bottom-nav { display: grid; }
}
@media (max-width: 560px) {
  .farm-grid { grid-template-columns: 1fr; }
}

.icon-btn .cart-badge,
.icon-btn .wish-badge {
  position: absolute;
  top: -2px;
  right: -2px;
  background: var(--green-leaf);
  color: #fff;
  font-size: 0.6rem;
  min-width: 15px;
  height: 15px;
  border-radius: 50%;
  display: grid;
  place-items: center;
}
.site-header .logo { display: flex; align-items: center; gap: 0.55rem; }

/* ===== EXTRA HOME SECTIONS ===== */
.serif-title {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3.2vw, 2.35rem);
  color: var(--green-deep);
  line-height: 1.2;
  margin-bottom: 0.5rem;
}
.section-sub {
  color: var(--text-muted);
  margin-bottom: 1.25rem;
  max-width: 48ch;
}

.room-band { background: #f8efe8; }
.room-slider { margin-bottom: 1.25rem; }
.room-track {
  display: flex;
  gap: 0.85rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 0.35rem;
}
.room-slide {
  flex: 0 0 min(88%, 520px);
  scroll-snap-align: start;
  aspect-ratio: 16/10;
  border-radius: 22px;
  background: center/cover no-repeat;
  position: relative;
  overflow: hidden;
  display: block;
  text-decoration: none;
  color: inherit;
}
.room-slide::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(0,40,30,0.55));
}
.room-caption {
  position: absolute;
  inset: auto 0 1rem 0;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.65rem;
  color: #fff;
  font-family: var(--font-display);
  font-size: 1.35rem;
}
.btn-white {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  color: var(--green-deep);
  font-weight: 700;
  font-family: var(--font-body);
  font-size: 0.88rem;
  border-radius: 999px;
  padding: 0.65rem 1.35rem;
  text-decoration: none;
}

.seeds-banner {
  border-radius: 22px;
  min-height: 220px;
  background: center/cover no-repeat;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}
.seeds-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(20,50,35,0.75), rgba(20,50,35,0.25));
}
.seeds-copy {
  position: relative;
  z-index: 1;
  padding: 1.75rem;
  color: #fff;
}
.seeds-copy h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  line-height: 1.1;
  margin-bottom: 0.35rem;
}
.seeds-copy h2 em { font-style: italic; }
.seeds-copy p { margin-bottom: 1rem; opacity: 0.95; }

.city-pills {
  display: flex;
  gap: 0.5rem;
  overflow-x: auto;
  padding-bottom: 0.85rem;
}
.city-pill {
  flex: 0 0 auto;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: #fff;
  color: var(--text);
  font-weight: 600;
  font-size: 0.88rem;
  padding: 0.55rem 1rem;
  cursor: pointer;
}
.city-pill.active {
  background: var(--green-deep);
  border-color: var(--green-deep);
  color: #fff;
}
.store-rail {
  display: flex;
  gap: 0.85rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
}
.store-card {
  flex: 0 0 min(78%, 320px);
  scroll-snap-align: start;
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 6px 18px rgba(0,0,0,0.06);
}
.store-card img {
  width: 100%;
  aspect-ratio: 16/11;
  object-fit: cover;
}
.store-bar {
  background: var(--yellow);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 0.9rem;
  font-weight: 700;
  color: #111;
}
.store-pin {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--green-deep);
  color: #fff;
  display: grid;
  place-items: center;
  text-decoration: none;
}
.store-pin svg { width: 16px; height: 16px; }

.stay-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
  margin-top: 1rem;
}
.stay-card {
  aspect-ratio: 3/4;
  border-radius: 16px;
  background: center/cover no-repeat;
  position: relative;
  overflow: hidden;
  color: #fff;
  display: flex;
  align-items: flex-end;
  padding: 1rem;
}
.stay-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent, rgba(0,0,0,0.55));
}
.stay-logo {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  background: var(--yellow);
  color: #111;
  font-weight: 800;
  font-size: 0.7rem;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  z-index: 1;
}
.stay-card p { position: relative; z-index: 1; font-weight: 600; font-size: 0.95rem; }

.size-visual {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  margin-bottom: 1rem;
}
.size-visual img {
  width: 100%;
  aspect-ratio: 16/11;
  object-fit: cover;
}
.size-marker {
  position: absolute;
  left: 58%;
  bottom: 28%;
  background: var(--green-deep);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.25rem 0.55rem;
  border-radius: 6px;
}
.size-marker::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 100%;
  width: 2px;
  height: 28px;
  background: #fff;
  transform: translateX(-50%);
}
.size-tabs {
  display: flex;
  gap: 0.55rem;
  margin-bottom: 1rem;
}
.size-tab {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  border: 1.5px solid var(--green-deep);
  background: #fff;
  color: var(--green-deep);
  font-weight: 700;
  cursor: pointer;
}
.size-tab.active {
  background: #d9efdf;
}
.size-cta-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  border-top: 1px solid var(--border);
  padding-top: 1rem;
}

.gifting-band { background: #f7ebe3; }
.gifting-media {
  min-height: 280px;
  background: center/cover no-repeat;
  position: relative;
  color: #fff;
}
.gifting-media::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(20,50,35,0.35), rgba(20,50,35,0.72));
}
.gifting-copy {
  position: relative;
  z-index: 1;
  padding: 2.5rem 1rem;
}
.gifting-copy h2 {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  line-height: 1.15;
  margin-bottom: 0.65rem;
}
.gifting-copy h2 em { font-style: italic; }
.gifting-actions { padding: 1.25rem 0 2rem; }
.trust-brands {
  font-weight: 700;
  color: var(--green-deep);
  margin-bottom: 0.85rem;
}
.gifting-btns { display: flex; gap: 0.65rem; flex-wrap: wrap; }

.review-rail, .blog-rail {
  display: flex;
  gap: 0.85rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 0.35rem;
}
.review-card {
  flex: 0 0 min(82%, 320px);
  scroll-snap-align: start;
  border-radius: 18px;
  padding: 1.25rem;
  min-height: 210px;
  display: flex;
  flex-direction: column;
}
.review-card.pink { background: #f0e4ef; }
.review-card.sage { background: #e4ece6; }
.review-card.sand { background: #f3e8d4; }
.review-card .stars { color: var(--green-deep); letter-spacing: 1px; margin-bottom: 0.65rem; }
.review-card p {
  font-size: 0.98rem;
  color: var(--green-deep);
  line-height: 1.45;
  flex: 1;
}
.reviewer { margin-top: 1rem; }
.reviewer strong { display: block; color: var(--green-deep); }
.reviewer span { font-size: 0.82rem; color: var(--text-muted); }

.blog-card {
  flex: 0 0 min(82%, 300px);
  scroll-snap-align: start;
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  box-shadow: 0 6px 18px rgba(0,0,0,0.05);
}
.blog-card img {
  width: 100%;
  aspect-ratio: 16/11;
  object-fit: cover;
}
.blog-card h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--green-deep);
  padding: 0.85rem 0.95rem 0.35rem;
}
.blog-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
  padding: 0 0.95rem 1rem;
}

.help-cta {
  background: #2f9e5c;
  border-radius: 22px;
  padding: 2.25rem 1.5rem;
  text-align: center;
  color: #fff;
}
.help-cta h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin-bottom: 1.1rem;
  line-height: 1.2;
}
.help-cta .btn {
  background: var(--green-deep);
}

/* Accordion footer */
.ug-footer {
  background: var(--ink);
  color: #d8e4de;
  padding: 2.75rem 0 calc(5.75rem + env(safe-area-inset-bottom));
  border-top: 3px solid var(--accent-clay);
  overflow: hidden;
}
.ug-footer-inner {
  width: 100%;
  max-width: 1120px;
}
.ug-footer-top {
  display: grid;
  gap: 1.5rem;
  margin-bottom: 1.75rem;
}
.ug-footer-brand {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  min-width: 0;
}
.ug-footer-identity {
  display: flex;
  align-items: center;
  gap: 1rem;
  min-width: 0;
}
.ug-footer-logo {
  display: inline-flex;
  align-items: center;
  color: #fff;
  text-decoration: none;
  flex-shrink: 0;
}
.ug-footer-logo img {
  height: 88px;
  width: auto;
  max-width: 120px;
  object-fit: contain;
  display: block;
}
.ug-footer-blurb {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.55;
  color: #a8c4ad;
  max-width: 28ch;
  flex: 1 1 auto;
  min-width: 0;
}
.ug-social {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}
.ug-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--yellow);
  color: #111;
  display: grid;
  place-items: center;
  text-decoration: none;
  flex-shrink: 0;
  transition: transform 0.15s ease, background 0.15s ease;
}
.ug-social a:hover { transform: translateY(-1px); background: #ffe56a; }
.ug-social svg { width: 18px; height: 18px; display: block; }

.ug-newsletter {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  min-width: 0;
  width: 100%;
  max-width: 420px;
}
.ug-newsletter-label {
  margin: 0;
  font-size: 0.85rem;
  font-weight: 600;
  color: #e8f0e4;
}
.ug-newsletter-row {
  display: flex;
  align-items: stretch;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 999px;
  overflow: hidden;
  width: 100%;
}
.ug-newsletter input {
  flex: 1 1 auto;
  border: none;
  background: transparent;
  color: #fff;
  padding: 0.8rem 1rem;
  outline: none;
  min-width: 0;
  font-size: 0.92rem;
}
.ug-newsletter input::placeholder { color: #9bb9a8; }
.ug-newsletter button {
  border: none;
  background: var(--green-leaf);
  color: #fff;
  padding: 0 1rem;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-weight: 700;
  font-size: 0.82rem;
  white-space: nowrap;
  flex-shrink: 0;
}
.ug-newsletter button svg { width: 16px; height: 16px; }
.ug-newsletter button:hover { background: #5f9626; }

.ug-acc {
  border-top: 1px solid rgba(255,255,255,0.12);
}
.ug-acc details {
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.ug-acc summary {
  list-style: none;
  cursor: pointer;
  color: var(--yellow);
  font-family: var(--font-display);
  font-size: 1.15rem;
  padding: 0.95rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  user-select: none;
}
.ug-acc summary::-webkit-details-marker { display: none; }
.ug-acc summary::after {
  content: '+';
  color: #fff;
  font-size: 1.25rem;
  line-height: 1;
  font-weight: 400;
}
.ug-acc details[open] summary::after { content: '−'; }
.ug-acc details > div {
  display: grid;
  gap: 0.55rem;
  padding: 0 0 1.05rem;
}
.ug-acc a {
  color: #cfe0d4;
  text-decoration: none;
  font-size: 0.92rem;
  line-height: 1.35;
  padding: 0.1rem 0;
}
.ug-acc a:hover { color: #fff; }

.ug-footer-bottom {
  margin-top: 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255,255,255,0.12);
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}
.ug-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem 1rem;
  font-size: 0.8rem;
  color: #a8c4b0;
}
.ug-legal a {
  color: inherit;
  text-decoration: none;
}
.ug-legal a:hover { color: #fff; text-decoration: underline; }
.ug-tagline {
  margin: 0;
  font-size: 0.85rem;
  color: var(--yellow-soft);
  line-height: 1.4;
}
.ug-copy {
  margin: 0;
  font-size: 0.78rem;
  color: #8eaa93;
}

@media (max-width: 700px) {
  .stay-grid { grid-template-columns: 1fr 1fr; }
  .ug-footer {
    padding: 2rem 0 calc(5.5rem + env(safe-area-inset-bottom));
  }
  .ug-footer-logo img {
    height: 72px;
    max-width: 96px;
  }
  .ug-footer-identity {
    gap: 0.75rem;
  }
  .ug-footer-blurb {
    font-size: 0.85rem;
    max-width: none;
  }
  .ug-newsletter {
    max-width: none;
  }
  .ug-newsletter button span { display: none; }
  .ug-newsletter button {
    padding: 0 0.95rem;
  }
  .ug-acc summary {
    font-size: 1.05rem;
    min-height: 48px;
  }
  .ug-footer-bottom {
    text-align: left;
  }
}

@media (min-width: 768px) {
  .ug-footer-top {
    grid-template-columns: 1.2fr 1fr;
    align-items: start;
    gap: 2rem;
    margin-bottom: 2rem;
  }
  .ug-newsletter {
    justify-self: end;
    width: 100%;
  }
}

@media (min-width: 900px) {
  .ug-footer {
    padding: 3.25rem 0 2.75rem;
  }
  .ug-acc {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.5rem 2rem;
    border-top: none;
    padding-top: 0.25rem;
  }
  .ug-acc details {
    border: none;
    min-width: 0;
  }
  .ug-acc summary {
    pointer-events: none;
    cursor: default;
    padding: 0 0 0.85rem;
    font-size: 1.2rem;
  }
  .ug-acc summary::after { display: none; }
  .ug-acc details > div {
    padding: 0;
    gap: 0.5rem;
  }
  .ug-footer-bottom {
    margin-top: 2rem;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem 1.5rem;
  }
  .ug-tagline { order: 2; margin-left: auto; }
  .ug-copy { order: 3; flex-basis: 100%; }
}
