/** Shopify CDN: Minification failed

Line 3904:0 Unexpected "}"

**/
/* ================================================================
   HYPNORD — Custom Design System
   All Hypnord-specific styles. Never edit base.css for these.
   ================================================================ */

/* ----------------------------------------------------------------
   DESIGN TOKENS
   ---------------------------------------------------------------- */
:root {
  --hn-bg:          #0f0e0c;
  --hn-bg-deep:     #000;
  --hn-bg-card:     #1a1714;
  --hn-sand:        #f0ece4;
  --hn-sand-60:     rgba(240, 236, 228, 0.75);
  --hn-sand-35:     rgba(240, 236, 228, 0.35);
  --hn-gold:        #c8a97e;
  --hn-gold-hover:  #d4b88e;
  --hn-gold-tint:   rgba(200, 169, 126, 0.08);
  --hn-border:      rgba(240, 236, 228, 0.07);
  --hn-border-gold: rgba(200, 169, 126, 0.18);

  --hn-s1: 8px;
  --hn-s2: 16px;
  --hn-s3: 24px;
  --hn-s4: 32px;
  --hn-s5: 48px;
  --hn-s6: 64px;
  --hn-s7: 96px;
  --hn-s8: 128px;
  --hn-s9: 160px;

  --hn-max:          1280px;
  --hn-pad:          clamp(24px, 6vw, 96px);
  --hn-section-pad:  clamp(80px, 9vw, 128px);
  --hn-font:         'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --hn-font-serif:   'Cormorant Garamond', Georgia, 'Times New Roman', serif;
}

/* ----------------------------------------------------------------
   BODY RESET — override Horizon's white default
   ---------------------------------------------------------------- */
body {
  background: var(--hn-bg-deep);
  color: var(--hn-sand);
}

/* ----------------------------------------------------------------
   KILL YELLOW/GOLD FOCUS RING — replace with subtle brand outline
   ---------------------------------------------------------------- */
*:focus { outline: none !important; }
*:focus-visible {
  outline: 1px solid rgba(200, 169, 126, 0.35) !important;
  outline-offset: 2px !important;
  box-shadow: none !important;
}
button:focus-visible,
[type="button"]:focus-visible,
[type="submit"]:focus-visible,
a:focus-visible {
  outline: 1px solid rgba(200, 169, 126, 0.35) !important;
  box-shadow: none !important;
}

/* ----------------------------------------------------------------
   GLOBAL RESETS FOR HN SECTIONS
   ---------------------------------------------------------------- */
.hn-hero,
.hn-marquee,
.hn-problem,
.hn-split,
.hn-layers,
.hn-benefits,
.hn-reviews-header,
.hn-products,
.hn-guarantee,
.hn-faq,
.hn-cta,
.hn-product-trust,
.hn-upsell,
.hn-cart-bar {
  font-family: var(--hn-font);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ----------------------------------------------------------------
   TYPOGRAPHY
   ---------------------------------------------------------------- */
.hn-eyebrow {
  display: flex;
  align-items: center;
  gap: var(--hn-s2);
  font-family: var(--hn-font);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--hn-gold);
  margin-bottom: var(--hn-s3);
  line-height: 1;
}

.hn-eyebrow::before {
  content: '';
  display: block;
  width: 40px;
  height: 1px;
  background: var(--hn-sand);
  opacity: 0.4;
  flex-shrink: 0;
}

.hn-eyebrow--no-rule::before {
  display: none;
}

.hn-eyebrow--centered {
  justify-content: center;
}

.hn-eyebrow--centered::before,
.hn-eyebrow--centered::after {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: var(--hn-sand);
  opacity: 0.4;
  flex-shrink: 0;
}

/* Heading scale — serif for display, kerning locked per design-guidelines.md */
.hn-h1 {
  font-family: var(--hn-font-serif);
  font-size: clamp(52px, 8.5vw, 118px);
  font-weight: 300;
  line-height: 0.95;
  letter-spacing: -0.01em;
  color: var(--hn-sand);
}

.hn-h2 {
  font-family: var(--hn-font-serif);
  font-size: clamp(32px, 3.5vw, 52px);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: 0;
  color: var(--hn-sand);
}

.hn-body {
  font-family: var(--hn-font);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.7;
  letter-spacing: 0;
  color: var(--hn-sand-60);
}

.hn-body--small {
  font-family: var(--hn-font);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.65;
  color: var(--hn-sand-60);
}

/* ----------------------------------------------------------------
   BUTTONS
   ---------------------------------------------------------------- */
.hn-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--hn-font);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 18px var(--hn-s5);
  border-radius: 0;
  transition: background 0.25s ease, border-color 0.25s ease,
              transform 0.25s ease, box-shadow 0.35s ease;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
  line-height: 1;
}

.hn-btn--gold {
  background: var(--hn-gold);
  color: var(--hn-bg-deep);
  border: 1px solid var(--hn-gold);
  /* Resting ambient glow — button emits light rather than sits on surface */
  box-shadow: 0 0 24px rgba(212, 175, 55, 0.10);
}

.hn-btn--gold:hover {
  background: var(--hn-gold-hover);
  border-color: var(--hn-gold-hover);
  color: var(--hn-bg-deep);
  transform: translateY(-1px);
  box-shadow: 0 0 40px rgba(212, 175, 55, 0.15);
}

.hn-btn--outline {
  background: transparent;
  color: var(--hn-sand);
  border: 1px solid var(--hn-gold);
}

.hn-btn--outline:hover {
  background: var(--hn-gold);
  color: var(--hn-bg-deep);
  transform: translateY(-1px);
  box-shadow: 0 0 40px rgba(212, 175, 55, 0.15);
}

/* ----------------------------------------------------------------
   LAYOUT UTILITIES
   ---------------------------------------------------------------- */
.hn-container {
  max-width: var(--hn-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--hn-pad);
  padding-right: var(--hn-pad);
}

.hn-section-pad {
  padding-top: var(--hn-section-pad);
  padding-bottom: var(--hn-section-pad);
}

/* ----------------------------------------------------------------
   SCROLL REVEAL SYSTEM
   Requires .hn-animated on <html> (added by JS) — safe fallback: content
   is always visible if JS doesn't run or if observer doesn't fire.
   ---------------------------------------------------------------- */

/* When JS is active, start hidden */
.hn-animated .hn-reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.hn-animated .hn-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.hn-animated .hn-reveal-kids > * {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.hn-animated .hn-reveal-kids.is-visible > *:nth-child(1) { opacity: 1; transform: translateY(0); transition-delay: 0s;    }
.hn-animated .hn-reveal-kids.is-visible > *:nth-child(2) { opacity: 1; transform: translateY(0); transition-delay: 0.1s;  }
.hn-animated .hn-reveal-kids.is-visible > *:nth-child(3) { opacity: 1; transform: translateY(0); transition-delay: 0.2s;  }
.hn-animated .hn-reveal-kids.is-visible > *:nth-child(4) { opacity: 1; transform: translateY(0); transition-delay: 0.3s;  }
.hn-animated .hn-reveal-kids.is-visible > *:nth-child(5) { opacity: 1; transform: translateY(0); transition-delay: 0.4s;  }
.hn-animated .hn-reveal-kids.is-visible > *:nth-child(6) { opacity: 1; transform: translateY(0); transition-delay: 0.4s;  }

/* Slide from left */
.hn-animated .hn-reveal--left {
  opacity: 0;
  transform: translateX(-32px);
  transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}
.hn-animated .hn-reveal--left.is-visible {
  opacity: 1;
  transform: translateX(0);
}

/* Full-bleed image: clip reveal + subtle scale */
.hn-animated .hn-reveal--img {
  opacity: 1;
  transform: none;
  clip-path: inset(6% 0 6% 0);
  transition: clip-path 1.1s cubic-bezier(0.16, 1, 0.3, 1);
}
.hn-animated .hn-reveal--img.is-visible {
  clip-path: inset(0% 0 0% 0);
}
.hn-animated .hn-reveal--img img {
  transform: scale(1.07);
  transition: transform 1.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.hn-animated .hn-reveal--img.is-visible img {
  transform: scale(1);
}

/* ── SPLIT-WORD REVEAL (kinetic typography) ─────────────────── */
/* JS wraps each word in .hn-word-wrap > .hn-word */
.hn-word-wrap {
  display: inline-block;
  overflow: hidden;
  vertical-align: bottom;
  padding-bottom: 0.15em;
  margin-bottom: -0.15em;
}

.hn-animated .hn-word {
  display: inline-block;
  transform: translateY(110%);
  transition: transform 0.75s cubic-bezier(0.2, 1, 0.3, 1);
  transition-delay: calc(var(--wi, 0) * 0.065s);
}

.hn-animated .is-visible .hn-word {
  transform: translateY(0);
}

/* ================================================================
   HERO SECTION
   ================================================================ */
.hn-hero {
  position: relative;
  height: 100svh;
  min-height: 600px;
  overflow: hidden;
  background: var(--hn-bg-deep);
}

.hn-hero__bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

/* Ken Burns wrapper — scales slowly, image parallax applied separately */
.hn-hero__kb {
  position: absolute;
  inset: -5%;
  transform-origin: 58% 45%;
  animation: hn-kb 26s ease-out forwards;
}

@keyframes hn-kb {
  0%   { transform: scale(1.0); }
  100% { transform: scale(1.07); }
}

.hn-hero__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  will-change: transform;
}

.hn-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(8, 8, 10, 0.92) 0%,
    rgba(8, 8, 10, 0.55) 35%,
    rgba(8, 8, 10, 0.18) 65%,
    transparent 100%
  );
  pointer-events: none;
}

.hn-hero__content {
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 0 var(--hn-pad) clamp(32px, 5svh, 96px);
  max-width: min(720px, 80vw);
  z-index: 1;
}

/* Judge.me stars — only renders if real reviews exist */
.hn-hero__stars {
  display: flex;
  align-items: center;
  gap: 3px;
  margin-bottom: clamp(12px, 2svh, 24px);
  opacity: 0;
  transform: translateY(12px);
}
.hn-hero__star {
  font-size: 16px;
  color: var(--hn-gold);
  line-height: 1;
}
.hn-hero__star--dim {
  color: var(--hn-sand-35);
}
.hn-hero__star-count {
  font-family: var(--hn-font);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--hn-sand-60);
  margin-left: 6px;
}

/* All hero text starts invisible — JS fires the entrance */
.hn-hero__eyebrow {
  display: block;
  font-family: var(--hn-font);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  /* Specification/technical note — not gold, not a CTA */
  color: var(--hn-sand-60);
  margin-bottom: clamp(12px, 2svh, 24px);
  opacity: 0;
  transform: translateY(40px);
}

/* Bracket treatment: looks like a product spec, not an ad */
.hn-hero__eyebrow::before { content: '[\00A0'; color: var(--hn-sand-35); }
.hn-hero__eyebrow::after  { content: '\00A0]'; color: var(--hn-sand-35); }

.hn-hero__h1 {
  font-family: var(--hn-font-serif);
  font-size: clamp(44px, 6vw, 96px);
  font-weight: 300;
  line-height: 0.96;
  letter-spacing: -0.01em;
  color: var(--hn-sand);
  margin-bottom: clamp(16px, 3svh, 32px);
}

.hn-hero__h1-line1,
.hn-hero__h1-line2 {
  display: block;
  opacity: 0;
  transform: translateY(40px);
}

.hn-hero__sub {
  font-family: var(--hn-font);
  font-size: clamp(14px, 1.6vw, 18px);
  font-weight: 400;
  line-height: 1.6;
  color: var(--hn-sand-60);
  max-width: 440px;
  margin-bottom: clamp(32px, 5svh, 64px);
  opacity: 0;
  transform: translateY(40px);
}

.hn-hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  opacity: 0;
  transform: translateY(40px);
}

.hn-hero__trust {
  margin-top: var(--hn-s4);
  opacity: 0;
  transform: translateY(20px);
}

.hn-hero__trust-text {
  font-family: var(--hn-font);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: rgba(240, 235, 226, 0.40);
}

.hn-hero__scroll {
  position: absolute;
  bottom: var(--hn-s5);
  right: var(--hn-pad);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--hn-s2);
  font-family: var(--hn-font);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: var(--hn-sand-35);
  opacity: 0;
  transform: translateY(40px);
  z-index: 1;
}

.hn-hero__scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--hn-gold), transparent);
  animation: hn-scroll-pulse 2.5s ease-in-out infinite;
}

