/* =============================================================
   Waconia Dispensary — style.css
   Palette pulled from the logo: leaf green, deep pine, lake blue,
   sunset gold. Fun, sticker-style cards + lake-wave dividers.
   ============================================================= */

:root {
  --paper: #f2f6ee;        /* soft sage mist */
  --paper-deep: #e4eedd;
  --ink: #16281c;          /* deep pine */
  --ink-soft: #3c5245;
  --leaf: #3aa523;         /* logo green */
  --leaf-bright: #52c531;
  --leaf-dark: #23751a;
  --lake: #2f74a8;         /* Lake Waconia blue */
  --lake-deep: #1d5480;
  --sun: #f5a623;          /* sunset gold */
  --berry: #d94f6c;        /* gummy pink */
  --white: #ffffff;
  --radius: 22px;
  --shadow-pop: 6px 6px 0 rgba(22, 40, 28, 0.16);
  --shadow-pop-hover: 9px 9px 0 rgba(22, 40, 28, 0.2);
  --font-display: "Fredoka", "Outfit", sans-serif;
  --font-body: "Outfit", system-ui, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--paper);
  color: var(--ink);
  line-height: 1.6;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }

a { color: var(--leaf-dark); }

/* ---------- Type ---------- */

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -0.01em;
}

.display-xl { font-size: clamp(2.6rem, 6.2vw, 4.6rem); }
.display-lg { font-size: clamp(2rem, 4.4vw, 3.1rem); }
.display-md { font-size: clamp(1.4rem, 2.6vw, 1.9rem); }

.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--lake-deep);
  background: rgba(47, 116, 168, 0.12);
  border-radius: 999px;
  padding: 0.35rem 0.9rem;
  margin-bottom: 1rem;
}

.eyebrow--sun { color: #8a5a05; background: rgba(245, 166, 35, 0.18); }
.eyebrow--leaf { color: var(--leaf-dark); background: rgba(58, 165, 35, 0.14); }

.lead {
  font-size: 1.12rem;
  color: var(--ink-soft);
  max-width: 60ch;
}

.accent-leaf { color: var(--leaf-dark); }
.accent-lake { color: var(--lake); }
.accent-sun  { color: var(--sun); }

/* ---------- Layout helpers ---------- */

.wrap { width: min(1140px, 92vw); margin-inline: auto; }

.section { padding: 4.5rem 0; }
.section--tight { padding: 3rem 0; }
.section--pine { background: var(--ink); color: var(--paper); }
.section--pine .lead { color: #b9cfc0; }
.section--deep { background: var(--paper-deep); }

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 2.5rem; align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.6rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.4rem; }

@media (max-width: 900px) {
  .grid-2, .grid-3 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 540px) {
  .grid-4 { grid-template-columns: 1fr; }
}

/* ---------- Wave dividers (signature) ---------- */

.wave { display: block; width: 100%; height: 70px; }
.wave--flip { transform: scaleY(-1); }

/* ---------- Buttons ---------- */

.btn {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.02rem;
  text-decoration: none;
  border: 3px solid var(--ink);
  border-radius: 999px;
  padding: 0.72rem 1.7rem;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  box-shadow: var(--shadow-pop);
}

.btn:hover { transform: translate(-2px, -2px); box-shadow: var(--shadow-pop-hover); }
.btn:active { transform: translate(2px, 2px); box-shadow: 2px 2px 0 rgba(22,40,28,0.2); }
.btn:focus-visible { outline: 3px dashed var(--lake); outline-offset: 3px; }

.btn--leaf { background: var(--leaf); color: var(--white); }
.btn--sun  { background: var(--sun); color: var(--ink); }
.btn--ghost { background: var(--white); color: var(--ink); }
.btn--sm { font-size: 0.9rem; padding: 0.5rem 1.2rem; border-width: 2px; }

/* ---------- Header ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(242, 246, 238, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 3px solid var(--ink);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.6rem 0;
  gap: 1rem;
}

.nav__brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  color: var(--ink);
}

.nav__brand img { width: auto; height: 46px; }

.nav__name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.25rem;
  line-height: 1;
}

.nav__name small {
  display: block;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.62rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--leaf-dark);
}

.nav__links { display: flex; align-items: center; gap: 1.5rem; list-style: none; }

.nav__links a {
  font-weight: 600;
  text-decoration: none;
  color: var(--ink);
  padding: 0.3rem 0.1rem;
  border-bottom: 3px solid transparent;
}

.nav__links a:hover, .nav__links a[aria-current="page"] { border-bottom-color: var(--leaf); }

.nav__toggle {
  display: none;
  background: none;
  border: 2px solid var(--ink);
  border-radius: 10px;
  font-size: 1.3rem;
  padding: 0.2rem 0.6rem;
  cursor: pointer;
}

@media (max-width: 820px) {
  .nav__toggle { display: block; }
  .nav__links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    background: var(--paper);
    border-bottom: 3px solid var(--ink);
    padding: 1rem 4vw 1.4rem;
    display: none;
  }
  .nav__links.is-open { display: flex; }
  .nav__links a { display: block; padding: 0.6rem 0; }
}

/* ---------- Hero ---------- */

.hero { position: relative; padding: 4rem 0 5.5rem; overflow: hidden; }

.hero__grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 2.6rem; align-items: center; }

