:root {
  --bg: #f8f4eb;
  --ink: #231f1b;
  --muted: #625950;
  --card: #fffefb;
  --line: #e6dbca;
  --acc-1: #bc5a23;
  --acc-2: #0f7a68;
  --acc-3: #18477a;
  --radius: 18px;
  --shadow: 0 14px 32px rgba(22, 21, 19, 0.08);
  --max: 1240px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
body {
  font-family: "Manrope", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(65rem 55rem at -8% -14%, #bfe9e1 0%, transparent 65%),
    radial-gradient(44rem 35rem at 112% 18%, #b1d8f6 0%, transparent 68%),
    var(--bg);
}

.container {
  width: min(var(--max), calc(100% - 2rem));
  margin-inline: auto;
  padding: 1.1rem 0 2rem;
}

.hero {
  position: relative;
}

.hero-card {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: linear-gradient(124deg, #0c355f 0%, #13597a 44%, #1b8b88 100%);
  color: #fff;
  border-radius: 22px;
  padding: 0.64rem 0.74rem 0.6rem;
  border: 1px solid rgba(227, 245, 255, 0.23);
  box-shadow: 0 16px 32px rgba(20, 40, 58, 0.24);
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(190px, 0.8fr);
  gap: 0.58rem;
  min-height: 252px;
}

.hero-card::before {
  content: "";
  position: absolute;
  left: 52%;
  top: 31%;
  width: 180px;
  height: 260px;
  border-radius: 72% 28% 63% 37% / 70% 42% 58% 30%;
  pointer-events: none;
  border: 2px solid rgba(128, 170, 199, 0.23);
  transform: rotate(18deg);
  z-index: -1;
  opacity: 0.55;
}

.hero-card::after {
  content: "";
  position: absolute;
  left: 64%;
  top: 56%;
  width: 140px;
  height: 220px;
  border-radius: 65% 35% 72% 28% / 62% 45% 55% 38%;
  border: 2px solid rgba(128, 170, 199, 0.2);
  transform: rotate(-24deg);
  opacity: 0.48;
  pointer-events: none;
  z-index: -1;
}

.hero-content {
  position: relative;
  z-index: 2;
  min-width: 0;
}

.hero-plaque {
  width: min(100%, 560px);
  border-radius: 14px;
  padding: 0.21rem 0.21rem 0.24rem;
  background:
    linear-gradient(180deg, rgba(199, 229, 247, 0.36), rgba(173, 218, 238, 0.17));
  border: 1px solid rgba(198, 236, 255, 0.44);
  box-shadow:
    0 16px 28px rgba(8, 34, 53, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.38);
  backdrop-filter: blur(4px);
  animation: heroRise 0.5s ease both;
}

.brand-logo {
  width: min(560px, 100%);
  height: auto;
  display: block;
  border-radius: 12px;
}

.hero h1 {
  font-family: "Cormorant Garamond", "Syne", serif;
  font-size: clamp(1.62rem, 2.9vw, 2.7rem);
  font-weight: 700;
  margin-top: 0.34rem;
  margin-bottom: 0.12rem;
  line-height: 0.9;
  letter-spacing: -0.02em;
  color: #f2e5c7;
  text-shadow:
    0 2px 0 rgba(20, 34, 47, 0.55),
    0 9px 20px rgba(7, 25, 43, 0.6);
  max-width: 14ch;
  animation: heroRise 0.6s ease both;
  animation-delay: 0.08s;
}

.hero p {
  max-width: 64ch;
  line-height: 1.24;
  color: rgba(241, 250, 255, 0.97);
  font-size: clamp(0.8rem, 0.82vw, 0.92rem);
  font-weight: 500;
  text-shadow: 0 2px 14px rgba(6, 20, 34, 0.34);
  animation: heroRise 0.62s ease both;
  animation-delay: 0.14s;
}

.hero-actions {
  margin-top: 0.3rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.66rem;
  align-items: center;
  animation: heroRise 0.68s ease both;
  animation-delay: 0.2s;
}

.creator-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.creator-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0.36rem 0.68rem;
  text-decoration: none;
  font-weight: 900;
  font-size: 0.68rem;
  letter-spacing: 0.01em;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.36);
  box-shadow: 0 10px 16px rgba(9, 25, 39, 0.34);
  transition: transform 0.18s ease, box-shadow 0.18s ease, filter 0.18s ease;
}

.creator-link:hover,
.creator-link:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 14px 24px rgba(9, 25, 39, 0.42);
  filter: saturate(1.1);
}

.creator-link.tiktok {
  background: linear-gradient(135deg, #25f4ee, #000000 52%, #fe2c55);
}

.creator-link.instagram {
  background: linear-gradient(135deg, #feda75, #fa7e1e 30%, #d62976 55%, #962fbf 78%, #4f5bd5);
}

.creator-link.youtube {
  background: linear-gradient(135deg, #ff2d2d, #cc0000 62%, #8f0000);
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.52rem;
  align-items: center;
}

.chip {
  border: 1px solid rgba(190, 219, 244, 0.45);
  border-radius: 999px;
  padding: 0.3rem 0.54rem;
  font-size: 0.66rem;
  background: rgba(28, 57, 77, 0.57);
  font-weight: 800;
  color: #eaf8ff;
  box-shadow: 0 10px 18px rgba(7, 23, 35, 0.26);
}

.hero-orbit {
  position: relative;
  min-height: 182px;
  margin-right: 0.1rem;
  margin-top: 0.2rem;
}

.hero-orbit::before,
.hero-orbit::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  border: 2px solid rgba(185, 236, 246, 0.24);
}

.hero-orbit::before {
  width: 232px;
  height: 232px;
  right: -22px;
  top: -10px;
}

.hero-orbit::after {
  width: 138px;
  height: 138px;
  right: 46px;
  top: 46px;
  border-color: rgba(175, 230, 245, 0.18);
}

.orb {
  position: absolute;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 800;
  color: #fefefe;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
  box-shadow:
    inset 0 6px 10px rgba(255, 255, 255, 0.32),
    0 8px 20px rgba(9, 36, 45, 0.35);
}

.orb-a { width: 44px; height: 44px; right: 80px; bottom: 30px; background: radial-gradient(circle at 28% 24%, #b9b4ff, #6d62c7); }
.orb-b { width: 40px; height: 40px; right: 18px; bottom: 10px; background: radial-gradient(circle at 28% 24%, #b3f4e8, #3f9b8d); }
.orb-c { width: 50px; height: 50px; right: 14px; top: 72px; background: radial-gradient(circle at 28% 24%, #ffe9ac, #d68d2e); }
.orb-d { width: 30px; height: 30px; right: 128px; top: 74px; background: radial-gradient(circle at 28% 24%, #ffd9a0, #cb7d34); font-size: 0.72rem; }
.orb-k { width: 36px; height: 36px; right: 156px; bottom: 34px; background: radial-gradient(circle at 28% 24%, #ffd59b, #cc9a2c); font-size: 0.92rem; }
.orb-mg { width: 32px; height: 32px; right: 12px; top: 8px; background: radial-gradient(circle at 28% 24%, #eac3f9, #7a5c8f); font-size: 0.68rem; }
.orb-na { width: 34px; height: 34px; right: 2px; top: 134px; background: radial-gradient(circle at 28% 24%, #cffcc6, #66a052); font-size: 0.68rem; }
.orb-zn { width: 24px; height: 24px; right: 100px; top: 8px; background: radial-gradient(circle at 28% 24%, #bbf0ff, #2d8f9f); font-size: 0.56rem; }
.orb-b6 { width: 28px; height: 28px; right: 40px; top: 172px; background: radial-gradient(circle at 28% 24%, #8ee9ff, #3f89c0); font-size: 0.58rem; }
.orb-b12 { width: 24px; height: 24px; right: 188px; top: 42px; background: radial-gradient(circle at 28% 24%, #f4ef9b, #a89f2e); font-size: 0.52rem; }

.toolbar {
  margin-top: 1rem;
  background: #fffcf3;
  border: 1px solid #e4d8c5;
  border-radius: var(--radius);
  box-shadow:
    0 12px 28px rgba(37, 33, 25, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.72);
  padding: 0.72rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.62rem;
  align-items: center;
}

.control {
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  padding: 0.42rem 0.56rem;
  display: flex;
  gap: 0.44rem;
  align-items: center;
}

.control label {
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.73rem;
  color: var(--muted);
  font-weight: 800;
}

select {
  border: none;
  outline: none;
  font: inherit;
  background: transparent;
  font-weight: 700;
}

.stats { margin-left: auto; color: var(--muted); font-size: 0.87rem; font-weight: 700; }

.cards {
  margin-top: 0.9rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
}

.card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0.8rem;
  box-shadow: var(--shadow);
  display: grid;
  grid-template-columns: 118px 1fr;
  gap: 0.72rem;
}

.card img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: contain;
  border: 1px solid #eadfce;
  background: #f4efe6;
  border-radius: 14px;
  padding: 0.32rem;
}

.supplier {
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 800;
}

.title {
  margin-top: 0.15rem;
  font-family: "Syne", sans-serif;
  font-size: 1.06rem;
}

.facts { margin-top: 0.44rem; display: flex; flex-wrap: wrap; gap: 0.4rem; }
.pill {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.24rem 0.5rem;
  font-size: 0.75rem;
  font-weight: 700;
  background: #fff;
}

.price { margin-top: 0.5rem; font-weight: 800; color: var(--acc-3); }
.ppp { color: var(--acc-1); font-weight: 900; }
.best { margin-top: 0.3rem; color: var(--muted); font-size: 0.83rem; }

.options {
  margin-top: 0.4rem;
  font-size: 0.79rem;
  color: #4e463f;
}

.buy {
  margin-top: 0.62rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border-radius: 999px;
  padding: 0.66rem 1.05rem;
  background: linear-gradient(140deg, #dd6126, #f4873f);
  color: #fff;
  font-weight: 900;
  font-size: 0.88rem;
  letter-spacing: 0.01em;
  box-shadow: 0 10px 24px rgba(188, 90, 35, 0.35);
  border: 1px solid rgba(255,255,255,0.24);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.buy:hover,
.buy:focus-visible,
.table-buy:hover,
.table-buy:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 12px 28px rgba(188, 90, 35, 0.42);
}

.table-buy {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border-radius: 999px;
  padding: 0.42rem 0.74rem;
  background: linear-gradient(140deg, #dd6126, #f4873f);
  color: #fff;
  font-weight: 900;
  font-size: 0.76rem;
  border: 1px solid rgba(255,255,255,0.22);
  box-shadow: 0 8px 18px rgba(188, 90, 35, 0.28);
  white-space: nowrap;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.panel {
  margin-top: 1rem;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.panel h2 {
  font-family: "Syne", sans-serif;
  font-size: 1.1rem;
  padding: 0.9rem;
}

.table-wrap { overflow-x: auto; }
.table-wrap--nutrient {
  position: relative;
  scroll-behavior: smooth;
}

.table-wrap--nutrient.is-scrollable::before,
.table-wrap--nutrient.is-scrollable::after {
  content: "";
  position: sticky;
  top: 0;
  width: 26px;
  height: 100%;
  pointer-events: none;
  z-index: 3;
  display: inline-block;
}

.table-wrap--nutrient.is-scrollable::before {
  left: 0;
  background: linear-gradient(90deg, rgba(255, 254, 251, 0.95), rgba(255, 254, 251, 0));
}

.table-wrap--nutrient.is-scrollable::after {
  right: 0;
  background: linear-gradient(270deg, rgba(255, 254, 251, 0.95), rgba(255, 254, 251, 0));
}

.table-wrap--nutrient.at-start::before { opacity: 0; }
.table-wrap--nutrient.at-end::after { opacity: 0; }

.table-scroll-ui {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.5rem 0.9rem 0.2rem;
}

.table-scroll-ui[hidden] {
  display: none;
}

.scroll-label {
  font-size: 0.74rem;
  font-weight: 700;
  color: var(--muted);
  white-space: nowrap;
}

#nutrientScrollRange {
  width: 100%;
  accent-color: var(--acc-3);
}

table {
  width: 100%;
  border-collapse: collapse;
  min-width: 760px;
}

th, td {
  border-top: 1px solid var(--line);
  padding: 0.56rem 0.8rem;
  text-align: left;
  vertical-align: top;
  white-space: nowrap;
  font-size: 0.84rem;
}

th {
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.72rem;
}

.note, .sources {
  padding: 0.7rem 0.9rem 0.95rem;
  color: var(--muted);
  font-size: 0.8rem;
  line-height: 1.5;
}

.sources a { color: var(--acc-3); }
.source-item { margin-bottom: 0.3rem; }

@keyframes heroRise {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 960px) {
  .hero-card {
    padding: 0.92rem;
    border-radius: 24px;
    grid-template-columns: 1fr;
    min-height: unset;
  }
  .hero-card::before {
    left: auto;
    right: -3rem;
    top: 4rem;
    width: 170px;
    height: 260px;
  }
  .hero-card::after {
    left: auto;
    right: 1rem;
    top: auto;
    bottom: 2rem;
    width: 140px;
    height: 200px;
    opacity: 0.34;
  }
  .hero h1 {
    font-size: clamp(1.65rem, 9vw, 2.7rem);
    line-height: 0.9;
  }
  .hero p {
    font-size: 0.88rem;
    line-height: 1.32;
    max-width: 100%;
  }
  .hero-actions {
    margin-top: 0.72rem;
    gap: 0.5rem;
  }
  .creator-link {
    padding: 0.43rem 0.74rem;
    font-size: 0.72rem;
  }
  .chip {
    padding: 0.36rem 0.62rem;
    font-size: 0.77rem;
  }
  .hero-orbit {
    display: none;
  }
  .cards { grid-template-columns: 1fr; }
  .card { grid-template-columns: 88px 1fr; }
  .stats { width: 100%; margin-left: 0; }
}

.quick-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.62rem;
  margin-top: 0.55rem;
}

.quick-nav-title {
  color: #ffffff;
  font-size: 1rem;
  font-weight: 900;
  letter-spacing: 0.01em;
  text-shadow: 0 3px 12px rgba(6, 23, 37, 0.32);
}

.quick-nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.quick-nav-link {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 0.5rem 0.92rem;
  font-size: 0.9rem;
  font-weight: 800;
  text-decoration: none;
  color: #0f3a58;
  background: rgba(241, 250, 255, 0.96);
  border: 1px solid rgba(193, 227, 245, 0.95);
  box-shadow: 0 10px 18px rgba(7, 25, 41, 0.24);
}

.quick-nav-link--primary {
  color: #ffffff;
  background: linear-gradient(140deg, #ff8a00, #ff4f0f);
  border: 1px solid rgba(255, 220, 178, 0.95);
  box-shadow:
    0 12px 24px rgba(36, 16, 4, 0.38),
    0 0 0 2px rgba(255, 179, 117, 0.24);
}

.quick-nav-link:hover,
.quick-nav-link:focus-visible {
  background: #ffffff;
  color: #0a2f49;
  transform: translateY(-1px);
}

.quick-nav-link--primary:hover,
.quick-nav-link--primary:focus-visible {
  background: linear-gradient(140deg, #ff991c, #ff5f1f);
  color: #ffffff;
  box-shadow:
    0 14px 26px rgba(36, 16, 4, 0.45),
    0 0 0 3px rgba(255, 179, 117, 0.3);
}

.logo-strip--with-quick {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.logo-strip--with-quick > .quick-nav {
  margin-top: 0.2rem;
  width: 100%;
  background: rgba(5, 33, 50, 0.28);
  border: 1px solid rgba(178, 220, 241, 0.38);
  border-radius: 16px;
  padding: 0.78rem 0.86rem;
}

.badge-deal {
  display: inline-block;
  background: #059669;
  color: #fff;
  font-size: .75rem;
  font-weight: 800;
  border-radius: 999px;
  padding: .25rem .6rem;
  margin-bottom: .3rem;
}
.badge-deal.badge-blue { background: #1a56db; }

.promo-note {
  color: #059669;
  font-size: .8rem;
  font-weight: 500;
  margin-bottom: .4rem;
}

/* Dutch Goose logo + David strip (used on hero and subpage logo-strip) */
.hc-brand{display:flex;align-items:center;gap:.55rem;margin-bottom:.55rem}
.hc-logo{width:70px;height:70px;max-width:70px;max-height:70px;object-fit:contain;flex-shrink:0}
.hc-brand-text{display:flex;flex-direction:column;gap:.05rem}
.hc-name{font-family:"Syne",sans-serif;font-weight:800;font-size:1.3rem;color:#ffffff;line-height:1.1;letter-spacing:.02em}
.hc-tagline{font-size:.8rem;font-weight:600;color:#9ecfdf;letter-spacing:.01em}
.hc-divider{border:none;border-top:1px solid rgba(190,219,244,.25);margin:.45rem 0}
.hc-david{display:flex;align-items:center;gap:.6rem;background:rgba(5,150,105,.22);border:1px solid rgba(52,211,153,.3);border-radius:10px;padding:.4rem .6rem;margin:.5rem 0 .45rem}
.hc-avatar{width:40px;height:40px;max-width:40px;max-height:40px;border-radius:50%;object-fit:cover;border:2px solid #34d399;flex-shrink:0;display:block}
.hc-david-text{display:flex;flex-direction:column;gap:.05rem}
.hc-david-name{font-size:.75rem;font-weight:800;color:#eaf8ff}
.hc-david-sub{font-size:.67rem;color:rgba(210,240,255,.8)}
.dg-soc-row{display:flex;flex-wrap:wrap;gap:.3rem;margin-bottom:.35rem}
.dg-soc-pill{display:inline-flex;align-items:center;gap:.22rem;background:rgba(255,255,255,.93);color:#1a2e3b;border-radius:999px;padding:.28rem .58rem;text-decoration:none;font-size:.67rem;font-weight:700;border:1px solid rgba(255,255,255,.5);transition:background .15s}
.dg-soc-pill:hover{background:#fff}
.dg-soc-pill svg{opacity:.75;flex-shrink:0}

@media (max-width: 600px) {
  .hc-logo{width:60px;height:60px;max-width:60px;max-height:60px}
  .hc-david .hc-avatar{width:36px;height:36px;max-width:36px;max-height:36px}
  .topnav{display:flex;flex-wrap:wrap;gap:.2rem 0}
  .topnav a{font-size:.75rem}
}

.cta-inline-small{display:flex;align-items:center;justify-content:space-between;background:rgba(255,255,255,.08);border-radius:10px;padding:.5rem .75rem;gap:.5rem;margin-top:.6rem}
.cta-inline-text{font-size:.72rem;color:#e2f8f0;flex:1}
.cta-inline-btn{background:#dd6126;color:#fff;border-radius:999px;padding:.3rem .7rem;font-size:.7rem;font-weight:800;text-decoration:none;white-space:nowrap;flex-shrink:0}
.cta-block{background:#0c2e3e;border-radius:12px;padding:1rem 1.1rem;margin:1rem 0}
.cta-block-eyebrow{font-size:.7rem;font-weight:800;color:#34d399;text-transform:uppercase;letter-spacing:.06em;margin-bottom:.3rem}
.cta-block-title{font-size:.95rem;font-weight:800;color:#fff;margin-bottom:.25rem}
.cta-block-sub{font-size:.75rem;color:#9ecfdf;margin-bottom:.75rem}
.cta-block-stats{display:flex;gap:.4rem;margin-bottom:.6rem}
.cta-block-stat{background:rgba(255,255,255,.08);border-radius:6px;padding:.3rem .5rem;text-align:center;flex:1}
.cta-block-stat-num{font-size:.8rem;font-weight:800;color:#34d399}
.cta-block-stat-lbl{font-size:.65rem;color:#9ecfdf}
.cta-block-btns{display:flex;gap:.4rem;margin-bottom:.4rem}
.cta-block-btn1{flex:1;background:#dd6126;color:#fff;border-radius:999px;padding:.45rem;font-size:.72rem;font-weight:800;text-align:center;text-decoration:none;display:block}
.cta-block-btn2{flex:1;background:#059669;color:#fff;border-radius:999px;padding:.45rem;font-size:.72rem;font-weight:800;text-align:center;text-decoration:none;display:block}
.cta-block-note{font-size:.65rem;color:rgba(255,255,255,.45);text-align:center}
.surgery-label{font-size:.72rem;color:#6b7280;margin-bottom:.3rem}