@keyframes hn-scroll-pulse {
  0%, 100% { opacity: 0.3; }
  50%       { opacity: 0.9; }
}

/* ================================================================
   ICON STRIP (static 3-up below hero)
   ================================================================ */
.hn-icon-strip {
  background: var(--hn-bg-deep);
  border-bottom: 1px solid var(--hn-border);
  padding: var(--hn-s6) var(--hn-pad);
  font-family: var(--hn-font);
  -webkit-font-smoothing: antialiased;
}

.hn-icon-strip__inner {
  max-width: var(--hn-max);
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: var(--hn-s8);
}

.hn-icon-strip__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: var(--hn-s3);
}

.hn-icon-strip__icon {
  width: 32px;
  height: 32px;
  color: var(--hn-sand);
  opacity: 0.7;
  flex-shrink: 0;
}

.hn-icon-strip__icon svg {
  width: 100%;
  height: 100%;
}

.hn-icon-strip__label {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--hn-sand-60);
  margin: 0;
  white-space: nowrap;
}

@media (max-width: 640px) {
  .hn-icon-strip__inner { gap: var(--hn-s5); flex-wrap: wrap; justify-content: center; }
  .hn-icon-strip__label { white-space: normal; max-width: 80px; }
}

/* ================================================================
   MARQUEE / TRUST BAR
   ================================================================ */
.hn-marquee {
  background: var(--hn-bg-deep);
  padding: var(--hn-s4) var(--hn-pad);
  overflow: hidden;
}

.hn-marquee__track {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: var(--hn-s2) var(--hn-s5);
  width: 100%;
  animation: none;
}

.hn-marquee__item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--hn-font);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--hn-sand-35);
  white-space: nowrap;
  padding-block: 4px;
}

.hn-marquee__icon {
  width: 12px;
  height: 12px;
  color: var(--hn-gold);
  opacity: 0.6;
  flex-shrink: 0;
}

.hn-marquee__sep {
  display: block;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--hn-sand-35);
  opacity: 0.4;
  flex-shrink: 0;
}

/* ================================================================
   PROBLEM SECTION
   ================================================================ */
.hn-problem {
  background: var(--hn-bg);
  padding-top: var(--hn-section-pad);
  padding-bottom: var(--hn-section-pad);
}

.hn-problem__header {
  max-width: 640px;
  margin-bottom: var(--hn-s7);
}

.hn-problem__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--hn-s4) var(--hn-s7);
}

.hn-problem__card {
  padding: 0;
}

.hn-problem__number {
  display: block;
  font-family: var(--hn-font-serif);
  font-size: clamp(32px, 3.5vw, 48px);
  font-weight: 300;
  letter-spacing: -0.02em;
  color: var(--hn-gold);
  opacity: 0.5;
  margin-bottom: var(--hn-s3);
  line-height: 1;
}

.hn-problem__card-title {
  font-family: var(--hn-font);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.2;
  color: var(--hn-sand);
  margin-bottom: var(--hn-s3);
}

/* ================================================================
   SPLIT SECTION (Solution)
   ================================================================ */
.hn-split {
  display: grid;
  grid-template-columns: 62fr 38fr;
  min-height: 80vh;
  background: var(--hn-bg-card);
}

.hn-split__image {
  overflow: hidden;
  min-height: 600px;
  position: relative;
}

.hn-split__image-inner {
  position: absolute;
  inset: 0;
  transition: transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
  overflow: hidden;
}

.hn-split__image-inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.hn-split__image:hover .hn-split__image-inner {
  transform: scale(1.04);
}

.hn-split__content {
  padding: var(--hn-s8) clamp(var(--hn-s6), 5vw, var(--hn-s8));
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hn-split__body {
  margin-top: var(--hn-s4);
  margin-bottom: var(--hn-s6);
}

/* ================================================================
   LAYERS SECTION
   ================================================================ */
.hn-layers {
  background: #000;
}

.hn-layers__inner {
  display: grid;
  grid-template-columns: 35fr 65fr;
  align-items: stretch;
  min-height: 780px;
}

.hn-layers__visual-wrap {
  position: relative;
  overflow: hidden;
}

.hn-layers__visual {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hn-layers__visual img {
  width: 115%;
  height: 115%;
  object-fit: contain;
  object-position: center center;
  display: block;
}

.hn-layers__content {
  padding: var(--hn-section-pad) var(--hn-s7) var(--hn-section-pad) var(--hn-s7);
}

.hn-layers__header {
  margin-bottom: var(--hn-s7);
}

.hn-layers__list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.hn-layers__item {
  border-bottom: 1px solid var(--hn-border);
}

.hn-layers__item:first-child {
  border-top: 1px solid var(--hn-border);
}

.hn-layers__item-trigger {
  width: 100%;
  display: grid;
  grid-template-columns: 40px 1fr 20px;
  gap: var(--hn-s3);
  align-items: center;
  padding: var(--hn-s4) 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
}

.hn-layers__item-num {
  font-family: var(--hn-font);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  color: var(--hn-gold);
}

.hn-layers__item-title {
  font-family: var(--hn-font);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--hn-sand);
}

.hn-layers__item-chevron {
  width: 16px;
  height: 16px;
  color: var(--hn-gold);
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.hn-layers__item-trigger[aria-expanded="true"] .hn-layers__item-chevron {
  transform: rotate(90deg);
}

.hn-layers__item-body {
  overflow: hidden;
}

.hn-layers__item-desc {
  font-family: var(--hn-font);
  font-size: 13px;
  font-weight: 400;
  line-height: 1.55;
  color: var(--hn-sand-60);
  padding-bottom: var(--hn-s4);
  padding-left: calc(40px + var(--hn-s3));
}

/* Desktop: always visible, no accordion */
@media (min-width: 901px) {
  .hn-layers__item-chevron { display: none; }
}

/* Mobile: collapsed by default, expands on .is-open */
@media (max-width: 900px) {
  .hn-layers__item-body {
    max-height: 0;
    transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  }
  .hn-layers__item.is-open .hn-layers__item-body {
    max-height: 120px;
  }
  .hn-layers__item.is-open .hn-layers__item-chevron {
    transform: rotate(90deg);
  }
}

/* ================================================================
   BENEFITS SECTION
   ================================================================ */
.hn-benefits {
  background: var(--hn-bg);
  padding-top: var(--hn-section-pad);
  padding-bottom: var(--hn-section-pad);
}

.hn-benefits__header {
  text-align: center;
  max-width: 560px;
  margin: 0 auto var(--hn-s7);
}

.hn-benefits__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--hn-s7) var(--hn-s6);
}

.hn-benefit-card {
  padding: 0;
}

.hn-benefit-card__icon {
  width: 24px;
  height: 24px;
  color: var(--hn-gold);
  margin-bottom: var(--hn-s3);
  display: block;
  opacity: 0.85;
}

.hn-benefit-card__title {
  font-family: var(--hn-font);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.2;
  color: var(--hn-sand);
  margin-bottom: var(--hn-s2);
}

.hn-benefit-card__body {
  font-family: var(--hn-font);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.65;
  color: var(--hn-sand-60);
}

/* ================================================================
   REVIEWS HEADER SECTION
   ================================================================ */
.hn-reviews-header {
  background: var(--hn-bg-card);
  padding-top: var(--hn-section-pad);
  padding-bottom: var(--hn-s5);
}

.hn-reviews-header__inner {
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}

.hn-reviews-header__heading {
  margin-top: var(--hn-s3);
}

/* ================================================================
   PRODUCTS SECTION
   ================================================================ */
.hn-products {
  background: var(--hn-bg-deep);
  padding-top: var(--hn-section-pad);
  padding-bottom: var(--hn-section-pad);
}

.hn-products__header {
  margin-bottom: var(--hn-s7);
}

.hn-products__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--hn-s5);
}

.hn-product-card {
  overflow: hidden;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  text-decoration: none;
  display: block;
}

.hn-product-card:hover {
  transform: translateY(-3px);
}

.hn-product-card__image {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--hn-bg-deep);
}

.hn-product-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}

.hn-product-card:hover .hn-product-card__image img {
  transform: scale(1.04);
}

.hn-product-card__info {
  padding: var(--hn-s4) 0 0;
}

.hn-product-card__badge {
  font-family: var(--hn-font);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--hn-gold);
  margin-bottom: var(--hn-s2);
}

.hn-product-card__badge--muted {
  color: var(--hn-sand-35);
}

.hn-product-card__name {
  font-family: var(--hn-font);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--hn-sand);
  margin-bottom: var(--hn-s1);
}

.hn-product-card__name--muted {
  color: var(--hn-sand-60);
}

.hn-product-card__desc {
  font-family: var(--hn-font);
  font-size: 13px;
  font-weight: 400;
  line-height: 1.55;
  color: var(--hn-sand-60);
  margin-bottom: var(--hn-s4);
}

.hn-product-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: var(--hn-s3);
}

.hn-product-card__price {
  font-family: var(--hn-font);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--hn-sand);
}

.hn-product-card__price--coming {
  font-size: 14px;
  font-weight: 400;
  color: var(--hn-sand-35);
  letter-spacing: 0;
}

.hn-product-card__atc {
  font-family: var(--hn-font);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--hn-bg-deep);
  background: var(--hn-gold);
  border: none;
  padding: var(--hn-s2) var(--hn-s3);
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

.hn-product-card__atc:hover {
  background: var(--hn-gold-hover);
  transform: translateY(-1px);
}

.hn-product-card__atc--disabled {
  background: transparent;
  color: var(--hn-sand-35);
  border: 1px solid var(--hn-border);
  cursor: default;
}

.hn-product-card__atc--disabled:hover {
  background: transparent;
  transform: none;
}

/* ================================================================
   FAQ SECTION
   ================================================================ */
.hn-faq {
  background: var(--hn-bg);
  padding-top: var(--hn-section-pad);
  padding-bottom: var(--hn-section-pad);
}

.hn-faq__layout {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: var(--hn-s8);
  align-items: start;
}

.hn-faq__header {
  position: sticky;
  top: var(--hn-s7);
}

.hn-faq__list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.hn-faq__item {
  border-bottom: 1px solid var(--hn-border);
}

.hn-faq__item:first-child {
  border-top: 1px solid var(--hn-border);
}

.hn-faq__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--hn-s4);
  padding: var(--hn-s4) 0;
  font-family: var(--hn-font);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.3;
  color: var(--hn-sand);
  cursor: pointer;
  background: none;
  border: none;
  width: 100%;
  text-align: left;
}

.hn-faq__icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: var(--hn-gold);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.hn-faq__question.active .hn-faq__icon {
  transform: rotate(45deg);
}

.hn-faq__answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

.hn-faq__answer.open {
  grid-template-rows: 1fr;
}

.hn-faq__answer-inner {
  overflow: hidden;
}

.hn-faq__answer-text {
  padding-bottom: var(--hn-s4);
  font-family: var(--hn-font);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.7;
  color: var(--hn-sand-60);
  /* Soft-blur reveal: starts blurred, clears after grid expands */
  opacity: 0;
  filter: blur(5px);
  transition: opacity 0.45s ease-out 0.18s, filter 0.45s ease-out 0.18s;
}

.hn-faq__answer.open .hn-faq__answer-text {
  opacity: 1;
  filter: blur(0);
}

/* ================================================================
   CTA / GUARANTEE SECTION
   ================================================================ */
.hn-cta {
  position: relative;
  overflow: hidden;
  padding-top: var(--hn-s9);
  padding-bottom: var(--hn-s9);
  text-align: center;
  background: #000;
}

.hn-cta__bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hn-cta__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hn-cta__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(8, 8, 10, 0.88) 0%,
    rgba(8, 8, 10, 0.55) 40%,
    rgba(8, 8, 10, 0.78) 100%
  );
  pointer-events: none;
}

.hn-cta__inner {
  position: relative;
  z-index: 1;
}

.hn-cta__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--hn-s2);
  font-family: var(--hn-font);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--hn-gold);
  margin-bottom: var(--hn-s2);
}

.hn-cta__eyebrow::before,
.hn-cta__eyebrow::after {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: var(--hn-gold);
  opacity: 0.35;
}

.hn-cta__h2 {
  font-family: var(--hn-font-serif);
  font-size: clamp(40px, 6vw, 80px);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: 0;
  color: var(--hn-sand);
  margin-bottom: var(--hn-s5);
}