@media (max-width: 900px) { .hero__grid { grid-template-columns: 1fr; } }

.hero__photo {
  position: relative;
  border: 4px solid var(--ink);
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 10px 10px 0 rgba(58, 165, 35, 0.35);
  transform: rotate(0.75deg);
}

.hero__photo img { width: 100%; height: 100%; object-fit: cover; }

.sticker {
  position: absolute;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  background: var(--sun);
  color: var(--ink);
  border: 3px solid var(--ink);
  border-radius: 999px;
  padding: 0.45rem 1rem;
  box-shadow: 4px 4px 0 rgba(22,40,28,0.18);
  transform: rotate(-6deg);
}

.sticker--tl { top: 14px; left: 14px; }
.sticker--br { bottom: 14px; right: 14px; transform: rotate(4deg); background: var(--berry); color: var(--white); }

.hero__actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 1.8rem; }

.hero__meta {
  margin-top: 1.6rem;
  font-weight: 600;
  color: var(--ink-soft);
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 1.4rem;
  font-size: 0.95rem;
}

/* ---------- Cards ---------- */

.card {
  background: var(--white);
  color: var(--ink);
  border: 3px solid var(--ink);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-pop);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
  display: flex;
  flex-direction: column;
}

.card:hover { transform: translate(-3px, -3px) rotate(-0.4deg); box-shadow: var(--shadow-pop-hover); }

.card__img { aspect-ratio: 4 / 3; object-fit: cover; width: 100%; border-bottom: 3px solid var(--ink); }

.card__body { padding: 1.2rem 1.3rem 1.4rem; flex: 1; display: flex; flex-direction: column; gap: 0.5rem; }

.card__tag {
  align-self: flex-start;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--lake);
  border-radius: 999px;
  padding: 0.22rem 0.7rem;
}

.card__tag--leaf { background: var(--leaf-dark); }
.card__tag--sun { background: var(--sun); color: var(--ink); }
.card__tag--berry { background: var(--berry); }

.card p { color: var(--ink-soft); font-size: 0.97rem; }

.card .btn { margin-top: auto; align-self: flex-start; }

/* ---------- Onset chart ---------- */

.onset {
  display: grid;
  gap: 1rem;
}

.onset__row {
  display: grid;
  grid-template-columns: 150px 1fr 130px;
  align-items: center;
  gap: 1rem;
  background: var(--white);
  border: 3px solid var(--ink);
  border-radius: 16px;
  padding: 0.9rem 1.1rem;
  box-shadow: 4px 4px 0 rgba(22,40,28,0.12);
}

@media (max-width: 640px) {
  .onset__row { grid-template-columns: 1fr; gap: 0.4rem; }
}

.onset__label { font-family: var(--font-display); font-weight: 600; }

.onset__track { background: var(--paper-deep); border-radius: 999px; height: 18px; overflow: hidden; border: 2px solid var(--ink); }

.onset__fill { height: 100%; border-radius: 999px; }

.onset__fill--fast { width: 15%; background: var(--leaf); }
.onset__fill--mid { width: 42%; background: var(--lake); }
.onset__fill--slow { width: 88%; background: var(--sun); }
.onset__fill--none { width: 6%; background: var(--berry); }

.onset__time { font-weight: 700; font-size: 0.9rem; color: var(--ink-soft); text-align: right; }