.hn-cta__body {
  font-family: var(--hn-font);
  font-size: clamp(15px, 1.5vw, 18px);
  font-weight: 400;
  line-height: 1.7;
  color: var(--hn-sand-60);
  max-width: 540px;
  margin: 0 auto var(--hn-s6);
}

.hn-cta__guarantee {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--hn-s4);
  flex-wrap: wrap;
  margin-top: var(--hn-s5);
}

.hn-cta__guarantee-item {
  display: flex;
  align-items: center;
  gap: var(--hn-s2);
  font-family: var(--hn-font);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--hn-sand-60);
}

.hn-cta__guarantee-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--hn-gold);
  opacity: 0.5;
  flex-shrink: 0;
}

/* ================================================================
   PRODUCT PAGE — Horizon overrides + trust strip + upsell
   ================================================================ */

/* ── Trust strip ─────────────────────────────────────────────── */
.hn-product-trust {
  padding: var(--hn-s4) var(--hn-pad);
  border-top: 1px solid var(--hn-border);
  border-bottom: 1px solid var(--hn-border);
}

.hn-product-trust__chips {
  display: flex;
  flex-wrap: wrap;
  gap: var(--hn-s2);
  margin-bottom: var(--hn-s3);
}

.hn-product-trust__chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border: 1px solid var(--hn-border-gold);
  border-radius: 0;
  background: rgba(200, 169, 126, 0.05);
  font-family: var(--hn-font);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--hn-sand-60);
  white-space: nowrap;
}

.hn-product-trust__chip svg {
  width: 11px;
  height: 11px;
  color: var(--hn-gold);
  opacity: 0.8;
  flex-shrink: 0;
}

.hn-product-trust__hygiene {
  display: flex;
  align-items: flex-start;
  gap: 6px;
  margin-bottom: var(--hn-s3);
  font-family: var(--hn-font);
  font-size: 11px;
  line-height: 1.6;
  color: var(--hn-sand-40);
  letter-spacing: 0.02em;
}

.hn-product-trust__hygiene svg {
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--hn-sand-40);
}

.hn-product-trust__pay {
  display: flex;
  align-items: center;
  gap: var(--hn-s3);
}

.hn-product-trust__pay-label {
  font-family: var(--hn-font);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--hn-sand-35);
  white-space: nowrap;
}

.hn-product-trust__pay-icons {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}

.hn-product-trust__pay-icon {
  width: 38px;
  height: 24px;
  border-radius: 4px;
  flex-shrink: 0;
  opacity: 0.7;
  transition: opacity 0.2s ease;
}

.hn-product-trust__pay-icon:hover {
  opacity: 1;
}

/* ── Upsell section ──────────────────────────────────────────── */
.hn-upsell {
  background: var(--hn-bg);
  border-top: 1px solid var(--hn-border);
  padding: var(--hn-section-pad) var(--hn-pad);
  font-family: var(--hn-font);
  -webkit-font-smoothing: antialiased;
}

.hn-upsell__inner {
  max-width: var(--hn-max);
  margin: 0 auto;
}

.hn-upsell__header {
  max-width: 560px;
  margin-bottom: var(--hn-s7);
}

.hn-upsell__sub {
  font-size: 15px;
  line-height: 1.65;
  color: var(--hn-sand-60);
  margin: 0;
}

.hn-upsell__cards {
  display: flex;
  align-items: center;
  gap: var(--hn-s4);
  margin-bottom: var(--hn-s6);
  flex-wrap: wrap;
}

.hn-upsell__card {
  display: flex;
  align-items: center;
  gap: var(--hn-s3);
  padding: var(--hn-s3);
  border: 1px solid var(--hn-border);
  border-radius: 8px;
  background: var(--hn-bg-card);
  flex: 1;
  min-width: 240px;
}

.hn-upsell__card--main {
  border-color: var(--hn-border-gold);
}

.hn-upsell__img-wrap {
  width: 72px;
  height: 72px;
  flex-shrink: 0;
  border-radius: 4px;
  overflow: hidden;
  background: var(--hn-bg);
}

.hn-upsell__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hn-upsell__card-body {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.hn-upsell__badge {
  display: inline-block;
  padding: 2px 8px;
  border-radius: 32px;
  background: rgba(200, 169, 126, 0.12);
  border: 1px solid var(--hn-border-gold);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--hn-gold);
  width: fit-content;
}

.hn-upsell__badge--new {
  background: rgba(240, 236, 228, 0.06);
  border-color: var(--hn-border);
  color: var(--hn-sand-60);
}

.hn-upsell__name {
  font-size: 13px;
  font-weight: 600;
  color: var(--hn-sand);
  margin: 0;
  letter-spacing: 0.02em;
}

.hn-upsell__price {
  font-size: 13px;
  font-weight: 500;
  color: var(--hn-sand-60);
  margin: 0;
}

.hn-upsell__plus {
  font-size: 20px;
  font-weight: 300;
  color: var(--hn-sand-35);
  flex-shrink: 0;
  align-self: center;
}

.hn-upsell__actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--hn-s2);
}

.hn-upsell__btn-bundle {
  min-width: 280px;
}

.hn-upsell__skip {
  font-family: var(--hn-font);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--hn-sand-35);
  text-decoration: none;
  padding: 4px 0;
  cursor: pointer;
  transition: color 0.2s ease;
}

.hn-upsell__skip:hover {
  color: var(--hn-sand-60);
}

/* ── Responsive ──────────────────────────────────────────────── */
@media (max-width: 640px) {
  .hn-upsell__cards    { flex-direction: column; }
  .hn-upsell__plus     { transform: rotate(90deg); }
  .hn-upsell__btn-bundle { min-width: 0; width: 100%; }
  .hn-upsell__actions  { width: 100%; align-items: stretch; }
  .hn-product-trust__chips { gap: 6px; }
}

/* ================================================================
   CART PAGE — free shipping bar
   ================================================================ */
.hn-cart-bar {
  background: var(--hn-bg);
  border-bottom: 1px solid var(--hn-border);
  padding: var(--hn-s3) var(--hn-pad);
  font-family: var(--hn-font);
  -webkit-font-smoothing: antialiased;
}

.hn-cart-bar__msg {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--hn-sand-60);
  margin: 0 0 var(--hn-s2);
  line-height: 1.5;
}

.hn-cart-bar__msg strong {
  color: var(--hn-sand);
  font-weight: 700;
}

.hn-cart-bar__msg--unlocked {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--hn-gold);
}

.hn-cart-bar__msg--unlocked svg {
  width: 13px;
  height: 13px;
  flex-shrink: 0;
}

.hn-cart-bar__track {
  height: 3px;
  background: var(--hn-border);
  border-radius: 2px;
  overflow: hidden;
}

.hn-cart-bar__fill {
  height: 100%;
  background: linear-gradient(to right, var(--hn-gold), var(--hn-gold-hover));
  border-radius: 2px;
  transition: width 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ── Cart DRAWER shipping bar (injected by JS) ───────────────── */
.hn-drawer-bar {
  padding: 12px 16px 14px;
  border-bottom: 1px solid rgba(240, 236, 228, 0.07);
  margin-bottom: 0;
}

.hn-drawer-bar__msg {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: rgba(240, 236, 228, 0.55);
  margin: 0 0 8px;
  line-height: 1.5;
}

.hn-drawer-bar__msg strong {
  color: rgb(240, 236, 228);
  font-weight: 700;
}

.hn-drawer-bar__msg--unlocked {
  display: flex;
  align-items: center;
  gap: 5px;
  color: #c8a97e;
}

.hn-drawer-bar__track {
  height: 2px;
  background: rgba(240, 236, 228, 0.10);
  border-radius: 2px;
  overflow: hidden;
}

.hn-drawer-bar__fill {
  height: 100%;
  background: linear-gradient(to right, #c8a97e, #d4b88e);
  border-radius: 2px;
  transition: width 0.5s ease;
}

/* ================================================================
   GUARANTEE STRIP
   ================================================================ */
.hn-guarantee {
  background: var(--hn-bg-deep);
  padding: var(--hn-s5) 0;
  border-top: 1px solid var(--hn-border);
}

.hn-guarantee__grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--hn-s4) var(--hn-s7);
}

.hn-guarantee__item {
  display: flex;
  align-items: center;
  gap: var(--hn-s2);
}

.hn-guarantee__icon {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  color: var(--hn-gold);
}

.hn-guarantee__icon svg {
  width: 100%;
  height: 100%;
}

.hn-guarantee__text {
  display: flex;
  flex-direction: column;
}

.hn-guarantee__title {
  font-family: var(--hn-font);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--hn-sand);
  margin: 0;
  line-height: 1.3;
}

.hn-guarantee__body {
  display: none;
}

/* ================================================================
   LOCALE BAR (injected by JS, bottom-right, desktop)
   ================================================================ */
.hn-locale-bar {
  position: fixed;
  bottom: var(--hn-s3);
  right: var(--hn-pad);
  font-family: var(--hn-font);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--hn-sand-35);
  z-index: 200;
  pointer-events: none;
  user-select: none;
}

/* ================================================================
   STORY PAGE
   ================================================================ */
.hn-story {
  background: var(--hn-bg-deep);
  color: var(--hn-sand);
}

.hn-story__hero {
  min-height: 85vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--hn-section-pad) var(--hn-pad);
  background: #000;
  position: relative;
}

.hn-story__hero-location {
  font-family: var(--hn-font);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--hn-gold);
  margin-bottom: var(--hn-s5);
}

.hn-story__hero-heading {
  font-family: var(--hn-font-serif);
  font-size: clamp(48px, 7vw, 96px);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--hn-sand);
  max-width: 14ch;
  margin: 0;
}

.hn-story__block {
  padding: var(--hn-section-pad) 0;
}

.hn-story__block--problem { background: var(--hn-bg); }
.hn-story__block--brand   { background: var(--hn-bg-card); }

.hn-story__split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--hn-s8);
  align-items: center;
}

.hn-story__split--reverse {
  direction: rtl;
}
.hn-story__split--reverse > * {
  direction: ltr;
}

.hn-story__image-col {
  overflow: hidden;
  border-radius: 4px;
}

.hn-story__img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.hn-story__full-image {
  width: 100%;
  max-height: 80vh;
  overflow: hidden;
  line-height: 0;
}

.hn-story__full-image img {
  width: 100%;
  height: 80vh;
  object-fit: cover;
  object-position: center center;
  display: block;
}

.hn-story__text-col {
  max-width: 640px;
}

.hn-story__text-col .hn-eyebrow {
  margin-bottom: var(--hn-s5);
}

.hn-story__lead {
  font-family: var(--hn-font-serif);
  font-size: clamp(22px, 2.5vw, 32px);
  font-weight: 300;
  line-height: 1.35;
  color: var(--hn-sand);
  margin: 0 0 var(--hn-s5);
}

.hn-story__body {
  font-family: var(--hn-font);
  font-size: 15px;
  line-height: 1.7;
  color: var(--hn-sand-60);
  margin: 0 0 var(--hn-s4);
}
.hn-story__body:last-child { margin-bottom: 0; }

.hn-story__philosophy {
  background: #000;
  padding: var(--hn-section-pad) 0;
  text-align: center;
}

.hn-story__quote {
  font-family: var(--hn-font-serif);
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 300;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--hn-sand);
  margin: 0 auto;
  max-width: 22ch;
  border: none;
  padding: 0;
  font-style: normal;
}

.hn-story__products {
  background: var(--hn-bg);
  padding: var(--hn-section-pad) 0;
}

.hn-story__products-eyebrow {
  margin-bottom: var(--hn-s6);
}

.hn-story__products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--hn-s7);
}

.hn-story__product {
  border-top: 1px solid var(--hn-border);
  padding-top: var(--hn-s5);
}

.hn-story__product-name {
  font-family: var(--hn-font);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--hn-gold);
  margin-bottom: 4px;
}

.hn-story__product-meaning {
  font-family: var(--hn-font-serif);
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 300;
  color: var(--hn-sand);
  margin-bottom: var(--hn-s4);
  line-height: 1.1;
}

.hn-story__product-desc {
  font-family: var(--hn-font);
  font-size: 13px;
  line-height: 1.65;
  color: var(--hn-sand-60);
  margin: 0;
}

.hn-story__close {
  background: #000;
  padding: var(--hn-section-pad) 0;
  text-align: center;
}

.hn-story__tagline {
  font-family: var(--hn-font-serif);
  font-size: clamp(32px, 4vw, 56px);
  font-weight: 300;
  color: var(--hn-sand);
  margin: 0 0 var(--hn-s6);
}


/* ================================================================
   GLOBAL HORIZON OVERRIDES — all non-homepage pages
   ================================================================ */

/* Nuclear dark bg — cover every Horizon section wrapper */
.section-background,
[class*="color-scheme"],
.color-scheme-1,
.color-scheme-2,
.section,
.shopify-section:not(.header-section):not(.hn-section) {
  background-color: var(--hn-bg-deep);
}

/* ── TYPOGRAPHY — Horizon page headings (not homepage custom sections) ── */
/* Scoped to Horizon's section wrappers to avoid fighting hn- classes */
.product-grid-container h1,
.product-grid-container h2,
.cart-items-component h1,
.cart-items-component h2,
.cart-items-component h3,
.main-page h1,
.main-page h2,
.main-page h3,
.main-blog h1,
.main-blog h2,
.main-blog-post h1,
.main-blog-post h2,
.search-results h1,
.search-results h2,
.main-404 h1,
.product-recommendations h1,
.product-recommendations h2,
.product-recommendations h3 {
  font-family: var(--hn-font-serif);
  font-weight: 300;
  color: var(--hn-sand);
  letter-spacing: 0;
}

/* Product page title — special case since product-information renders h1 */
.product-information h1 {
  font-family: var(--hn-font-serif);
  font-weight: 300;
  color: var(--hn-sand);
  letter-spacing: -0.01em;
}

/* ── BREADCRUMBS ──────────────────────────────────────────── */
.breadcrumbs,
.breadcrumb {
  font-family: var(--hn-font);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--hn-sand-35);
}
.breadcrumbs a,
.breadcrumb a {
  color: var(--hn-sand-35);
  text-decoration: none;
}
.breadcrumbs a:hover,
.breadcrumb a:hover {
  color: var(--hn-gold);
}

/* ────────────────────────────────────────────────────────────
   COLLECTION PAGE
   ──────────────────────────────────────────────────────────── */

/* Collection heading section */
.product-grid-container {
  background: var(--hn-bg-deep);
}

/* Custom ATC button — gold circle, bottom-right of card image */
.hn-atc-btn {
  position: absolute;
  bottom: 12px;
  right: 12px;
  z-index: 10;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--hn-gold);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #08080a;
  box-shadow: 0 2px 12px rgba(0,0,0,0.4);
  opacity: 0;
  pointer-events: auto;
  transition: opacity 0.2s ease, transform 0.15s ease;
}
.hn-atc-btn svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  pointer-events: none;
}
product-card:hover .hn-atc-btn,
product-card:focus-within .hn-atc-btn {
  opacity: 1;
}
.hn-atc-btn:hover {
  background: var(--hn-gold-hover);
  transform: scale(1.06);
}
.hn-atc-btn:active {
  transform: scale(0.97);
}
.hn-atc-btn:disabled {
  opacity: 0.5;
  cursor: default;
}
@media (max-width: 749px) {
  .hn-atc-btn {
    opacity: 1;
  }
}

/* ---- Loading spinner shared keyframe ---- */
@keyframes hn-spin {
  to { transform: rotate(360deg); }
}

/* Quick-add button — loading state */
.hn-atc-btn.hn-loading {
  opacity: 1;
  cursor: default;
  pointer-events: none;
}
.hn-atc-btn.hn-loading svg {
  opacity: 0;
}
.hn-atc-btn.hn-loading::after {
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid rgba(8, 8, 10, 0.2);
  border-top-color: #08080a;
  animation: hn-spin 0.65s linear infinite;
}

/* Gold ATC buttons (bundles, products grid) — loading state */
.hn-bundles__cta.hn-loading,
.hn-product-card__atc.hn-loading {
  pointer-events: none;
  color: transparent !important;
  position: relative;
}
.hn-bundles__cta.hn-loading svg { opacity: 0; }
.hn-bundles__cta.hn-loading::after,
.hn-product-card__atc.hn-loading::after {
  content: '';
  position: absolute;
  inset: 0;
  margin: auto;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 2px solid rgba(8, 8, 10, 0.2);
  border-top-color: #08080a;
  animation: hn-spin 0.65s linear infinite;
}

/* Product-page ATC button — loading state */
product-form-component[data-cart-adding] button[ref="addToCartButton"] {
  pointer-events: none;
  color: transparent !important;
  position: relative;
}
product-form-component[data-cart-adding] button[ref="addToCartButton"]::after {
  content: '';
  position: absolute;
  inset: 0;
  margin: auto;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-top-color: #fff;
  animation: hn-spin 0.65s linear infinite;
}

/* Collection title */
.product-grid-container h1,
.product-grid-container .h1,
.collection-wrapper h1 {
  font-family: var(--hn-font-serif);
  font-weight: 300;
  color: var(--hn-sand);
  font-size: clamp(32px, 4vw, 64px);
  line-height: 1.1;
}

/* Filters bar */
.filters-form,
.facets-container,
.collection-filters-form {
  background: var(--hn-bg-deep);
  border-bottom: 1px solid var(--hn-border);
}

/* Filter labels */
.facet-filters__label,
.facets__summary,
.filters-form label {
  font-family: var(--hn-font);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--hn-sand-60);
}

/* Sort/filter disclosure buttons */
.facets__summary,
.disclosure__toggle,
.mobile-facets__open {
  font-family: var(--hn-font);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--hn-sand-60);
  background: transparent;
  border-color: var(--hn-border);
}

/* Product cards in collection grid */
.product-card,
.product-grid__item {
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
}

/* Product card image container */
.product-card .product-card__media,
.product-card .media {
  background: var(--hn-bg-card);
  overflow: hidden;
}

/* Product card image hover */
.product-card:hover .product-card__media img {
  transform: scale(1.03);
  transition: transform 0.6s ease;
}

/* Product card title */
.product-card .product-title,
.product-card [class*="product-title"],
.product-grid :is(h3, p) {
  font-family: var(--hn-font);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: var(--hn-sand);
}

/* Product card price */
.product-card .price,
.product-card product-price,
.product-card [class*="price"] {
  font-family: var(--hn-font);
  font-size: 13px;
  color: var(--hn-sand-60);
}

/* ────────────────────────────────────────────────────────────
   PRODUCT PAGE
   ──────────────────────────────────────────────────────────── */

/* Full product layout background */
.product-information,
.product-information .section,
.product-information .section-background {
  background: var(--hn-bg-deep);
}

/* Kill all border-radius on Horizon product page elements */
.product-information *,
.product-information *::before,
.product-information *::after {
  border-radius: 0 !important;
}

/* Product title */
.product-information h1,
.product-information .h1 {
  font-family: var(--hn-font-serif);
  font-weight: 300;
  font-size: clamp(32px, 3.5vw, 56px);
  line-height: 1.05;
  color: var(--hn-sand);
  letter-spacing: -0.02em;
  margin-bottom: var(--hn-s3);
}

/* Product price — commanding, not whispered */
.product-information product-price,
.product-information .price,
.product-information [class*="price"] {
  font-family: var(--hn-font);
  font-size: clamp(20px, 2vw, 26px);
  font-weight: 300;
  color: var(--hn-sand);
  letter-spacing: 0.04em;
}

/* Product description body text */
.product-information .rte,
.product-details .rte {
  font-family: var(--hn-font);
  font-size: 14px;
  line-height: 1.8;
  color: var(--hn-sand-60);
}

/* Dividers inside product info — thinner, more refined */
.product-information hr,
.product-details hr,
._divider {
  border: none;
  border-top: 1px solid var(--hn-border);
  margin: var(--hn-s4) 0;
}

/* Variant option label — architectural, no radius */
.variant-option__button-label {
  font-family: var(--hn-font);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: transparent;
  color: var(--hn-sand-60);
  border-color: var(--hn-border);
  border-radius: 0 !important;
  padding: 10px 16px;
  min-width: 48px;
  text-align: center;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.variant-option__button-label:hover {
  background: var(--hn-bg-card);
  color: var(--hn-sand);
  border-color: rgba(240, 236, 228, 0.3);
}

/* Selected variant — gold fill */
.variant-option__button-label:has(:checked) {
  background: var(--hn-gold) !important;
  color: var(--hn-bg-deep) !important;
  border-color: var(--hn-gold) !important;
  font-weight: 600 !important;
}

/* Variant legend label */
.variant-option legend,
.variant-option__label {
  font-family: var(--hn-font);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--hn-sand-35);
  margin-bottom: var(--hn-s2);
}

/* ATC button — gold, sharp, full-width, tall */
.add-to-cart-button,
.product-form__submit,
.buy-buttons .button:not(.button--secondary):not([class*="accelerated"]) {
  background: var(--hn-gold) !important;
  color: var(--hn-bg-deep) !important;
  border-color: var(--hn-gold) !important;
  border-radius: 0 !important;
  font-family: var(--hn-font) !important;
  font-size: 11px !important;
  font-weight: 600 !important;
  letter-spacing: 0.10em !important;
  text-transform: uppercase !important;
  padding: 18px 32px !important;
  width: 100% !important;
  transition: background 0.25s ease !important;
}

.add-to-cart-button:hover,
.product-form__submit:hover,
.buy-buttons .button:not(.button--secondary):not([class*="accelerated"]):hover {
  background: var(--hn-gold-hover) !important;
  border-color: var(--hn-gold-hover) !important;
}

/* Hide Shop Pay / accelerated checkout on product pages — primary CTA is gold ATC only */
.product-information .shopify-payment-button,
.product-information [class*="shopify-cleanslate"],
.product-information .accelerated-checkout-button-wrapper {
  display: none !important;
}

/* Quantity selector — clean rectangular */
.quantity-selector,
.quantity-input {
  background: transparent !important;
  border-color: var(--hn-border) !important;
  border-radius: 0 !important;
  color: var(--hn-sand) !important;
  font-family: var(--hn-font) !important;
}

.quantity-selector .quantity-minus,
.quantity-selector .quantity-plus {
  color: var(--hn-sand-35);
  border-radius: 0 !important;
}

.quantity-selector .quantity-minus:hover,
.quantity-selector .quantity-plus:hover {
  color: var(--hn-gold);
}

/* Buy buttons area — add top spacing */
.buy-buttons {
  margin-top: var(--hn-s4);
}

/* Sticky ATC bar */
.sticky-add-to-cart__bar {
  background: var(--hn-bg) !important;
  border-bottom: 1px solid var(--hn-border);
  border-radius: 0 !important;
}

.sticky-add-to-cart__title {
  font-family: var(--hn-font-serif) !important;
  font-weight: 300 !important;
  font-size: clamp(16px, 1.5vw, 20px) !important;
  color: var(--hn-sand) !important;
  letter-spacing: -0.01em !important;
}

.sticky-add-to-cart__button {
  background: var(--hn-gold) !important;
  color: var(--hn-bg-deep) !important;
  border-radius: 0 !important;
  font-family: var(--hn-font) !important;
  font-size: 10px !important;
  font-weight: 600 !important;
  letter-spacing: 0.10em !important;
  text-transform: uppercase !important;
}

/* Product media — dark bg, no radius */
.product-media-container,
.media-gallery,
.product-media-gallery__slideshow {
  background: var(--hn-bg-card);
  border-radius: 0 !important;
}

/* Product recommendations */
.product-recommendations {
  background: var(--hn-bg-deep);
  border-top: 1px solid var(--hn-border);
  padding-top: var(--hn-s8);
  padding-bottom: var(--hn-s8);
}

.product-recommendations h3,
.product-recommendations .h3,
.product-recommendations h4 {
  font-family: var(--hn-font-serif);
  font-weight: 300;
  color: var(--hn-sand);
  font-size: clamp(22px, 2.5vw, 36px);
  letter-spacing: -0.01em;
  margin-bottom: var(--hn-s5);
}

/* Judge.me — dark theme integration */
.jdgm-preview-badge {
  font-family: var(--hn-font) !important;
  font-size: 11px !important;
  color: var(--hn-sand-60) !important;
}

.jdgm-star,
.jdgm-star--full,
.jdgm-star--half {
  color: var(--hn-gold) !important;
}

/* Dark card backgrounds */
.jdgm-rev-widg,
.jdgm-widget,
#jdgm-widget,
.jdgm-rev-widg__header,
.jdgm-rev-widg__summary,
.jdgm-rev {
  background: transparent !important;
  background-color: transparent !important;
  color: var(--hn-sand) !important;
  font-family: var(--hn-font) !important;
  border-color: var(--hn-border) !important;
}