@media (max-width: 640px) { .onset__time { text-align: left; } }

/* ---------- Shop ---------- */

.shop-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin: 1.6rem 0 2rem;
}

.chip {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 0.95rem;
  background: var(--white);
  border: 2.5px solid var(--ink);
  border-radius: 999px;
  padding: 0.45rem 1.15rem;
  cursor: pointer;
  transition: background 0.15s ease;
}

.chip:hover { background: var(--paper-deep); }
.chip.is-active { background: var(--leaf); color: var(--white); }
.chip:focus-visible { outline: 3px dashed var(--lake); outline-offset: 2px; }

.product-price {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.15rem;
}

.product-thc {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--leaf-dark);
}

/* Cart */

.cart-fab {
  position: fixed;
  right: 1.4rem;
  bottom: 1.4rem;
  z-index: 70;
  background: var(--sun);
  border: 3px solid var(--ink);
  border-radius: 999px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  padding: 0.8rem 1.4rem;
  cursor: pointer;
  box-shadow: var(--shadow-pop);
}

.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(400px, 92vw);
  background: var(--white);
  border-left: 4px solid var(--ink);
  z-index: 80;
  transform: translateX(105%);
  transition: transform 0.25s ease;
  display: flex;
  flex-direction: column;
  padding: 1.4rem;
}

.cart-drawer.is-open { transform: translateX(0); }

.cart-drawer h3 { margin-bottom: 1rem; }

.cart-items { flex: 1; overflow-y: auto; display: grid; gap: 0.8rem; align-content: start; }

.cart-item {
  display: grid;
  grid-template-columns: 56px 1fr auto;
  gap: 0.8rem;
  align-items: center;
  border: 2px solid var(--ink);
  border-radius: 12px;
  padding: 0.5rem;
}

.cart-item img { width: 56px; height: 56px; object-fit: cover; border-radius: 8px; }

.cart-item__qty { display: flex; align-items: center; gap: 0.45rem; }

.cart-item__qty button {
  border: 2px solid var(--ink);
  background: var(--paper);
  border-radius: 8px;
  width: 26px;
  height: 26px;
  cursor: pointer;
  font-weight: 700;
}

.cart-total { border-top: 3px solid var(--ink); margin-top: 1rem; padding-top: 1rem; font-family: var(--font-display); font-size: 1.15rem; display: flex; justify-content: space-between; }

.cart-note { font-size: 0.8rem; color: var(--ink-soft); margin-top: 0.6rem; }

.cart-overlay {
  position: fixed; inset: 0; background: rgba(22,40,28,0.4);
  z-index: 75; opacity: 0; pointer-events: none; transition: opacity 0.2s ease;
}
.cart-overlay.is-open { opacity: 1; pointer-events: auto; }

/* ---------- Forms ---------- */

.form-card {
  background: var(--white);
  border: 3px solid var(--ink);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow-pop);
}

.form-grid { display: grid; gap: 1.1rem; }

.form-field label {
  display: block;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 0.35rem;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  font-family: var(--font-body);
  font-size: 1rem;
  border: 2.5px solid var(--ink);
  border-radius: 12px;
  padding: 0.7rem 0.9rem;
  background: var(--paper);
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: 3px solid rgba(58, 165, 35, 0.4);
  outline-offset: 1px;
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
@media (max-width: 640px) { .form-row { grid-template-columns: 1fr; } }

.form-success {
  display: none;
  background: rgba(58, 165, 35, 0.14);
  border: 2.5px solid var(--leaf-dark);
  color: var(--leaf-dark);
  border-radius: 12px;
  padding: 1rem 1.2rem;
  font-weight: 600;
}

.form-success.is-visible { display: block; }

/* ---------- Visit strip ---------- */

.visit-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 4px solid var(--ink);
  border-radius: 28px;
  overflow: hidden;
  background: var(--white);
  box-shadow: 10px 10px 0 rgba(47, 116, 168, 0.3);
}

@media (max-width: 820px) { .visit-card { grid-template-columns: 1fr; } }

.visit-card__info { padding: 2.4rem; }

.visit-card__map { min-height: 320px; }

.visit-card__map iframe { width: 100%; height: 100%; border: 0; min-height: 320px; }

.hours { list-style: none; margin: 1.2rem 0; }
.hours li { display: flex; justify-content: space-between; gap: 1rem; padding: 0.3rem 0; border-bottom: 1.5px dashed rgba(22,40,28,0.25); font-weight: 500; }