.jdgm-rev__body,
.jdgm-rev__title,
.jdgm-rev__author,
.jdgm-rev__timestamp,
.jdgm-rev-widg__summary-text {
  color: var(--hn-sand-60) !important;
  font-family: var(--hn-font) !important;
}

.jdgm-rev__title {
  color: var(--hn-sand) !important;
}

.jdgm-paginate a,
.jdgm-paginate__page {
  color: var(--hn-sand-60) !important;
  border-color: var(--hn-border) !important;
}

.jdgm-paginate__page.jdgm-paginate__page--active {
  color: var(--hn-gold) !important;
  border-color: var(--hn-gold) !important;
}

/* Summary numbers */
.jdgm-rev-widg__summary-avg-score,
.jdgm-rev-widg__summary-count {
  color: var(--hn-sand) !important;
}

/* Verified badge */
.jdgm-rev__verification-badge {
  color: var(--hn-gold) !important;
  border-color: var(--hn-border-gold) !important;
  background: var(--hn-gold-tint) !important;
}

/* ────────────────────────────────────────────────────────────
   CART PAGE
   ──────────────────────────────────────────────────────────── */

.cart-items-component {
  background: var(--hn-bg-deep);
}

/* Cart title */
.cart-title,
.cart-page__title,
.cart-page__title h1,
.cart-page__title .h1,
.cart-page__title h2 {
  font-family: var(--hn-font-serif);
  font-weight: 300;
  color: var(--hn-sand);
  font-size: clamp(28px, 3vw, 48px);
  letter-spacing: -0.01em;
}

/* Cart item rows */
.cart-item,
.cart-product {
  border-color: var(--hn-border);
}

/* Cart item product name */
.cart-item__name,
.cart-item a {
  font-family: var(--hn-font);
  font-size: 13px;
  color: var(--hn-sand);
  text-decoration: none;
}

/* Cart item price */
.cart-item .price,
.cart-item product-price {
  font-family: var(--hn-font);
  font-size: 13px;
  color: var(--hn-sand-60);
}

/* Cart summary panel */
.cart-summary {
  background: var(--hn-bg-card) !important;
  border: 1px solid var(--hn-border) !important;
}

.cart-summary__title,
.cart-summary h2,
.cart-summary h3 {
  font-family: var(--hn-font);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--hn-sand-60);
}

.cart-summary__total-label,
.cart-summary__total-price {
  font-family: var(--hn-font-serif);
  font-weight: 300;
  font-size: clamp(18px, 2vw, 24px);
  color: var(--hn-sand);
}

/* Checkout button — gold */
.cart-checkout-button,
[name="checkout"],
.cart__checkout-button {
  background: var(--hn-gold) !important;
  color: var(--hn-bg-deep) !important;
  border-color: var(--hn-gold) !important;
  font-family: var(--hn-font) !important;
  font-size: 11px !important;
  font-weight: 600 !important;
  letter-spacing: 0.18em !important;
  text-transform: uppercase !important;
  width: 100% !important;
}

.cart-checkout-button:hover,
[name="checkout"]:hover,
.cart__checkout-button:hover {
  background: var(--hn-gold-hover) !important;
  border-color: var(--hn-gold-hover) !important;
}

/* Cart note + discount fields */
.cart-note__label,
.cart-discount__label {
  font-family: var(--hn-font);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--hn-sand-35);
}

/* Empty cart state */
.cart-page--empty {
  background: var(--hn-bg-deep);
}

.cart-page--empty .cart-title {
  color: var(--hn-sand);
}

/* ────────────────────────────────────────────────────────────
   PAGE / POLICY / LEGAL PAGES
   ──────────────────────────────────────────────────────────── */
.main-page,
.main-page__content {
  background: var(--hn-bg-deep);
}

.rte,
.main-page .rte {
  font-family: var(--hn-font);
  font-size: 15px;
  line-height: 1.75;
  color: var(--hn-sand-60);
  max-width: 720px;
}

/* Separator line under page title */
.main-page .block-content:first-child {
  border-bottom: 1px solid var(--hn-border);
  padding-bottom: var(--hn-s5);
  margin-bottom: var(--hn-s2);
}

.rte h1, .rte h2, .rte h3, .rte h4 {
  font-family: var(--hn-font-serif);
  color: var(--hn-sand);
  font-weight: 300;
  margin-top: 2em;
  margin-bottom: 0.5em;
}

.rte h1 { font-size: clamp(28px, 3.5vw, 52px); }
.rte h2 { font-size: clamp(22px, 3vw, 36px); }
.rte h3 { font-size: clamp(18px, 2vw, 24px); }

.rte a {
  color: var(--hn-gold);
  text-underline-offset: 3px;
}

.rte ul, .rte ol { padding-left: 1.5em; }
.rte li { margin-bottom: 0.5em; }

/* ────────────────────────────────────────────────────────────
   BLOG / ARTICLE
   ──────────────────────────────────────────────────────────── */
.main-blog,
.main-blog-post {
  background: var(--hn-bg-deep);
}

/* Blog article card */
.article-card {
  background: var(--hn-bg-card) !important;
  border: 1px solid var(--hn-border) !important;
  border-radius: 0;
}

.article-card__title {
  font-family: var(--hn-font-serif);
  font-weight: 300;
  color: var(--hn-sand);
}

.article-card__excerpt,
.article-card__date {
  font-family: var(--hn-font);
  color: var(--hn-sand-60);
}

/* Article body */
.main-blog-post .article__title {
  font-family: var(--hn-font-serif);
  font-weight: 300;
  color: var(--hn-sand);
}

.main-blog-post .article__content {
  font-size: 16px;
  line-height: 1.8;
  color: var(--hn-sand-60);
}

/* ────────────────────────────────────────────────────────────
   SEARCH
   ──────────────────────────────────────────────────────────── */
.search-results__heading,
.search-header h1 {
  font-family: var(--hn-font-serif);
  font-weight: 300;
  color: var(--hn-sand);
}

.search-results {
  background: var(--hn-bg-deep);
}

/* ────────────────────────────────────────────────────────────
   404 PAGE
   ──────────────────────────────────────────────────────────── */
.main-404 {
  background: var(--hn-bg-deep);
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.main-404 h1,
.main-404 .h1 {
  font-family: var(--hn-font-serif);
  font-weight: 300;
  font-size: clamp(48px, 8vw, 120px);
  color: var(--hn-sand);
  line-height: 1;
  margin-bottom: var(--hn-s4);
}

.main-404 p {
  color: var(--hn-sand-60);
  font-size: 15px;
  margin-bottom: var(--hn-s6);
}

/* ────────────────────────────────────────────────────────────
   PAGINATION
   ──────────────────────────────────────────────────────────── */
.pagination {
  font-family: var(--hn-font);
  font-size: 11px;
  letter-spacing: 0.1em;
}

.pagination__item {
  color: var(--hn-sand-60);
  border-color: var(--hn-border);
}

.pagination__item--current {
  background: var(--hn-gold);
  color: var(--hn-bg-deep);
  border-color: var(--hn-gold);
}

.pagination__item:hover:not(.pagination__item--current) {
  color: var(--hn-gold);
  border-color: var(--hn-gold);
}

/* ────────────────────────────────────────────────────────────
   GLOBAL FORM INPUTS
   ──────────────────────────────────────────────────────────── */
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="number"],
textarea,
select {
  background: var(--hn-bg-card) !important;
  color: var(--hn-sand) !important;
  border-color: var(--hn-border) !important;
  font-family: var(--hn-font) !important;
  font-size: 13px !important;
}

input[type="text"]::placeholder,
input[type="email"]::placeholder,
textarea::placeholder {
  color: var(--hn-sand-35) !important;
}

input[type="text"]:focus,
input[type="email"]:focus,
textarea:focus {
  border-color: var(--hn-gold) !important;
  outline: none !important;
  box-shadow: 0 0 0 1px var(--hn-gold) !important;
}

/* ────────────────────────────────────────────────────────────
   DRAWER (cart + search)
   ──────────────────────────────────────────────────────────── */
.cart-drawer,
.drawer,
[id*="cart-drawer"],
[class*="cart-drawer"] {
  background: var(--hn-bg) !important;
}

.cart-drawer__header,
.drawer__header {
  background: var(--hn-bg) !important;
  border-bottom: 1px solid var(--hn-border);
}

.cart-drawer__title,
.drawer__title {
  font-family: var(--hn-font-serif) !important;
  font-weight: 300 !important;
  color: var(--hn-sand) !important;
  font-size: 20px !important;
}

.cart-drawer__item-name,
.cart-drawer a {
  color: var(--hn-sand) !important;
  font-family: var(--hn-font) !important;
}

.cart-drawer__checkout {
  background: var(--hn-gold) !important;
  color: var(--hn-bg-deep) !important;
  font-family: var(--hn-font) !important;
  font-size: 11px !important;
  font-weight: 600 !important;
  letter-spacing: 0.10em !important;
  text-transform: uppercase !important;
}

.cart-drawer__checkout:hover {
  background: var(--hn-gold-hover) !important;
}

/* Cart drawer item count badge */
.cart-count-bubble {
  background: var(--hn-gold) !important;
  color: var(--hn-bg-deep) !important;
}

/* ================================================================
   SCROLLBAR + SELECTION (global theme overrides)
   ================================================================ */
::-webkit-scrollbar         { width: 6px; }
::-webkit-scrollbar-track   { background: var(--hn-bg-deep); }
::-webkit-scrollbar-thumb   { background: rgba(200, 169, 126, 0.3); }
::selection                 { background: rgba(200, 169, 126, 0.2); color: var(--hn-sand); }

/* ================================================================
   RESPONSIVE — 900px
   ================================================================ */
@media (max-width: 900px) {
  .hn-problem__grid { grid-template-columns: 1fr; }

  .hn-split {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .hn-split__image     { min-height: 360px; }
  .hn-split__content   { padding: var(--hn-s7) var(--hn-pad); }

  .hn-layers__inner        { grid-template-columns: 1fr; min-height: 0; }
  .hn-layers__visual-wrap  { min-height: 420px; position: relative; order: -1; }
  .hn-layers__content      { padding: var(--hn-s7) var(--hn-pad); order: 0; }

  .hn-benefits__grid   { grid-template-columns: 1fr 1fr; gap: var(--hn-s6) var(--hn-s5); }

  .hn-products__grid   { grid-template-columns: 1fr 1fr; }

  .hn-faq__layout      { grid-template-columns: 1fr; }
  .hn-faq__header      { position: static; margin-bottom: var(--hn-s6); }

  .hn-story__products-grid { grid-template-columns: 1fr; gap: var(--hn-s6); }
  .hn-story__hero-heading  { font-size: clamp(36px, 9vw, 64px); }
  .hn-story__split         { grid-template-columns: 1fr; gap: var(--hn-s6); }
  .hn-story__split--reverse { direction: ltr; }
}

@media (max-width: 640px) {
  /* Hero */
  .hn-hero__content    { max-width: 100%; padding-right: var(--hn-pad); padding-bottom: clamp(40px, 8vw, 72px); }
  .hn-hero__h1         { font-size: clamp(36px, 10vw, 52px); line-height: 1.0; margin-bottom: var(--hn-s3); }
  .hn-hero__sub        { font-size: 14px; margin-bottom: var(--hn-s4); }
  .hn-hero__stars      { margin-bottom: var(--hn-s2); }
  .hn-hero__star       { font-size: 13px; }
  .hn-hero__star-count { font-size: 10px; }
  .hn-hero__trust      { margin-top: var(--hn-s3); }
  .hn-hero__trust-text { font-size: 9px; }
  .hn-hero__scroll     { display: none; }
  .hn-hero             { height: 85svh; min-height: 500px; }
  .hn-hero__img        { object-position: center 65%; }
  .hn-hero__kb         { inset: 0; animation: none; }

  /* Sections */
  .hn-benefits__grid   { grid-template-columns: 1fr 1fr; gap: var(--hn-s5) var(--hn-s3); }
  .hn-problem__grid    { grid-template-columns: 1fr; gap: var(--hn-s4); }
  .hn-guarantee__grid  { gap: var(--hn-s3) var(--hn-s5); }
  .hn-products__grid   { grid-template-columns: 1fr; }
  .hn-cta__guarantee   { flex-direction: column; gap: var(--hn-s2); }

  .hn-layers__visual-wrap { min-height: 320px; }
  .hn-layers__content  { padding: var(--hn-s6) var(--hn-pad); }

  /* Reviews header */
  .hn-reviews-header__inner { padding: 0 var(--hn-s2); }

  /* Story page */
  .hn-story__hero      { min-height: 70vh; padding: var(--hn-s8) var(--hn-pad); }
  .hn-story__block     { padding: var(--hn-s7) 0; }
  .hn-story__philosophy { padding: var(--hn-s7) 0; }
  .hn-story__products  { padding: var(--hn-s7) 0; }
  .hn-story__close     { padding: var(--hn-s7) 0; }
  .hn-story__quote     { font-size: clamp(22px, 6vw, 36px); }

  /* Marquee — reduce gap on very small screens */
  .hn-marquee__track   { gap: var(--hn-s2) var(--hn-s4); }

  /* Problem number — smaller on mobile */
  .hn-problem__number  { font-size: 24px; }


  /* CTA section — reduce padding */
  .hn-cta             { padding: var(--hn-s7) var(--hn-pad); }
  .hn-cta__h2         { font-size: 36px; }

  /* Buttons full-width on mobile */
  .hn-btn              { width: 100%; justify-content: center; }
  .hn-upsell__btn-bundle { width: 100%; }

  /* Split image height */
  .hn-split__image     { min-height: 280px; }

  /* FAQ tap targets */
  .hn-faq__question    { padding: var(--hn-s3) 0; min-height: 44px; }

  /* Guarantee grid */
  .hn-guarantee__grid { gap: var(--hn-s3) var(--hn-s4); }

  /* Newsletter — stack on mobile */
  .hn-newsletter__row { flex-direction: column; }
  .hn-newsletter__btn { width: 100%; justify-content: center; }
  .hn-newsletter       { padding-top: var(--hn-s6); padding-bottom: var(--hn-s6); }

  /* Popup — reduce padding so content isn't crushed on small phones */
  .hn-cart-popup__box  { padding: var(--hn-s5) var(--hn-s3); }

  /* ── Section rhythm: reduce all section padding on mobile ── */
  :root { --hn-section-pad: 52px; }

  /* ── Bundles section: tighter card body on mobile ── */
  .hn-bundles__body { padding: 16px; }

  /* ── Product page upsell: bigger touch targets ── */
  .hn-bup__btn {
    padding: 12px 16px;
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  /* ── FBT / bundle cards: slightly smaller images to give text more room ── */
  .hn-fbt__img,
  .hn-bup__img  { width: 52px; height: 52px; }

  /* ── Guide callout: tighter on mobile ── */
  .hn-guide       { padding: 10px 12px; gap: 12px; }
  .hn-guide__img  { width: 52px; height: 74px; }

  /* ── Bundle included rows: tighter ── */
  .hn-bundle-inc__row { padding: 10px 12px; gap: 12px; }

  /* ── Product trust strip: smaller text ── */
  .hn-trust__item { font-size: 10px; }

}

/* Benefits single column on very narrow phones */
@media (max-width: 420px) {
  .hn-benefits__grid { grid-template-columns: 1fr; gap: var(--hn-s4); }
}

/* ================================================================
   NEWSLETTER SECTION
   ================================================================ */
.hn-newsletter {
  background: var(--hn-bg-card);
  padding: var(--hn-section-pad) var(--hn-pad);
  border-top: 1px solid var(--hn-border);
  border-bottom: 1px solid var(--hn-border);
}

.hn-newsletter__inner {
  max-width: 520px;
  margin: 0 auto;
  text-align: center;
}

.hn-newsletter__h2 {
  font-family: var(--hn-font-serif);
  font-size: clamp(30px, 3.5vw, 48px);
  font-weight: 300;
  color: var(--hn-sand);
  letter-spacing: -0.01em;
  margin: var(--hn-s3) 0;
  line-height: 1.1;
}

.hn-newsletter__sub {
  font-family: var(--hn-font);
  font-size: 14px;
  line-height: 1.7;
  color: var(--hn-sand-60);
  margin: 0 0 var(--hn-s5);
}

.hn-newsletter__form {
  display: flex;
  flex-direction: column;
  gap: var(--hn-s3);
}

.hn-newsletter__row {
  display: flex;
  gap: var(--hn-s2);
}

.hn-newsletter__input {
  flex: 1;
  background: var(--hn-bg-deep);
  border: 1px solid var(--hn-border);
  color: var(--hn-sand);
  font-family: var(--hn-font);
  font-size: 14px;
  padding: 14px var(--hn-s3);
  outline: none;
  transition: border-color 0.2s ease;
  -webkit-appearance: none;
}

.hn-newsletter__input::placeholder { color: var(--hn-sand-35); }
.hn-newsletter__input:focus { border-color: var(--hn-gold); }

.hn-newsletter__btn { flex-shrink: 0; white-space: nowrap; }

.hn-newsletter__success {
  font-family: var(--hn-font);
  font-size: 13px;
  color: var(--hn-gold);
  margin: 0;
}

.hn-newsletter__error {
  font-family: var(--hn-font);
  font-size: 13px;
  color: #e07070;
  margin: 0;
}

.hn-newsletter__note {
  font-family: var(--hn-font);
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--hn-sand-35);
  margin: var(--hn-s3) 0 0;
}

/* ================================================================
   CART EMAIL POPUP
   ================================================================ */
.hn-cart-popup {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.hn-cart-popup.is-open {
  pointer-events: auto;
  opacity: 1;
}

.hn-cart-popup__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.72);
  cursor: pointer;
}

.hn-cart-popup__box {
  position: relative;
  z-index: 1;
  background: var(--hn-bg-card);
  border: 1px solid var(--hn-border-gold);
  padding: var(--hn-s7) var(--hn-s6);
  width: min(480px, 92vw);
  transform: translateY(16px);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.hn-cart-popup.is-open .hn-cart-popup__box {
  transform: translateY(0);
}

.hn-cart-popup__close {
  position: absolute;
  top: var(--hn-s3);
  right: var(--hn-s3);
  background: none;
  border: none;
  color: var(--hn-sand-35);
  cursor: pointer;
  padding: var(--hn-s1);
  line-height: 1;
  transition: color 0.2s ease;
}
.hn-cart-popup__close:hover { color: var(--hn-sand); }

.hn-cart-popup__panel {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: var(--hn-s3);
}

.hn-cart-popup__h2 {
  font-family: var(--hn-font-serif);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 300;
  color: var(--hn-sand);
  letter-spacing: -0.01em;
  line-height: 1.05;
  margin: 0;
}

.hn-cart-popup__sub {
  font-family: var(--hn-font);
  font-size: 13px;
  line-height: 1.65;
  color: var(--hn-sand-60);
  max-width: 34ch;
  margin: 0;
}

.hn-cart-popup__form {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: var(--hn-s2);
}

.hn-cart-popup__input {
  width: 100%;
  background: var(--hn-bg-deep);
  border: 1px solid var(--hn-border);
  color: var(--hn-sand);
  font-family: var(--hn-font);
  font-size: 14px;
  padding: 14px var(--hn-s3);
  outline: none;
  text-align: center;
  transition: border-color 0.2s ease;
  -webkit-appearance: none;
  box-sizing: border-box;
}
.hn-cart-popup__input::placeholder { color: var(--hn-sand-35); }
.hn-cart-popup__input:focus { border-color: var(--hn-gold); }

.hn-cart-popup__btn {
  width: 100%;
  justify-content: center;
}

.hn-cart-popup__code {
  font-family: var(--hn-font);
  font-size: 28px;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: var(--hn-gold);
  background: var(--hn-bg-deep);
  border: 1px solid var(--hn-border-gold);
  padding: var(--hn-s3) var(--hn-s5);
  margin: var(--hn-s2) 0;
}

.hn-cart-popup__error {
  font-family: var(--hn-font);
  font-size: 12px;
  color: #e07070;
  margin: 0;
}

.hn-cart-popup__note {
  font-family: var(--hn-font);
  font-size: 10px;
  letter-spacing: 0.08em;
  color: var(--hn-sand-35);
  margin: 0;
}

/* ================================================================
   FOOTER LINKS
   ================================================================ */
.footer-content .rte a,
.footer-content p a {
  font-family: var(--hn-font);
  font-size: 13px;
  color: var(--hn-sand-60);
  text-decoration: none;
  letter-spacing: 0.04em;
  transition: color 0.2s ease;
  display: block;
  padding: 3px 0;
}

.footer-content .rte a:hover,
.footer-content p a:hover {
  color: var(--hn-gold);
}

/* Policy popover links — match footer link style */
.policy_list a {
  font-family: var(--hn-font);
  font-size: 13px;
  color: var(--hn-sand-60) !important;
  text-decoration: none;
  letter-spacing: 0.04em;
  transition: color 0.2s ease;
  padding: 6px 0 !important;
}

.policy_list a:hover {
  color: var(--hn-gold) !important;
  background: transparent !important;
}

.policy_list li:is(:hover, :focus-within) {
  background: transparent !important;
}

/* ================================================================
   PRODUCT PAGE — DESCRIPTION & EYEBROW
   ================================================================ */
.hn-pd-eyebrow {
  font-family: var(--hn-font);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--hn-gold);
  margin: 0 0 var(--hn-s2);
  padding: 0;
}

.hn-pd-intro {
  font-family: var(--hn-font);
  font-size: 15px;
  line-height: 1.75;
  color: var(--hn-sand);
  margin-bottom: var(--hn-s3);
}

.product-information .rte p,
.product-information p {
  font-family: var(--hn-font);
  font-size: 14px;
  line-height: 1.75;
  color: var(--hn-sand-60);
  margin-bottom: var(--hn-s2);
}

/* ================================================================
   PRODUCT FEATURE SECTIONS (hn-natt-features, hn-pust-features)
   ================================================================ */
.hn-pf__statement {
  padding: var(--hn-s8) 0 var(--hn-s7);
  border-bottom: 1px solid var(--hn-border);
}

.hn-pf__product-eyebrow {
  font-family: var(--hn-font);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--hn-gold);
  margin-bottom: var(--hn-s3);
}

.hn-pf__statement-heading {
  font-family: var(--hn-font-serif);
  font-size: clamp(36px, 4vw, 64px);
  font-weight: 300;
  color: var(--hn-sand);
  line-height: 1.05;
  letter-spacing: -0.01em;
  margin: var(--hn-s3) 0;
}

.hn-pf__statement-sub {
  font-family: var(--hn-font);
  font-size: clamp(15px, 1.4vw, 18px);
  color: var(--hn-sand-60);
  line-height: 1.7;
  max-width: 600px;
  margin: 0;
}

.hn-pf__features {
  padding: var(--hn-s7) 0;
  border-bottom: 1px solid var(--hn-border);
}

.hn-pf__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--hn-s5) var(--hn-s6);
}

.hn-pf__card {
  display: flex;
  flex-direction: column;
  gap: var(--hn-s2);
}

.hn-pf__card-icon {
  width: 32px;
  height: 32px;
  color: var(--hn-gold);
}

.hn-pf__card-icon svg {
  width: 100%;
  height: 100%;
}

.hn-pf__card-title {
  font-family: var(--hn-font);
  font-size: 15px;
  font-weight: 600;
  color: var(--hn-sand);
  letter-spacing: 0.01em;
  margin: 0;
}

.hn-pf__card-body {
  font-family: var(--hn-font);
  font-size: 14px;
  line-height: 1.7;
  color: var(--hn-sand-60);
  margin: 0;
}

.hn-pf__specs {
  padding: var(--hn-s7) 0 var(--hn-s8);
}

.hn-pf__specs .hn-eyebrow {
  margin-bottom: var(--hn-s5);
}

.hn-pf__specs-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 var(--hn-s8);
}

.hn-pf__spec-list {
  margin: 0;
  padding: 0;
}

.hn-pf__spec-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: var(--hn-s3);
  padding: var(--hn-s2) 0;
  border-bottom: 1px solid var(--hn-border);
  font-family: var(--hn-font);
  font-size: 13px;
}

.hn-pf__spec-row dt {
  color: var(--hn-sand-60);
  font-weight: 400;
  white-space: nowrap;
  flex-shrink: 0;
}

.hn-pf__spec-row dd {
  color: var(--hn-sand);
  margin: 0;
  text-align: right;
}