/* ---------- Footer ---------- */

.site-footer { background: var(--ink); color: #cfe0d4; padding: 3.5rem 0 2rem; }

.site-footer a { color: var(--white); }
.site-footer a:hover { color: var(--leaf-bright); }

.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 2.5rem; margin-bottom: 2.5rem; }

@media (max-width: 820px) { .footer-grid { grid-template-columns: 1fr; } }

.footer-grid h4 { color: var(--white); margin-bottom: 0.8rem; }

.footer-grid ul { list-style: none; display: grid; gap: 0.4rem; }

.footer-legal {
  border-top: 1px solid rgba(255,255,255,0.15);
  padding-top: 1.4rem;
  font-size: 0.8rem;
  color: #93ab9b;
  display: grid;
  gap: 0.5rem;
}

/* ---------- Age gate ---------- */

.age-gate {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(13, 24, 17, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}

.age-gate[hidden] { display: none; }

.age-gate__card {
  background: var(--paper);
  border: 4px solid var(--leaf);
  border-radius: 28px;
  max-width: 440px;
  width: 100%;
  text-align: center;
  padding: 2.5rem 2rem;
  box-shadow: 0 0 0 8px rgba(82, 197, 49, 0.2);
}

.age-gate__card img { width: 130px; margin: 0 auto 1.2rem; }

.age-gate__actions { display: flex; gap: 1rem; justify-content: center; margin-top: 1.6rem; flex-wrap: wrap; }

.age-gate__note { font-size: 0.78rem; color: var(--ink-soft); margin-top: 1.2rem; }

/* ---------- Reveal animation ---------- */

.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.is-visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .card, .btn { transition: none; }
}

/* ---------- Page hero (interior pages) ---------- */

.page-hero { padding: 3.5rem 0 2.5rem; }

/* ---------- Dutchie placeholder note ---------- */

.dev-note {
  background: rgba(245, 166, 35, 0.15);
  border: 2px dashed var(--sun);
  border-radius: 14px;
  padding: 0.9rem 1.2rem;
  font-size: 0.9rem;
  color: #7a5104;
  font-weight: 600;
  margin-bottom: 1.8rem;
}

/* ---------- Lower footer legal links ---------- */

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 1.6rem;
  padding-bottom: 0.9rem;
  font-size: 0.85rem;
  font-weight: 600;
}

.footer-links a { color: var(--white); text-decoration: none; }
.footer-links a:hover { color: var(--leaf-bright); text-decoration: underline; }

/* ---------- Legal / policy prose pages ---------- */

.legal-prose { max-width: 780px; }
.legal-prose h2 { font-size: 1.35rem; margin: 2.2rem 0 0.6rem; }
.legal-prose h3 { font-size: 1.05rem; margin: 1.4rem 0 0.4rem; }
.legal-prose p, .legal-prose li { color: var(--ink-soft); }
.legal-prose p { margin-bottom: 0.9rem; }
.legal-prose ul { margin: 0 0 0.9rem 1.3rem; display: grid; gap: 0.4rem; }
.legal-prose .updated { font-size: 0.85rem; font-weight: 700; color: var(--ink-soft); letter-spacing: 0.04em; text-transform: uppercase; }

/* ---------- Education dropdown nav ---------- */

.nav__dd { position: relative; }

.nav__dd-btn {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  color: var(--ink);
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.3rem 0.1rem;
  border-bottom: 3px solid transparent;
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.nav__dd-btn::after { content: "\25BE"; font-size: 0.75em; }

.nav__dd-btn:hover, .nav__dd-btn.is-active { border-bottom-color: var(--leaf); }
.nav__dd-btn:focus-visible { outline: 3px dashed var(--lake); outline-offset: 2px; }

.nav__dd-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--white);
  border: 3px solid var(--ink);
  border-radius: 16px;
  box-shadow: var(--shadow-pop);
  list-style: none;
  min-width: 240px;
  padding: 0.5rem;
  display: none;
  z-index: 70;
}

/* Invisible bridge spanning the 12px gap between the button and the menu,
   so :hover doesn't drop while the mouse travels down to the links. */
.nav__dd-menu::before {
  content: "";
  position: absolute;
  top: -18px;
  left: 0;
  right: 0;
  height: 18px;
}