@media (max-width: 860px) {
  .hn-pf__grid       { grid-template-columns: 1fr 1fr; }
  .hn-pf__specs-grid { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .hn-pf__grid { grid-template-columns: 1fr; }
  .hn-pf__statement { padding: var(--hn-s7) 0 var(--hn-s6); }
}

/* ─── Email Capture Popup ──────────────────────────────────────────────── */
.hn-cart-popup {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
}
.hn-cart-popup.is-open {
  display: block;
}
.hn-cart-popup__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(4px);
}
.hn-cart-popup__box {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: min(480px, calc(100vw - 48px));
  background: #0e0e0e;
  border: 1px solid rgba(200, 169, 126, 0.2);
  border-radius: 6px;
  padding: 48px 40px 40px;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.8);
  animation: hn-popup-in 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}
@keyframes hn-popup-in {
  from { opacity: 0; transform: translate(-50%, calc(-50% + 24px)); }
  to   { opacity: 1; transform: translate(-50%, -50%); }
}
.hn-cart-popup__close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 32px;
  height: 32px;
  background: transparent;
  border: none;
  color: rgba(200, 169, 126, 0.5);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: color 0.2s, background 0.2s;
  padding: 0;
}
.hn-cart-popup__close:hover {
  color: #c8a97e;
  background: rgba(200, 169, 126, 0.08);
}
.hn-cart-popup__h2 {
  font-size: clamp(2rem, 5vw, 2.8rem);
  font-weight: 700;
  color: var(--hn-sand);
  line-height: 1.1;
  margin: 16px 0 12px;
  letter-spacing: -0.02em;
}
.hn-cart-popup__sub {
  font-size: 0.9rem;
  color: var(--hn-sand-60);
  line-height: 1.6;
  margin: 0 0 24px;
}
.hn-cart-popup__form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.hn-cart-popup__input {
  width: 100%;
  padding: 14px 16px;
  background: #161616;
  border: 1px solid rgba(200, 169, 126, 0.2);
  border-radius: 4px;
  color: var(--hn-sand);
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.2s;
  box-sizing: border-box;
}
.hn-cart-popup__input::placeholder {
  color: var(--hn-sand-35);
}
.hn-cart-popup__input:focus {
  border-color: rgba(200, 169, 126, 0.5);
}
.hn-cart-popup__btn {
  width: 100%;
  padding: 16px;
  font-size: 0.85rem;
}
.hn-cart-popup__note {
  font-size: 0.75rem;
  color: var(--hn-sand-35);
  text-align: center;
  margin: 4px 0 0;
}
.hn-cart-popup__error {
  font-size: 0.8rem;
  color: #e07070;
  margin: 0;
}
.hn-cart-popup__code {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--hn-gold);
  letter-spacing: 0.12em;
  text-align: center;
  margin: 24px 0 12px;
}
.hn-cart-popup__panel[aria-hidden="true"],
.hn-cart-popup__panel[style*="display:none"] {
  display: none !important;
}

/* ----------------------------------------------------------------
   PRODUCT PAGE — checkmark bullet list
   ---------------------------------------------------------------- */
.product-information .rte ul,
.product-information [class*="text"] ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.product-information .rte ul li,
.product-information [class*="text"] ul li {
  padding-left: 24px;
  position: relative;
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--hn-sand-60);
}

.product-information .rte ul li::before,
.product-information [class*="text"] ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 5px;
  width: 14px;
  height: 14px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23c8a97e' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
}

/* ================================================================
   SELLING PLAN / SUBSCRIBE & SAVE
   ================================================================ */
.hn-selling-plan {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 16px;
}

.hn-selling-plan__option {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border: 1px solid var(--hn-border);
  border-radius: 4px;
  cursor: pointer;
  transition: border-color 0.2s;
}

.hn-selling-plan__option:has(input:checked) {
  border-color: var(--hn-gold);
}

.hn-selling-plan__option input[type="radio"] {
  accent-color: var(--hn-gold);
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.hn-selling-plan__label {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.hn-selling-plan__label-title {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--hn-sand);
}

.hn-selling-plan__label-price {
  font-size: 0.8rem;
  color: var(--hn-sand-60);
}

.hn-selling-plan__label-badge {
  font-size: 0.75rem;
  color: var(--hn-gold);
  font-weight: 500;
}

.hn-selling-plan__options {
  padding: 12px 16px;
  border: 1px solid var(--hn-border);
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: -4px;
}

.hn-selling-plan__freq {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  font-size: 0.875rem;
  color: var(--hn-sand);
}

.hn-selling-plan__freq input[type="radio"] {
  accent-color: var(--hn-gold);
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

/* Sale badge — gold color */
.product-badges__badge {
  background: #c8a97e !important;
  color: #0a0a0a !important;
}

/* Announcement bar — gold background, dark text */
.announcement-bar {
  background: #c9a96e !important;
}
.announcement-bar .section-background {
  background: #c9a96e !important;
}
.announcement-bar__slide {
  padding-block: 5px;
  overflow: visible;
}
.announcement-bar__text,
.announcement-bar__text a,
.announcement-bar__text p {
  color: #0f0e0c !important;
  line-height: 1.5;
  font-weight: 400;
  letter-spacing: 0.03em;
}
.announcement-bar__text strong,
.announcement-bar .restocked-word {
  font-weight: 700;
}

/* ----------------------------------------------------------------
   UPGRADE CARD — inline upsell in product details column
   ---------------------------------------------------------------- */
.hn-upgrade-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 16px;
  border: 1px solid var(--hn-border-gold);
  border-radius: 4px;
  text-decoration: none;
  color: inherit;
  transition: border-color 0.2s ease, background 0.2s ease;
  margin-top: 4px;
}

.hn-upgrade-card:hover {
  border-color: rgba(200, 169, 126, 0.5);
  background: rgba(200, 169, 126, 0.04);
}

.hn-upgrade-card__eyebrow {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--hn-gold);
  margin: 0 0 10px;
}

.hn-upgrade-card__info {
  flex: 1;
  min-width: 0;
}

.hn-upgrade-card__name {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--hn-sand);
  margin: 0;
}

.hn-upgrade-card__tagline {
  font-size: 0.72rem;
  color: var(--hn-sand-60);
  margin: 3px 0 0;
}

.hn-upgrade-card__btn {
  flex-shrink: 0;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--hn-gold);
  border: 1px solid rgba(200, 169, 126, 0.4);
  border-radius: 3px;
  padding: 7px 14px;
  white-space: nowrap;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.hn-upgrade-card:hover .hn-upgrade-card__btn {
  background: rgba(200, 169, 126, 0.1);
  border-color: var(--hn-gold);
}

/* ----------------------------------------------------------------
   UPGRADE INLINE CARD — inside product grid, details column
   ---------------------------------------------------------------- */
.hn-upgrade-inline {
  padding-bottom: 24px;
}

@media screen and (max-width: 749px) {
  .hn-upgrade-inline {
    grid-column: 2 / 3;
  }
}

@media screen and (min-width: 750px) {
  .product-information--media-left .hn-upgrade-inline {
    grid-column: 2;
    padding-left: calc(var(--gap, 48px) / 2);
  }
  .product-information--media-right .hn-upgrade-inline {
    grid-column: 1;
    padding-right: calc(var(--gap, 48px) / 2);
  }
}

.hn-upgrade-inline__eyebrow {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--hn-gold);
  margin: 0 0 8px;
}

.hn-upgrade-inline__card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 14px;
  border: 1px solid rgba(200, 169, 126, 0.25);
  border-radius: 4px;
  text-decoration: none;
  color: inherit;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.hn-upgrade-inline__card:hover {
  border-color: rgba(200, 169, 126, 0.5);
  background: rgba(200, 169, 126, 0.04);
}

.hn-upgrade-inline__img {
  width: 56px;
  height: 56px;
  object-fit: cover;
  border-radius: 3px;
  flex-shrink: 0;
}

.hn-upgrade-inline__info {
  flex: 1;
  min-width: 0;
}

.hn-upgrade-inline__name {
  margin: 0;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--hn-sand);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.hn-upgrade-inline__tagline {
  margin: 3px 0 0;
  font-size: 0.7rem;
  color: var(--hn-sand-60);
}

.hn-upgrade-inline__price {
  margin: 5px 0 0;
  display: flex;
  align-items: baseline;
  gap: 6px;
}

.hn-upgrade-inline__compare {
  font-size: 0.72rem;
  color: rgba(240, 236, 228, 0.35);
  text-decoration: line-through;
}

.hn-upgrade-inline__current {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--hn-gold);
}

.hn-upgrade-inline__btn {
  flex-shrink: 0;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--hn-gold);
  border: 1px solid rgba(200, 169, 126, 0.4);
  border-radius: 3px;
  padding: 6px 12px;
  white-space: nowrap;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.hn-upgrade-inline__card:hover .hn-upgrade-inline__btn {
  background: rgba(200, 169, 126, 0.1);
  border-color: var(--hn-gold);
}

/* ----------------------------------------------------------------
   HN-UP — upgrade card below product grid
   ---------------------------------------------------------------- */
.hn-up {
  max-width: var(--page-width, 1200px);
  margin: 0 auto;
  padding: 0 var(--page-margin, 24px) 24px;
}

@media screen and (min-width: 750px) {
  .hn-up {
    padding-left: calc(50% + var(--gap, 48px) / 2);
  }
}

.hn-up__eyebrow {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--hn-gold);
  margin: 0 0 8px;
}

.hn-up__card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 14px;
  border: 1px solid rgba(200, 169, 126, 0.25);
  border-radius: 4px;
  text-decoration: none;
  color: inherit;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.hn-up__card:hover {
  border-color: rgba(200, 169, 126, 0.5);
  background: rgba(200, 169, 126, 0.04);
}

.hn-up__img {
  width: 56px;
  height: 56px;
  object-fit: cover;
  border-radius: 3px;
  flex-shrink: 0;
}

.hn-up__info {
  flex: 1;
  min-width: 0;
}

.hn-up__name {
  margin: 0;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--hn-sand);
}

.hn-up__tagline {
  margin: 3px 0 0;
  font-size: 0.7rem;
  color: var(--hn-sand-60);
}

.hn-up__price {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin: 5px 0 0;
}

.hn-up__compare {
  font-size: 0.72rem;
  color: rgba(240, 236, 228, 0.35);
  text-decoration: line-through;
}

.hn-up__current {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--hn-gold);
}

.hn-up__btn {
  flex-shrink: 0;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--hn-gold);
  border: 1px solid rgba(200, 169, 126, 0.4);
  border-radius: 3px;
  padding: 6px 12px;
  white-space: nowrap;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.hn-up__card:hover .hn-up__btn {
  background: rgba(200, 169, 126, 0.1);
  border-color: var(--hn-gold);
}


}

/* ----------------------------------------------------------------
   HN-UPSELLS — FBT + Bundle Upgrade (NATT product page)
   ---------------------------------------------------------------- */
.hn-upsells {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 0;
}

.hn-upsells__title {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(200, 169, 126, 0.45);
  margin: 0 0 12px;
}

/* ── Bundle: What's included ── */
.hn-bundle-inc {
  padding-top: var(--hn-s4);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  margin-bottom: var(--hn-s3);
}

.hn-bundle-inc__row {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 14px;
  border: 1px solid rgba(200, 169, 126, 0.12);
  border-radius: 0;
  margin-bottom: 8px;
}

.hn-bundle-inc__row:last-child {
  margin-bottom: 0;
}

.hn-bundle-inc__img {
  width: 48px;
  height: 48px;
  object-fit: cover;
  border-radius: 3px;
  flex-shrink: 0;
}

.hn-bundle-inc__img--placeholder {
  background: rgba(200, 169, 126, 0.08);
}

.hn-bundle-inc__info {
  flex: 1;
  min-width: 0;
}

.hn-bundle-inc__name {
  margin: 0 0 2px;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--hn-sand);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.hn-bundle-inc__sub {
  margin: 0;
  font-size: 0.72rem;
  color: rgba(240, 235, 226, 0.45);
}

.hn-bundle-inc__check {
  flex-shrink: 0;
  color: var(--hn-gold);
  opacity: 0.6;
}

/* ── Sleep Protocol guide callout ── */
.hn-guide {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 14px;
  border: 1px solid rgba(200, 169, 126, 0.2);
  margin-bottom: var(--hn-s3);
}