.nav__dd-menu li { display: block; }

.nav__dd-menu a {
  display: block;
  padding: 0.55rem 0.9rem;
  border-radius: 10px;
  border-bottom: none;
  font-weight: 600;
}

.nav__dd-menu a:hover { background: var(--paper-deep); border-bottom: none; }
.nav__dd-menu a[aria-current="page"] { background: rgba(58,165,35,0.14); color: var(--leaf-dark); border-bottom: none; }

.nav__dd.is-open .nav__dd-menu { display: block; }

@media (hover: hover) and (min-width: 821px) {
  .nav__dd:hover .nav__dd-menu { display: block; }
}

@media (max-width: 820px) {
  .nav__dd-menu {
    position: static;
    transform: none;
    border: none;
    border-left: 3px solid var(--paper-deep);
    border-radius: 0;
    box-shadow: none;
    min-width: 0;
    padding: 0.2rem 0 0.2rem 0.9rem;
    margin-top: 0.2rem;
  }
  .nav__dd-btn { width: 100%; padding: 0.6rem 0; }
}

/* ---------- Keep-learning link strip ---------- */

.keep-learning { border-top: 3px dashed rgba(22,40,28,0.2); }

.keep-learning__links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.4rem;
}

.keep-learning__links a {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 0.95rem;
  text-decoration: none;
  color: var(--ink);
  background: var(--white);
  border: 2.5px solid var(--ink);
  border-radius: 999px;
  padding: 0.5rem 1.15rem;
  transition: background 0.15s ease, transform 0.15s ease;
}

.keep-learning__links a:hover { background: rgba(58,165,35,0.14); transform: translateY(-2px); }

/* ---------- Dose table (beginners) ---------- */

.dose-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
@media (max-width: 820px) { .dose-grid { grid-template-columns: 1fr; } }

.dose-card {
  background: var(--white);
  border: 3px solid var(--ink);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow-pop);
  color: var(--ink);
}

.dose-card .display-md { color: var(--leaf-dark); }
.dose-card p { color: var(--ink-soft); margin-top: 0.4rem; }

/* ---------- VS table (CBD vs THC) ---------- */

.vs-table { width: 100%; border-collapse: separate; border-spacing: 0; border: 3px solid var(--ink); border-radius: 18px; overflow: hidden; background: var(--white); box-shadow: var(--shadow-pop); }
.vs-table th, .vs-table td { padding: 0.85rem 1.1rem; text-align: left; border-bottom: 2px solid var(--paper-deep); vertical-align: top; }
.vs-table tr:last-child td { border-bottom: none; }
.vs-table thead th { font-family: var(--font-display); font-size: 1.05rem; border-bottom: 3px solid var(--ink); }
.vs-table thead th:nth-child(2) { color: var(--leaf-dark); }
.vs-table thead th:nth-child(3) { color: var(--lake-deep); }
.vs-table td:first-child { font-weight: 700; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.06em; color: var(--ink-soft); }
.vs-table td { color: var(--ink-soft); }
@media (max-width: 640px) { .vs-table th, .vs-table td { padding: 0.6rem 0.7rem; font-size: 0.9rem; } }

@media (max-width: 820px) {
  .nav__dd-menu::before { display: none; }
}

/* ---------- Trust strip (under hero) ---------- */

.trust-strip {
  background: var(--ink);
  border-top: 3px solid var(--ink);
}

.trust-strip__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.2rem 2rem;
  padding: 1.3rem 0;
}

.trust-strip__item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--paper);
}

.trust-strip__figure {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.7rem;
  line-height: 1;
  letter-spacing: -0.01em;
  color: var(--white);
  white-space: nowrap;
}

.trust-strip__label { line-height: 1.25; }

.trust-strip__label strong {
  display: block;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--white);
}

.trust-strip__label small {
  display: block;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #8fa697;
}

.trust-strip__pickup {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  background: var(--leaf);
  color: var(--white);
  border: 3px solid var(--white);
  border-radius: 999px;
  padding: 0.5rem 1.1rem;
  font-weight: 700;
  font-size: 0.92rem;
  box-shadow: 4px 4px 0 rgba(0,0,0,0.3);
  white-space: nowrap;
}

.trust-strip__pickup small {
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #d9f3d0;
}

@media (max-width: 900px) {
  .trust-strip__row { justify-content: flex-start; }
}

/* ---------- Service area pills (about page) ---------- */

.service-area__pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1.4rem;
}

.service-area__pills span {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--ink);
  background: var(--white);
  border: 2px solid var(--ink);
  border-radius: 999px;
  padding: 0.35rem 0.95rem;
}

/* ============================================================
   Dutchie-style demo storefront (shop page)
   Background stays the site's paper color; cards go clean white
   ============================================================ */

.shop-cats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; margin: 1.6rem 0 2.4rem; }
@media (max-width: 820px) { .shop-cats { grid-template-columns: repeat(2, 1fr); } }

.cat-card {
  background: var(--white);
  border: 1.5px solid rgba(22,40,28,0.15);
  border-radius: 14px;
  padding: 1.1rem 1.1rem 1rem;
  text-align: left;
  cursor: pointer;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.15rem;
  color: var(--ink);
  transition: box-shadow 0.15s ease, transform 0.15s ease;
}

.cat-card:hover { box-shadow: 0 6px 18px rgba(22,40,28,0.12); transform: translateY(-2px); }
.cat-card img { width: 90px; height: 90px; object-fit: contain; margin: 0.7rem auto 0; display: block; }

.shop-section { margin-bottom: 2.6rem; }

.shop-section__head { display: flex; align-items: baseline; justify-content: space-between; gap: 1rem; margin-bottom: 1rem; }
.shop-section__head h2 { font-size: 1.5rem; }
.shop-section__head a { font-weight: 700; color: var(--lake-deep); text-decoration: none; font-size: 0.95rem; }
.shop-section__head a:hover { text-decoration: underline; }

.prow { display: grid; grid-auto-flow: column; grid-auto-columns: minmax(230px, 1fr); gap: 1rem; overflow-x: auto; padding-bottom: 0.6rem; scroll-snap-type: x proximity; }
.prow::-webkit-scrollbar { height: 8px; }
.prow::-webkit-scrollbar-thumb { background: rgba(22,40,28,0.2); border-radius: 999px; }

.pgrid { display: grid; grid-template-columns: repeat(auto-fill, minmax(230px, 1fr)); gap: 1rem; }

.pcard {
  background: var(--white);
  border: 1.5px solid rgba(22,40,28,0.15);
  border-radius: 14px;
  padding: 0.9rem;
  display: flex;
  flex-direction: column;
  scroll-snap-align: start;
  transition: box-shadow 0.15s ease;
}

.pcard:hover { box-shadow: 0 6px 18px rgba(22,40,28,0.12); }

.pcard__imgwrap { background: var(--white); border-radius: 10px; aspect-ratio: 1 / 0.85; display: flex; align-items: center; justify-content: center; overflow: hidden; margin-bottom: 0.8rem; }
.pcard__imgwrap img { width: 100%; height: 100%; object-fit: contain; }

.pcard__name { font-family: var(--font-body); font-weight: 700; font-size: 0.98rem; line-height: 1.35; color: var(--ink); }
.pcard__brand { font-size: 0.85rem; color: var(--ink-soft); margin-top: 0.15rem; }

.pcard__chip {
  align-self: flex-start;
  margin-top: 0.55rem;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--ink-soft);
  background: var(--paper-deep);
  border-radius: 999px;
  padding: 0.2rem 0.65rem;
}

.pcard__price { font-family: var(--font-display); font-weight: 600; font-size: 1.25rem; margin-top: 0.7rem; }

.pcard__add {
  margin-top: 0.7rem;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--leaf-dark);
  background: rgba(58,165,35,0.12);
  border: none;
  border-radius: 999px;
  padding: 0.7rem 1rem;
  cursor: pointer;
  transition: background 0.15s ease;
}

.pcard__add:hover { background: rgba(58,165,35,0.22); }
.pcard__add:focus-visible { outline: 3px dashed var(--lake); outline-offset: 2px; }

.shop-back {
  display: inline-block;
  font-weight: 700;
  color: var(--lake-deep);
  text-decoration: none;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 0.95rem;
  padding: 0;
  margin-bottom: 1rem;
}
.shop-back:hover { text-decoration: underline; }

/* Dutchie-style preview inside the dark homepage section */
.section--pine .shop-section__head a { color: var(--leaf-bright); }
.section--pine .shop-cats { margin-top: 0.4rem; }