.hn-guide__img {
  width: 64px;
  height: 90px;
  object-fit: cover;
  flex-shrink: 0;
  border-radius: 2px;
  border: 1.5px solid rgba(200, 169, 126, 0.7);
  box-shadow: 0 0 8px rgba(200, 169, 126, 0.2);
}

.hn-guide__info {
  flex: 1;
  min-width: 0;
}

.hn-guide__label {
  margin: 0 0 2px;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--hn-gold);
  opacity: 0.7;
}

.hn-guide__name {
  margin: 0 0 2px;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--hn-sand);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.hn-guide__sub {
  margin: 0;
  font-size: 0.72rem;
  color: rgba(240, 235, 226, 0.45);
  font-style: italic;
}

.hn-guide__icon {
  flex-shrink: 0;
  color: var(--hn-gold);
  opacity: 0.5;
}

/* ── Frequently bought together ── */
.hn-fbt {
  padding-top: var(--hn-s4);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.hn-fbt__row {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 14px;
  border: 1px solid rgba(200, 169, 126, 0.2);
  border-radius: 0;
  transition: border-color 0.2s ease, background 0.2s ease;
  position: relative;
  width: 100%;
  box-sizing: border-box;
}

.hn-fbt__row:hover {
  border-color: rgba(200, 169, 126, 0.4);
  background: rgba(200, 169, 126, 0.03);
}

.hn-fbt__link {
  display: flex;
  align-items: center;
  gap: 14px;
  flex: 1;
  min-width: 0;
  text-decoration: none;
  color: inherit;
}

.hn-fbt__toggle-label {
  display: flex;
  align-items: center;
  cursor: pointer;
  flex-shrink: 0;
}

.hn-fbt--added .hn-fbt__row {
  border-color: rgba(200, 169, 126, 0.55);
}

.hn-fbt__img {
  width: 64px;
  height: 64px;
  object-fit: cover;
  border-radius: 3px;
  flex-shrink: 0;
}

.hn-fbt__img--placeholder {
  background: rgba(200, 169, 126, 0.08);
}

.hn-fbt__info {
  flex: 1;
  min-width: 0;
}

.hn-fbt__name {
  margin: 0;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--hn-sand);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.hn-fbt__price {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin: 6px 0 0;
}

.hn-fbt__compare {
  font-size: 0.75rem;
  color: rgba(240, 236, 228, 0.35);
  text-decoration: line-through;
}

.hn-fbt__current {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--hn-gold);
}



.hn-fbt__check {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
  pointer-events: none;
}

.hn-fbt__toggle-ui {
  width: 40px;
  height: 22px;
  border-radius: 11px;
  background: rgba(200, 169, 126, 0.12);
  border: 1px solid rgba(200, 169, 126, 0.22);
  flex-shrink: 0;
  position: relative;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.hn-fbt__toggle-ui::after {
  content: '';
  position: absolute;
  top: 2px;
  left: 2px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: rgba(200, 169, 126, 0.5);
  transition: transform 0.2s ease, background 0.2s ease;
}

.hn-fbt__check:checked ~ .hn-fbt__toggle-ui,
.hn-fbt--added .hn-fbt__toggle-ui {
  background: var(--hn-gold);
  border-color: var(--hn-gold);
}

.hn-fbt__check:checked ~ .hn-fbt__toggle-ui::after,
.hn-fbt--added .hn-fbt__toggle-ui::after {
  transform: translateX(18px);
  background: #0a0a0a;
}

.hn-fbt--loading .hn-fbt__toggle-ui::after {
  background: transparent;
  border: 2px solid rgba(200, 169, 126, 0.4);
  border-top-color: var(--hn-gold);
  animation: hn-spin 0.65s linear infinite;
}

.hn-fbt__feedback {
  margin: 6px 0 0;
  font-size: 0.7rem;
  color: var(--hn-sand-60);
  min-height: 1em;
}

/* ── Bundle upgrade card ── */
.hn-bup {
  padding-top: var(--hn-s3);
  margin-top: var(--hn-s2);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.hn-bup__card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 14px;
  border: 1px solid rgba(200, 169, 126, 0.2);
  border-radius: 0;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.hn-bup__card:hover {
  border-color: rgba(200, 169, 126, 0.45);
  background: rgba(200, 169, 126, 0.03);
}

.hn-bup__img {
  width: 64px;
  height: 64px;
  object-fit: cover;
  border-radius: 3px;
  flex-shrink: 0;
}

.hn-bup__img--placeholder {
  background: rgba(200, 169, 126, 0.08);
}

.hn-bup__info {
  flex: 1;
  min-width: 0;
}

.hn-bup__name {
  margin: 0;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--hn-sand);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.hn-bup__tagline {
  margin: 3px 0 0;
  font-size: 0.72rem;
  color: var(--hn-sand-60);
}

.hn-bup__price {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin: 6px 0 0;
}

.hn-bup__compare {
  font-size: 0.75rem;
  color: rgba(240, 236, 228, 0.35);
  text-decoration: line-through;
}

.hn-bup__current {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--hn-gold);
}

.hn-bup__btn {
  flex-shrink: 0;
  font-size: 0.78rem;
  font-weight: 700;
  color: #0a0a0a;
  background: var(--hn-gold);
  border: none;
  border-radius: 50px;
  padding: 9px 20px;
  white-space: nowrap;
  cursor: pointer;
  transition: background 0.2s ease;
}

.hn-bup__btn:disabled {
  opacity: 0.6;
  cursor: default;
}

.hn-bup__card:hover .hn-bup__btn {
  background: var(--hn-gold-hover);
}

/* ── Bundle carousel header + arrows ── */
.hn-bup__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.hn-bup__header .hn-upsells__title {
  margin: 0;
}

.hn-bup__arrows {
  display: flex;
  gap: 4px;
}

.hn-bup__arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: rgba(200, 169, 126, 0.08);
  border: 1px solid rgba(200, 169, 126, 0.2);
  border-radius: 50%;
  color: var(--hn-gold);
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.hn-bup__arrow:hover:not(:disabled) {
  background: rgba(200, 169, 126, 0.18);
  border-color: rgba(200, 169, 126, 0.45);
}

.hn-bup__arrow:disabled {
  opacity: 0.3;
  cursor: default;
}

/* Product media: standard Horizon grid (no 56vw override) */

/* ── Bundle carousel track ── */
.hn-bup__track {
  overflow: hidden;
  border-radius: 4px;
}

.hn-bup__list {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.hn-bup__slide {
  flex: 0 0 auto;
  min-width: 0;
}

/* ── Specs grid (NATT product page) ── */
.hn-specs {
  margin-top: var(--hn-s3);
  margin-bottom: var(--hn-s3);
}

.hn-specs__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.hn-specs__item {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 14px 16px;
  background: var(--hn-bg, #0f0e0c);
}

.hn-specs__key {
  font-family: var(--hn-font);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(200, 169, 126, 0.55);
}

.hn-specs__val {
  font-family: var(--hn-font);
  font-size: 18px;
  font-weight: 300;
  letter-spacing: 0.01em;
  color: rgba(240, 235, 226, 0.9);
  line-height: 1;
}

/* ── Trust badges row (NATT product page, below ATC) ── */
.hn-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
  padding: var(--hn-s2) 0 var(--hn-s3);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.hn-trust__item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--hn-font);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: rgba(240, 235, 226, 0.5);
}

.hn-trust__item svg {
  flex-shrink: 0;
  opacity: 0.6;
}

/* Keep Shop Pay hidden — no replacement CTA */
.product-information .shopify-payment-button,
.product-information [class*="shopify-cleanslate"],
.product-information .accelerated-checkout-button-wrapper {
  display: none !important;
}

/* ── Timeline section (What to expect) ── */
.hn-timeline {
  padding: var(--hn-section-pad) 0;
  background: var(--hn-bg-deep);
}

.hn-timeline__inner {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 var(--page-margin, 24px);
}

.hn-timeline__eyebrow {
  font-family: var(--hn-font);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--hn-gold);
  margin: 0 0 12px;
}

.hn-timeline__heading {
  font-family: var(--hn-font);
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 300;
  color: var(--hn-sand);
  margin: 0 0 40px;
  letter-spacing: -0.01em;
}

.hn-timeline__steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  position: relative;
}

.hn-timeline__steps::before {
  content: '';
  position: absolute;
  top: 20px;
  left: calc(100% / 6);
  right: calc(100% / 6);
  height: 1px;
  background: rgba(200, 169, 126, 0.2);
}

.hn-timeline__step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
  padding: 0 16px;
}

.hn-timeline__step-num {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(200, 169, 126, 0.35);
  background: var(--hn-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--hn-font);
  font-size: 13px;
  font-weight: 500;
  color: var(--hn-gold);
  position: relative;
  z-index: 1;
  flex-shrink: 0;
}

.hn-timeline__step-label {
  font-family: var(--hn-font);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--hn-sand);
  margin: 0 0 8px;
}

.hn-timeline__step-text {
  font-family: var(--hn-font);
  font-size: 12px;
  font-weight: 400;
  color: rgba(240, 235, 226, 0.5);
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 640px) {
  .hn-timeline__steps {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .hn-timeline__steps::before { display: none; }
  .hn-timeline__step {
    flex-direction: row;
    text-align: left;
    align-items: flex-start;
  }
  .hn-timeline__step-body { flex: 1; }
}

/* ── Mid-page pull quote ── */
.hn-midproof {
  padding: var(--hn-s7) var(--page-margin, 24px);
}

.hn-midproof__inner {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}

.hn-midproof__stars {
  display: flex;
  justify-content: center;
  gap: 4px;
  color: var(--hn-gold);
  margin-bottom: 20px;
}

.hn-midproof__quote {
  font-family: var(--hn-font);
  font-size: clamp(17px, 2.5vw, 22px);
  font-weight: 300;
  font-style: italic;
  color: var(--hn-sand);
  line-height: 1.5;
  letter-spacing: -0.01em;
  margin: 0 0 16px;
}

.hn-midproof__author {
  font-family: var(--hn-font);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(240, 235, 226, 0.35);
  margin: 0;
}

/* ── Advertorial page ── */
.hn-adv {
  max-width: 680px;
  padding: 80px var(--page-margin, 24px) 120px;
  margin: 0 auto;
}

.hn-adv__eyebrow {
  font-family: var(--hn-font);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--hn-gold);
  margin: 0 0 16px;
}

.hn-adv__headline {
  font-family: var(--hn-font);
  font-size: clamp(26px, 4vw, 40px);
  font-weight: 300;
  color: var(--hn-sand);
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin: 0 0 20px;
}

.hn-adv__deck {
  font-family: var(--hn-font);
  font-size: 16px;
  font-weight: 400;
  color: rgba(240, 235, 226, 0.6);
  line-height: 1.65;
  margin: 0 0 56px;
  border-left: 2px solid rgba(200, 169, 126, 0.3);
  padding-left: 20px;
}

.hn-adv__insight {
  display: flex;
  gap: 24px;
  margin-bottom: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.hn-adv__insight-num {
  font-family: var(--hn-font);
  font-size: 48px;
  font-weight: 700;
  color: rgba(200, 169, 126, 0.15);
  line-height: 1;
  margin: 0;
  flex-shrink: 0;
  width: 48px;
}

.hn-adv__insight-title {
  font-family: var(--hn-font);
  font-size: 18px;
  font-weight: 500;
  color: var(--hn-sand);
  margin: 0 0 12px;
  letter-spacing: -0.01em;
}

.hn-adv__insight-content .rte {
  font-family: var(--hn-font);
  font-size: 14px;
  color: rgba(240, 235, 226, 0.55);
  line-height: 1.7;
}

.hn-adv__cta-block {
  text-align: center;
  padding: 48px;
  border: 1px solid rgba(200, 169, 126, 0.15);
  background: rgba(200, 169, 126, 0.03);
  margin-top: 16px;
}

.hn-adv__cta-label {
  font-family: var(--hn-font);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(240, 235, 226, 0.4);
  margin: 0 0 16px;
}

.hn-adv__cta-btn {
  display: inline-block;
  padding: 16px 40px;
  background: var(--hn-gold);
  color: var(--hn-bg);
  font-family: var(--hn-font);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.hn-adv__cta-btn:hover { opacity: 0.85; }

.hn-adv__cta-sub {
  font-family: var(--hn-font);
  font-size: 11px;
  color: rgba(240, 235, 226, 0.3);
  margin: 12px 0 0;
}
