/** Shopify CDN: Minification failed

Line 16245:13 Expected identifier but found whitespace
Line 16245:15 Expected identifier but found "%"
Line 16245:44 Unexpected "#1a1a2e"
Line 16245:52 Expected identifier but found "%"
Line 16245:69 Expected identifier but found "%"

**/
/* SHOPIFY_STYLESHEETS_VERSION: 1.0 */


/* CSS from section stylesheet tags */
/* START_SECTION:accent-line (INDEX:9) */
.accent-line {
  display: flex;
  margin-top: var(--accent-line-mt, 8px);
  margin-bottom: var(--accent-line-mb, 32px);
}
.accent-line--align-left   { justify-content: flex-start; }
.accent-line--align-center { justify-content: center; }
.accent-line--align-right  { justify-content: flex-end; }

.accent-line__bar {
  display: block;
  background: var(--accent-line-color, #51BD7A);
  border-radius: 999px;
}
.accent-line--vertical .accent-line__bar {
  width: var(--accent-line-thickness, 4px);
  height: var(--accent-line-size, 48px);
}
.accent-line--horizontal .accent-line__bar {
  height: var(--accent-line-thickness, 4px);
  width: var(--accent-line-size, 48px);
}
/* END_SECTION:accent-line */

/* START_SECTION:ai-feature-grid (INDEX:16) */
.ai-feature-grid {
  background: var(--color-base-background, #fff);
  padding-top: var(--ai-fg-pt, 0);
  padding-bottom: var(--ai-fg-pb, 72px);
}
.ai-feature-grid__container {
  background: var(--ai-fg-bg, #f5f5f5);
  border-radius: 1.5rem;
  padding: 3rem 2rem;
}
.ai-feature-grid__head {
  text-align: center;
  margin-bottom: 2rem;
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
}
.ai-feature-grid__heading {
  font-family: var(--font-heading-family);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  line-height: 1.15;
  margin: 0 0 0.75rem;
  color: var(--color-foreground, #1a1a2e);
}
.ai-feature-grid__description {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--color-body-text, #555);
}
.ai-feature-grid__description p { margin: 0 0 0.5rem; }

.ai-feature-grid__grid {
  display: grid;
  grid-template-columns: repeat(var(--ai-fg-cols, 3), 1fr);
  gap: 1.25rem;
}

.ai-feature-grid__card {
  background: var(--ai-fg-card-bg, #fff);
  border-radius: 1rem;
  padding: 1.75rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  box-shadow: 0 1px 2px rgba(0,0,0,0.04);
}
.ai-feature-grid__card-icon {
  display: inline-flex;
  width: 28px;
  height: 28px;
  color: var(--ai-fg-icon, #51BD7A);
}
.ai-feature-grid__card-icon svg { width: 100%; height: 100%; display: block; }
.ai-feature-grid__card-heading {
  font-family: var(--font-heading-family);
  font-size: 1.0625rem;
  font-weight: 700;
  margin: 0;
  color: var(--color-foreground, #1a1a2e);
}
.ai-feature-grid__card-text {
  font-size: 0.875rem;
  line-height: 1.55;
  color: var(--color-body-text, #555);
}
.ai-feature-grid__card-text p { margin: 0; }
.ai-feature-grid__card-text strong { color: var(--color-foreground, #1a1a2e); }

.ai-feature-grid__cta {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
}
.ai-feature-grid__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.75rem;
  border-radius: 999px;
  font-size: 0.9375rem;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease, transform 0.15s ease;
}
.ai-feature-grid__btn--outline {
  background: transparent;
  color: var(--ai-fg-cta, #51BD7A);
  border: 1.5px solid var(--ai-fg-cta, #51BD7A);
}
.ai-feature-grid__btn--outline:hover {
  background: var(--ai-fg-cta, #51BD7A);
  color: #fff;
  transform: translateY(-1px);
}
.ai-feature-grid__btn--solid {
  background: var(--ai-fg-cta, #51BD7A);
  color: #fff;
}
.ai-feature-grid__btn--solid:hover {
  filter: brightness(0.92);
  transform: translateY(-1px);
}

@media (max-width: 990px) {
  .ai-feature-grid__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 540px) {
  .ai-feature-grid__container { padding: 2rem 1.25rem; }
  .ai-feature-grid__grid { grid-template-columns: 1fr; }
}
/* END_SECTION:ai-feature-grid */

/* START_SECTION:ai-open-api (INDEX:17) */
.ai-open-api {
  background: var(--color-base-background, #fff);
  padding: 4rem 0;
}
.ai-open-api__container {
  background: var(--ai-oa-bg, #f5f5f5);
  border-radius: 1.5rem;
  padding: 3rem 2.5rem;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.ai-open-api--media-left  .ai-open-api__media { order: 0; }
.ai-open-api--media-left  .ai-open-api__text  { order: 1; }
.ai-open-api--media-right .ai-open-api__media { order: 1; }
.ai-open-api--media-right .ai-open-api__text  { order: 0; }

/* Cards */
.ai-open-api__cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.ai-open-api__card {
  background: var(--ai-oa-card-bg, #fff);
  border-radius: 1rem;
  padding: 1.5rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  min-height: 200px;
}
.ai-open-api__card-icon {
  display: inline-flex;
  width: 32px;
  height: 32px;
  color: var(--ai-oa-accent, #51BD7A);
}
.ai-open-api__card-icon svg { width: 100%; height: 100%; display: block; }
.ai-open-api__card-heading {
  font-family: var(--font-heading-family);
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-foreground, #1a1a2e);
  margin: 0;
}
.ai-open-api__card-text {
  font-size: 0.8125rem;
  line-height: 1.5;
  color: var(--color-body-text, #555);
  margin: 0;
}
.ai-open-api__card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--ai-oa-accent, #51BD7A);
  text-decoration: none;
  margin-top: auto;
}
.ai-open-api__card-link svg { transition: transform 0.2s ease; }
.ai-open-api__card-link:hover svg { transform: translateX(2px); }

/* Text */
.ai-open-api__subtitle {
  font-family: var(--font-heading-family);
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--ai-oa-subtitle, #51BD7A);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin: 0 0 0.85rem;
}
.ai-open-api__heading {
  font-family: var(--font-heading-family);
  font-size: clamp(1.75rem, 3.2vw, 2.5rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--color-foreground, #1a1a2e);
  margin: 0 0 1rem;
}
.ai-open-api__description {
  font-size: 1rem;
  line-height: 1.65;
  color: var(--color-body-text, #555);
  margin: 0 0 1.5rem;
  max-width: 32rem;
}
.ai-open-api__description p { margin: 0 0 0.75rem; }
.ai-open-api__description p:last-child { margin-bottom: 0; }

/* Features list */
.ai-open-api__features {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}
.ai-open-api__feature {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
}
.ai-open-api__feature-check {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  background: var(--ai-oa-accent, #51BD7A);
  color: #fff;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
  opacity: 0.85;
}
.ai-open-api__feature-body {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.ai-open-api__feature-heading {
  font-weight: 700;
  font-size: 0.9375rem;
  color: var(--color-foreground, #1a1a2e);
}
.ai-open-api__feature-text {
  font-size: 0.875rem;
  color: var(--color-body-text, #555);
  line-height: 1.5;
}

@media (max-width: 990px) {
  .ai-open-api__container {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 2rem 1.25rem;
  }
  .ai-open-api--media-left .ai-open-api__text,
  .ai-open-api--media-right .ai-open-api__text  { order: 0; }
  .ai-open-api--media-left .ai-open-api__media,
  .ai-open-api--media-right .ai-open-api__media { order: 1; }
}
@media (max-width: 540px) {
  .ai-open-api__cards { grid-template-columns: 1fr; }
}
/* END_SECTION:ai-open-api */

/* START_SECTION:ai-page-styles (INDEX:18) */
/* ═════════════════════════════════════════════════════════════════
   AI ROBOTICS — match Slideshow homepage typography on AI Tech 1
   Targets the image-with-text section with id "image_with_text_rNad94"
   ═════════════════════════════════════════════════════════════════ */

/* Subheading "NANOLEAF WITH AI" — slideshow .tag_text style */
[id$="image_with_text_rNad94"] .banner__subheading {
  color: #51BD7A;
  font-weight: 600;
  letter-spacing: 2.4px;
}
[id$="image_with_text_rNad94"] .banner__subheading em {
  font-style: normal;
}
[id$="image_with_text_rNad94"] h2 {
  font-size: 92px;
}
[id$="image_with_text_rNad94"] .leading-normal p {
  font-weight: 500;
  font-size: 20px;
  max-width: 620px;
}
@media screen and (max-width: 1440px) {
  [id$="image_with_text_rNad94"] h2 {
    font-size: 72px;
  }
}
@media screen and (max-width: 1199px) {
  [id$="image_with_text_rNad94"] h2 {
    font-size: 56px;
  }
  [id$="image_with_text_rNad94"] .leading-normal p {
    font-size: 18px;
  }
}
@media screen and (max-width: 767px) {
  [id$="image_with_text_rNad94"] h2 {
    font-size: 46px;
  }
  [id$="image_with_text_rNad94"] .leading-normal p {
    font-size: 16px;
  }
}

/* Heading + description — INHERIT theme defaults so this matches the
   about-us page hero (which uses heading_size "title-lg tracking-heading"
   and text_size "subtext-md" with no extra overrides). The previous
   slideshow-style overrides have been removed per client request. */

/* CTA button — slideshow .button.green-button style.
   Override: (a) the fill-circle animation that paints the button white on
   hover, and (b) the .button--primary:hover rule that flips text color to
   the bg color (which would make white text disappear on the white fill). */
[id$="image_with_text_rNad94"] .button,
[id$="image_with_text_rNad94"] .button:hover,
[id$="image_with_text_rNad94"] .button:focus,
[id$="image_with_text_rNad94"] .button:active {
  min-width: 180px;
  padding: 20px 32px;
  font-size: 18px;
  font-weight: 800;
  line-height: 18px;
  border-radius: 999px;
  transition: all 0.35s;
}
[id$="image_with_text_rNad94"] .button:hover {
  background: #45a468;
  color: #FFF !important;
}

/* ═════════════════════════════════════════════════════════════════
   AI ROBOTICS COLLECTION — Soft Launch: AI Products 3
   Bumps the collection-spotlights typography to match AI Products 4A
   (image-with-text using title-md heading + subtext-md body)
   ═════════════════════════════════════════════════════════════════ */
[id$="collection_spotlights_axgr83"] .cl-spotlights {
  padding-block: 72px !important;
}
[id$="collection_spotlights_axgr83"] .cl-spotlights__container {
  gap: 4rem !important;
  max-width: 1200px;
}
[id$="collection_spotlights_axgr83"] .cl-spotlights__row {
  gap: 4rem !important;
  align-items: center;
}
[id$="collection_spotlights_axgr83"] .cl-spotlights__content {
  padding: 0 !important;
}
[id$="collection_spotlights_axgr83"] .cl-spotlights__eyebrow {
  font-size: 14px !important;
  font-weight: 700 !important;
  letter-spacing: 0.08em !important;
  margin-block-end: 20px !important;
  color: #51BD7A !important;
}
/* Match exactly the typographic feel of AI Products 4A heading
   ("Robotic Innovation" → image-with-text + theme `title-md`).
   Bumped meaningfully up so it reads at parity. */
[id$="collection_spotlights_axgr83"] .cl-spotlights__heading {
  font-family: var(--font-heading-family) !important;
  font-size: clamp(2.25rem, 5vw, 3.5rem) !important;
  font-weight: 700 !important;
  line-height: 1.1 !important;
  letter-spacing: -0.025em !important;
  margin: 0 0 24px !important;
  color: #2D2F30 !important;
}
/* Match the body text size of AI Products 4A description (subtext-md
   max 32px → ~17–20px in practice with line-height 1.55). */
[id$="collection_spotlights_axgr83"] .cl-spotlights__body,
[id$="collection_spotlights_axgr83"] .cl-spotlights__body p {
  font-size: clamp(1.0625rem, 1.5vw, 1.25rem) !important;
  line-height: 1.55 !important;
  color: #2D2F30 !important;
  font-weight: 500 !important;
  margin: 0 0 1rem !important;
  max-width: 36rem;
}
[id$="collection_spotlights_axgr83"] .cl-spotlights__cta {
  margin-top: 8px;
}
@media (max-width: 749px) {
  [id$="collection_spotlights_axgr83"] .cl-spotlights {
    padding-block: 40px !important;
  }
  [id$="collection_spotlights_axgr83"] .cl-spotlights__row {
    gap: 1.75rem !important;
  }
  [id$="collection_spotlights_axgr83"] .cl-spotlights__heading {
    font-size: 1.625rem !important;
  }
  [id$="collection_spotlights_axgr83"] .cl-spotlights__body,
  [id$="collection_spotlights_axgr83"] .cl-spotlights__body p {
    font-size: 1rem !important;
    line-height: 1.55 !important;
  }
}

/* ═════════════════════════════════════════════════════════════════
   Newsletter (Sign up to get notified) — center + Klaviyo spacing
   Forces both the section text wrappers AND the embedded Klaviyo form
   to be horizontally centered on every viewport. Wildcard selector on
   "klaviyo-form-*" so it works regardless of which form ID is set.
   ═════════════════════════════════════════════════════════════════ */
[id$="newsletter_fbjgCx"] .banner__content,
[id$="newsletter_fbjgCx"] .banner__box,
[id$="newsletter_fbjgCx"] .banner__title,
[id$="newsletter_fbjgCx"] .rte,
[id$="newsletter_fbjgCx"] .rte p {
  text-align: center !important;
  margin-left: auto !important;
  margin-right: auto !important;
}
[id$="newsletter_fbjgCx"] [class^="klaviyo-form-"],
[id$="newsletter_fbjgCx"] [class*=" klaviyo-form-"] {
  display: block !important;
  margin-left: auto !important;
  margin-right: auto !important;
  text-align: center !important;
  max-width: 560px;
}
[id$="newsletter_fbjgCx"] [class^="klaviyo-form-"] form,
[id$="newsletter_fbjgCx"] [class*=" klaviyo-form-"] form,
[id$="newsletter_fbjgCx"] [class^="klaviyo-form-"] form > div,
[id$="newsletter_fbjgCx"] [class*=" klaviyo-form-"] form > div,
[id$="newsletter_fbjgCx"] [class^="klaviyo-form-"] .needsclick,
[id$="newsletter_fbjgCx"] [class*=" klaviyo-form-"] .needsclick {
  margin-left: auto !important;
  margin-right: auto !important;
  text-align: center !important;
  align-items: center !important;
  justify-content: center !important;
}

/* Spacing between Klaviyo checkbox rows + between form rows */
[id$="newsletter_fbjgCx"] [class^="klaviyo-form-"] form > * + *,
[id$="newsletter_fbjgCx"] [class*=" klaviyo-form-"] form > * + *,
[id$="newsletter_fbjgCx"] [class^="klaviyo-form-"] [data-testid="form-row"] + [data-testid="form-row"],
[id$="newsletter_fbjgCx"] [class*=" klaviyo-form-"] [data-testid="form-row"] + [data-testid="form-row"] {
  margin-top: 1.5rem !important;
}
[id$="newsletter_fbjgCx"] [class^="klaviyo-form-"] input[type="checkbox"] + label,
[id$="newsletter_fbjgCx"] [class*=" klaviyo-form-"] input[type="checkbox"] + label,
[id$="newsletter_fbjgCx"] [class^="klaviyo-form-"] label > input[type="checkbox"] {
  margin-right: 14px !important;
}
[id$="newsletter_fbjgCx"] [class^="klaviyo-form-"] label:has(input[type="checkbox"]),
[id$="newsletter_fbjgCx"] [class*=" klaviyo-form-"] label:has(input[type="checkbox"]) {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 1rem;
  line-height: 1.45;
  text-align: left;
}
/* END_SECTION:ai-page-styles */

/* START_SECTION:ai-section-title (INDEX:19) */
.ai-section-title {
  padding-top: var(--ai-st-pt, 72px);
  padding-bottom: var(--ai-st-pb, 16px);
}
.ai-section-title__inner {
  display: flex;
  flex-direction: column;
}
.ai-section-title__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.ai-section-title--align-left   .ai-section-title__inner { align-items: flex-start; }
.ai-section-title--align-center .ai-section-title__inner { align-items: center; }
.ai-section-title--align-center .ai-section-title__head  { justify-content: center; }
.ai-section-title--align-right  .ai-section-title__inner { align-items: flex-end; }
.ai-section-title--align-right  .ai-section-title__head  { justify-content: flex-end; }

.ai-section-title__heading {
  font-family: var(--font-heading-family);
  font-size: clamp(3rem, 4vw, 4rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.025em;
  color: var(--color-foreground, #1a1a2e);
  margin: 0;
}
.ai-section-title__view-all {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--ai-st-accent, #51BD7A);
  text-decoration: none;
}
.ai-section-title__view-all:hover { text-decoration: underline; }

.ai-section-title__line {
  display: block;
  width: var(--ai-st-line-width, 48px);
  height: var(--ai-st-line-thickness, 4px);
  background: var(--ai-st-accent, #51BD7A);
  border-radius: 999px;
  margin-top: var(--ai-st-line-gap, 8px);
}

@media (max-width: 749px) {
  .ai-section-title__heading { font-size: 1.875rem; }
}
/* END_SECTION:ai-section-title */

/* START_SECTION:benefits-strip (INDEX:22) */
/* ── HP Benefits Strip ── */
.benefits-strip {
  width: 100%;
}

.benefits-strip__inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: var(--space-xl);
  padding: var(--space-sm) var(--space-md);
  background: var(--color-surface-alt);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.benefits-strip__inner::-webkit-scrollbar { display: none; }

.benefits-strip__item {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  flex-shrink: 0;
  white-space: nowrap;
}

.benefits-strip__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text);
  opacity: 0.7;
}

.benefits-strip__text {
  font-size: var(--font-size-sm);
  font-weight: 500;
  color: var(--color-text);
  letter-spacing: 0.01em;
}

@media (min-width: 768px) {
  .benefits-strip__inner {
    justify-content: center;
    gap: var(--space-3xl);
    overflow-x: visible;
  }
}
/* END_SECTION:benefits-strip */

/* START_SECTION:best-sellers (INDEX:23) */
/* ── HP Best Sellers ── */
.hp-bestsellers {
  width: 100%;
  max-width: 72rem;
  margin: 0 auto;
  padding: 2.5rem var(--space-md);
  overflow: hidden;
}

.hp-bestsellers__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--space-xl);
}

.hp-bestsellers__title {
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  font-weight: 600;
  letter-spacing: var(--tracking-tight);
  color: var(--color-text);
  margin: 0;
}

.hp-bestsellers__view-all {
  display: inline-flex;
  align-items: center;
  gap: 0.35em;
  font-size: var(--font-size-sm);
  font-weight: 600;
  text-decoration: none;
  color: var(--color-text);
  transition: opacity 0.2s ease;
}

.hp-bestsellers__view-all:hover { opacity: 0.7; }

/* Desktop scroll */
.hp-bestsellers__scroll-wrap {
  position: relative;
}

/* ── Gradient fades ── */
.hp-bestsellers__fade {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 3rem;
  z-index: 2;
  pointer-events: none;
  transition: opacity 0.25s ease;
}
.hp-bestsellers__fade--left {
  left: 0;
  background: linear-gradient(to right, var(--section-bg, #fff), transparent);
}
.hp-bestsellers__fade--right {
  right: 0;
  background: linear-gradient(to left, var(--section-bg, #fff), transparent);
}

.hp-bestsellers__track {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 0.5rem;
}

.hp-bestsellers__track::-webkit-scrollbar { display: none; }

.hp-bestsellers__item {
  flex: 0 0 auto;
  scroll-snap-align: start;
}

.hp-bestsellers__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(0,0,0,0.12);
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: box-shadow 0.2s ease, opacity 0.2s ease;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.hp-bestsellers__arrow:hover {
  box-shadow: 0 4px 16px rgba(0,0,0,0.12);
}

.hp-bestsellers__arrow--prev { left: -0.75rem; }
.hp-bestsellers__arrow--next { right: -0.75rem; }

.hp-bestsellers__arrow:disabled {
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
}

/* Mobile grid */
.hp-bestsellers__grid {
  display: none;
}

.hp-bestsellers__footer {
  text-align: center;
  margin-top: var(--space-xl);
}

/* Desktop: show scroll, hide grid */
@media (min-width: 768px) {
  .hp-bestsellers__view-all--mobile { display: none; }
  .hp-bestsellers__grid { display: none; }
  .hp-bestsellers__scroll-wrap { display: block; }
}

/* Mobile: show grid, hide scroll */
@media (max-width: 767px) {
  .hp-bestsellers__scroll-wrap { display: none; }
  .hp-bestsellers__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }
  .hp-bestsellers__view-all--desktop { display: none; }
  .hp-bestsellers__footer { display: block; }
  .hp-bestsellers__arrow { display: none; }
}
/* END_SECTION:best-sellers */

/* START_SECTION:brand-segment (INDEX:36) */
/* ── Brand Segment Bar ── */
.nf-brand-bar { background: #ffffff; border-bottom: 1px solid #eaeaea; font-family: inherit; }
.nf-brand-bar--desktop { display: none; }
.nf-brand-bar--mobile { display: block; }
.nf-brand-bar__inner { max-width: 1280px; margin: 0 auto; display: flex; align-items: center; padding: 0 2rem; height: 28px; }
.nf-brand-bar__tabs { display: flex; align-items: center; gap: 0; height: 100%; }
.nf-brand-bar__tab:first-child { padding-left: 0; }
.nf-brand-bar__tab {
  display: flex; align-items: center; height: 100%; padding: 0 10px;
  background: none; border: none; cursor: pointer; font-family: inherit;
  color: #aaa; font-size: 11px; letter-spacing: 0.02em;
  transition: color 0.15s ease;
  position: relative; white-space: nowrap; text-decoration: none;
}
.nf-brand-bar__tab:hover { color: #666; }
.nf-brand-bar__tab--active { color: #1a1a2e; font-weight: 600; }
.nf-brand-bar__tab--active::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 1.5px; background: #1a1a2e; border-radius: 1px 1px 0 0;
}
.nf-brand-bar__tab-segment { /* inherits from tab */ }
.nf-brand-bar__divider { width: 1px; height: 11px; background: #ddd; flex-shrink: 0; }
.nf-brand-bar__social { margin-left: auto; display: flex; align-items: center; gap: 12px; }
.nf-brand-bar__social-link { color: #bbb; display: flex; align-items: center; transition: color 0.15s ease; }
.nf-brand-bar__social-link:hover { color: #555; }

.nf-brand-bar--mobile .nf-brand-bar__inner { padding: 0 1rem; height: 26px; }
.nf-brand-bar--mobile .nf-brand-bar__tab { padding: 0 8px; font-size: 10px; }

@media (min-width: 768px) {
  .nf-brand-bar--desktop { display: block; }
  .nf-brand-bar--mobile { display: none; }
}

/* ── Segment nav containers ── */
.nf-segment-nav[hidden], .nf-segment-right-nav[hidden], .nf-segment-mega[hidden], .nf-segment-mobile-menu[hidden] { display: none !important; }
.nf-segment-nav { display: flex; }
.nf-segment-right-nav { display: flex; align-items: center; gap: 0; }
.nf-segment-mobile-menu { display: contents; }
/* END_SECTION:brand-segment */

/* START_SECTION:bundler-blocks (INDEX:38) */
/* ═══════════════════════════════════════
   BUNDLER BLOCKS — BYOB Section
   Nanoleaf Design System
   ═══════════════════════════════════════ */

:root {
  --bb-dark: #1a1a2e;
  --bb-green: #51BD7A;
  --bb-green-light: #e8f5e7;
  --bb-surface: #f5f4f0;
  --bb-border: #e5e5e5;
  --bb-radius: 12px;
  --bb-pill: 999px;
  --bb-shadow: 0 1px 3px rgba(0,0,0,0.08);
  --bb-shadow-lg: 0 4px 16px rgba(0,0,0,0.10);
}

.bb {
  display: block;
  font-family: var(--font-body-family);
  color: var(--bb-dark);
  background: #fff;
}

/* ── Section reset: hero flush to header ── */
.bundler-blocks-section {
  margin-top: 0 !important;
  padding-top: 0 !important;
}

/* ── Hero (dark surface) ── */
.bb__hero-wrap {
  background: var(--bb-dark);
  margin-bottom: 2.5rem;
}
.bb__hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 3.5rem 2rem 3rem;
}
.bb__hero-content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.bb__heading {
  font-size: 2.75rem;
  font-weight: 800;
  margin: 0;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: #fff;
}
.bb__subheading {
  font-size: 1.125rem;
  margin: 0;
  color: rgba(255,255,255,0.7);
  line-height: 1.55;
}
.bb__hero-tiers {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-top: 0.25rem;
}
.bb__hero-tier-pill {
  display: inline-flex;
  padding: 0.3rem 0.75rem;
  background: rgba(74,175,71,0.15);
  color: var(--bb-green);
  border-radius: var(--bb-pill);
  font-size: 0.75rem;
  font-weight: 700;
}
.bb__hero-image {
  border-radius: var(--bb-radius);
  overflow: hidden;
}
.bb__hero-image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: var(--bb-radius);
}
@media (max-width: 749px) {
  .bb__hero {
    grid-template-columns: 1fr;
    padding: 2rem 1rem 1.5rem;
    text-align: center;
  }
  .bb__heading { font-size: 1.75rem; }
  .bb__subheading { font-size: 0.9375rem; color: rgba(255,255,255,0.7); }
  .bb__hero-tiers { justify-content: center; }
  .bb__hero-image { order: -1; }
  .bb__hero-wrap { margin-bottom: 1.5rem; }
}

/* ── Breadcrumb ── */
.bb__breadcrumb {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem 1rem;
}
.bb__breadcrumb ol {
  display: flex;
  gap: 0.35rem;
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 0.8125rem;
  color: #999;
}
.bb__breadcrumb li + li::before {
  content: '›';
  margin-right: 0.35rem;
}
.bb__breadcrumb a {
  color: #666;
  text-decoration: none;
}
.bb__breadcrumb a:hover {
  color: var(--bb-dark);
  text-decoration: underline;
}
.bb__breadcrumb [aria-current="page"] {
  color: var(--bb-dark);
  font-weight: 600;
}
@media (max-width: 749px) {
  .bb__breadcrumb { padding: 0 1rem 0.75rem; }
}

/* ── Two-column layout ── */
.bb__layout {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem 3rem;
  align-items: start;
}
@media (max-width: 999px) {
  .bb__layout {
    grid-template-columns: 1fr;
    padding: 0 1rem 2rem;
  }
}

/* ── Steps ── */
.bb__step {
  margin-bottom: 2rem;
}
.bb__step-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.5rem;
}
.bb__step-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  background: var(--bb-dark);
  color: #fff;
  border-radius: 50%;
  font-size: 0.875rem;
  font-weight: 700;
  flex-shrink: 0;
}
.bb__step-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin: 0;
  color: var(--bb-dark);
}
.bb__step-note {
  font-size: 0.8125rem;
  color: #777;
  margin: 0 0 0.75rem 2.75rem;
  line-height: 1.5;
}
.bb__step-link {
  color: var(--bb-green);
  text-decoration: underline;
  font-weight: 600;
}
.bb__step-body {
  margin-left: 2.75rem;
}

/* ── Inline PSU Helper ── */
.bb__psu-helper {
  margin: 0 0 1rem 2.75rem;
}
.bb__psu-helper-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.5rem 1rem;
  border-radius: var(--bb-pill);
  background: var(--bb-surface);
  border: 1px solid var(--bb-border);
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--bb-dark);
  cursor: pointer;
  list-style: none;
  transition: border-color 0.15s;
}
.bb__psu-helper-toggle::-webkit-details-marker { display: none; }
.bb__psu-helper-toggle:hover { border-color: var(--bb-dark); }
.bb__psu-helper[open] .bb__psu-helper-toggle {
  border-color: var(--bb-green);
  color: var(--bb-green);
}
.bb__psu-helper-body {
  margin-top: 0.75rem;
  padding: 1.25rem;
  border-radius: var(--bb-radius);
  background: var(--bb-surface);
  border: 1px solid var(--bb-border);
}
.bb__psu-helper-label {
  font-size: 0.8125rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  display: block;
  color: var(--bb-dark);
}
.bb__psu-helper-input-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}
.bb__psu-helper-input {
  width: 80px;
  padding: 0.5rem 0.75rem;
  border-radius: var(--bb-radius);
  border: 1px solid var(--bb-border);
  font-size: 0.875rem;
  font-family: inherit;
  text-align: center;
}
.bb__psu-helper-input:focus {
  outline: none;
  border-color: var(--bb-green);
  box-shadow: 0 0 0 2px rgba(74,175,71,0.15);
}
.bb__psu-helper-unit {
  font-size: 0.8125rem;
  color: #777;
}
.bb__psu-helper-result {
  padding: 0.625rem 1rem;
  border-radius: var(--bb-radius);
  background: #fff;
  border: 1px solid var(--bb-border);
  font-size: 0.875rem;
  color: var(--bb-dark);
  margin-bottom: 0.5rem;
}
.bb__psu-helper-result strong {
  color: var(--bb-green);
  font-size: 1.125rem;
}
.bb__psu-helper-note {
  font-size: 0.75rem;
  color: #999;
  margin: 0 0 0.75rem;
}
.bb__psu-helper-link {
  font-size: 0.8125rem;
  color: var(--bb-green);
  font-weight: 600;
  text-decoration: none;
}
.bb__psu-helper-link:hover { text-decoration: underline; }

@media (max-width: 749px) {
  .bb__step-body { margin-left: 0; }
  .bb__step-note { margin-left: 0; }
  .bb__psu-helper { margin-left: 0; }
}

/* ── Mode Switcher ── */
.bb__mode-switcher {
  max-width: 1200px;
  margin: 0 auto 2rem;
  padding: 0 2rem;
}
.bb__mode-switcher-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.bb__mode-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  border-radius: var(--bb-radius);
  border: 2px solid var(--bb-border);
  background: #fff;
  cursor: pointer;
  transition: border-color 0.2s, box-shadow 0.2s;
  text-align: left;
  font-family: inherit;
}
.bb__mode-card:hover {
  border-color: #999;
}
.bb__mode-card.is-active {
  border-color: var(--bb-dark);
  box-shadow: 0 0 0 1px var(--bb-dark);
}
.bb__mode-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-card);
  background: var(--bb-surface);
  display: flex;
  align-items: center;
  justify-content: center;
}
.bb__mode-card.is-active .bb__mode-icon {
  background: var(--bb-dark);
  color: #fff;
}
.bb__mode-icon svg { color: inherit; }
.bb__mode-text { flex: 1; }
.bb__mode-title {
  font-size: 1rem;
  font-weight: 700;
  margin: 0 0 0.25rem;
  color: var(--bb-dark);
}
.bb__mode-desc {
  font-size: 0.8125rem;
  margin: 0;
  color: #666;
  line-height: 1.45;
}
@media (max-width: 749px) {
  .bb__mode-switcher { padding: 0 1rem; }
  .bb__mode-switcher-inner { grid-template-columns: 1fr; }
}

/* ── Kits grid ── */
.bb__kits {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem 4rem;
}
.bb__kits-header {
  margin-bottom: 1.5rem;
}
.bb__kits-filters {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}
.bb__filter-pill {
  padding: 0.375rem 1rem;
  border-radius: var(--bb-pill);
  border: 1px solid var(--bb-border);
  background: #fff;
  font-size: 0.8125rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.15s;
  font-family: inherit;
  color: var(--bb-dark);
}
.bb__filter-pill:hover { border-color: #999; }
.bb__filter-pill.is-active {
  background: var(--bb-dark);
  color: #fff;
  border-color: var(--bb-dark);
}
.bb__kits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.bb__kit-card {
  border-radius: var(--bb-radius);
  border: 1px solid var(--bb-border);
  background: #fff;
  overflow: hidden;
  transition: box-shadow 0.2s, transform 0.2s;
}
.bb__kit-card:hover {
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
  transform: translateY(-2px);
}
.bb__kit-card-img {
  display: block;
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--bb-surface);
}
.bb__kit-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  mix-blend-mode: multiply;
}
.bb__kit-card-body {
  padding: 1rem;
}
.bb__kit-card-title {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--bb-dark);
  text-decoration: none;
  display: block;
  margin-bottom: 0.375rem;
  line-height: 1.35;
}
.bb__kit-card-title:hover { text-decoration: underline; text-underline-offset: 2px; }
.bb__kit-card-pricing {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}
.bb__kit-card-price {
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--bb-dark);
}
.bb__kit-card-compare {
  font-size: 0.8125rem;
  color: #999;
  text-decoration: line-through;
}
.bb__kit-card-actions {
  display: flex;
  gap: 0.5rem;
}
.bb__kit-qv-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.5rem 0.75rem;
  border-radius: var(--bb-pill);
  border: 1px solid var(--bb-border);
  background: #fff;
  font-size: 0.75rem;
  font-weight: 500;
  cursor: pointer;
  transition: border-color 0.15s;
  font-family: inherit;
  color: var(--bb-dark);
}
.bb__kit-qv-btn:hover { border-color: var(--bb-dark); }
.bb__kit-atc-btn {
  flex: 1;
  padding: 0.5rem 0.75rem;
  border-radius: var(--bb-pill);
  border: none;
  background: var(--bb-dark);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 600;
  cursor: pointer;
  transition: opacity 0.15s;
  font-family: inherit;
}
.bb__kit-atc-btn:hover { opacity: 0.85; }
.bb__kit-atc-btn.is-added { background: var(--bb-green); }
.bb__kit-sold-out {
  flex: 1;
  padding: 0.5rem 0.75rem;
  border-radius: var(--bb-pill);
  border: 1px solid var(--bb-border);
  background: var(--bb-surface);
  color: #999;
  font-size: 0.75rem;
  font-weight: 500;
  text-align: center;
}
@media (max-width: 749px) {
  .bb__kits { padding: 0 1rem; }
  .bb__kits-grid { grid-template-columns: repeat(2, 1fr); gap: 0.75rem; }
  .bb__kit-card-actions { flex-direction: column; }
}

/* ── Product grid ── */
.bb__product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(175px, 1fr));
  gap: 0.75rem;
}
.bb__product-grid--accessories {
  grid-template-columns: repeat(auto-fill, minmax(175px, 1fr));
}
@media (max-width: 749px) {
  .bb__product-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.625rem;
  }
}

/* ── Product card ── */
.bb__card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--bb-border);
  border-radius: var(--bb-radius);
  overflow: hidden;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.bb__card.is-selected {
  border-color: var(--bb-green);
  box-shadow: 0 0 0 2px var(--bb-green);
}
.bb__card-img {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: var(--bb-surface);
}
.bb__card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.bb__badge {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  padding: 0.125rem 0.5rem;
  border-radius: var(--bb-pill);
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  color: #fff;
  line-height: 1.4;
}
.bb__badge--sale { background: #e63946; }
.bb__badge--sold-out { background: #ef4444; }
.bb__card-body {
  padding: 0.625rem 0.75rem 0.375rem;
  flex: 1;
}
.bb__card-title {
  font-size: 0.8125rem;
  font-weight: 600;
  margin: 0 0 0.125rem;
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.bb__card-price {
  font-size: 0.875rem;
  font-weight: 700;
  margin: 0;
  color: var(--bb-dark);
}

/* ── Variant dropdown ── */
.bb__variant-select {
  margin-top: 0.375rem;
}
.bb__variant-label {
  font-size: 0.6875rem;
  color: #999;
  display: block;
  margin-bottom: 0.15rem;
}
.bb__variant-dropdown {
  width: 100%;
  padding: 0.3rem 0.5rem;
  border: 1px solid var(--bb-border);
  border-radius: 8px;
  font-size: 0.75rem;
  font-family: inherit;
  color: var(--bb-dark);
  background: #fff;
  cursor: pointer;
}

/* ── Card actions ── */
.bb__card-actions {
  padding: 0 0.75rem 0.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
}
.bb__add-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
  width: 100%;
  padding: 0.5rem 0;
  background: var(--bb-dark);
  color: #fff;
  border: none;
  border-radius: var(--radius-button);
  font-size: 0.75rem;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
}
.bb__add-btn:hover {
  background: var(--bb-green);
  transform: scale(1.03);
}
.bb__qty {
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #ddd;
  border-radius: 8px;
  overflow: hidden;
}
.bb__qty button {
  width: 2.25rem;
  height: 2.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  font-size: 1rem;
  font-family: inherit;
  cursor: pointer;
  color: var(--bb-dark);
  transition: background 0.15s;
}
.bb__qty button:hover { background: var(--bb-surface); }
.bb__qty span {
  width: 2rem;
  text-align: center;
  font-size: 0.8125rem;
  font-weight: 600;
}
.bb__sold-out-label {
  display: block;
  text-align: center;
  font-size: 0.75rem;
  color: #999;
  font-weight: 600;
}
.bb__empty {
  text-align: center;
  padding: 2rem 1rem;
  color: #999;
}

/* ── Sidebar & Summary ── */
.bb__sidebar {
  position: sticky;
  top: 1.5rem;
  align-self: start;
}
@media (max-width: 999px) {
  .bb__sidebar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    top: auto;
    z-index: 90;
    padding: 0;
  }
  .bb__summary {
    border-radius: 16px 16px 0 0 !important;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.12) !important;
    max-height: 60vh;
    overflow-y: auto;
  }
}
@media (min-width: 1000px) {
  .bb__summary {
    max-height: none;
    overflow-y: visible;
  }
}

.bb__summary {
  background: #fff;
  border: 1px solid var(--bb-border);
  border-radius: var(--bb-radius);
  box-shadow: var(--bb-shadow-lg);
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: transform 0.3s ease;
}
.bb__summary-title {
  font-size: 1rem;
  font-weight: 700;
  margin: 0;
  color: var(--bb-dark);
}

/* ── Tier buttons in summary ── */
.bb__tier-progress {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
}
.bb__tier-btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.5rem 0.75rem;
  background: var(--bb-surface);
  border: 2px solid transparent;
  border-radius: var(--radius-card);
  cursor: pointer;
  font-family: inherit;
  transition: border-color 0.2s, background 0.2s;
}
.bb__tier-btn:hover {
  border-color: var(--bb-border);
}
.bb__tier-btn.is-active {
  border-color: var(--bb-dark);
}
.bb__tier-btn.is-reached {
  border-color: var(--bb-green);
  background: var(--bb-green-light);
}
.bb__tier-label {
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--bb-dark);
}
.bb__tier-meta {
  font-size: 0.6875rem;
  color: #777;
}
.bb__tier-check {
  display: none;
  width: 20px;
  height: 20px;
  background: var(--bb-green);
  color: #fff;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.bb__tier-btn.is-reached .bb__tier-check {
  display: flex;
}

/* ── Progress bar ── */
.bb__progress-wrap {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.bb__progress-bar {
  height: 6px;
  background: var(--bb-surface);
  border-radius: 3px;
  overflow: hidden;
}
.bb__progress-fill {
  height: 100%;
  background: var(--bb-green);
  border-radius: 3px;
  transition: width 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.bb__progress-text {
  font-size: 0.6875rem;
  color: #999;
  margin: 0;
}

/* ── Summary items ── */
.bb__summary-items {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  max-height: 180px;
  overflow-y: auto;
}
.bb__summary-item {
  display: flex;
  justify-content: space-between;
  font-size: 0.75rem;
  color: #555;
  padding: 0.2rem 0;
}
.bb__summary-item-name {
  flex: 1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-right: 0.5rem;
}

/* ── Totals ── */
.bb__summary-totals {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  padding-top: 0.75rem;
  border-top: 1px solid var(--bb-border);
}
.bb__summary-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.8125rem;
  color: #555;
}
.bb__summary-row--discount .bb__summary-savings {
  color: var(--bb-green);
  font-weight: 700;
}
.bb__summary-row--total {
  font-size: 1rem;
  color: var(--bb-dark);
  font-weight: 700;
  padding-top: 0.35rem;
  border-top: 1px solid var(--bb-border);
}
.bb__summary-count {
  font-size: 0.75rem;
  color: #999;
  text-align: center;
}

/* ── Add to cart button ── */
.bb__atc-btn {
  width: 100%;
  padding: 0.875rem;
  background: var(--bb-green);
  color: #fff;
  border: none;
  border-radius: var(--bb-pill);
  font-size: 1rem;
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
  transition: background 0.2s, opacity 0.2s, transform 0.15s;
}
.bb__atc-btn:hover:not(:disabled) {
  background: #51BD7A;
  transform: scale(1.02);
}
.bb__atc-btn:disabled {
  opacity: 0.4;
  cursor: default;
}
.bb__atc-btn.is-adding {
  opacity: 0.7;
  pointer-events: none;
}
.bb__atc-btn.is-added {
  background: var(--bb-dark);
}
/* END_SECTION:bundler-blocks */

/* START_SECTION:bundler (INDEX:39) */
/* ═══════════════════════════════════════
   BUNDLER — Bundle Builder Section
   ═══════════════════════════════════════ */

.bundler {
  display: block;
  font-family: var(--font-body-family);
  color: #1a1a2e;
}

/* ── Hero ── */
.bundler__hero {
  padding: 3.5rem 1.5rem 3rem;
  text-align: center;
  color: #fff;
}
.bundler__hero-inner {
  max-width: 640px;
  margin: 0 auto;
}
.bundler__heading {
  font-size: 2.25rem;
  font-weight: 700;
  margin: 0 0 0.5rem;
  letter-spacing: -0.02em;
  line-height: 1.15;
}
.bundler__subheading {
  font-size: 1rem;
  margin: 0;
  opacity: 0.85;
  line-height: 1.5;
}
@media (max-width: 749px) {
  .bundler__hero { padding: 2.5rem 1rem 2rem; }
  .bundler__heading { font-size: 1.625rem; }
  .bundler__subheading { font-size: 0.875rem; }
}

/* ── Tier selector ── */
.bundler__tiers {
  display: flex;
  gap: 0.75rem;
  padding: 1.5rem 1.5rem 0;
  max-width: 900px;
  margin: 0 auto;
  justify-content: center;
  flex-wrap: wrap;
}
.bundler__tier {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  padding: 1rem 1.5rem;
  background: #fff;
  border: 2px solid #e5e5e5;
  border-radius: var(--radius-card);
  cursor: pointer;
  font-family: inherit;
  transition: border-color 0.2s, box-shadow 0.2s;
  min-width: 160px;
}
.bundler__tier:hover {
  border-color: #bbb;
}
.bundler__tier.is-active {
  border-color: #1a1a2e;
  box-shadow: 0 0 0 1px #1a1a2e;
}
.bundler__tier.is-reached {
  border-color: #51BD7A;
  box-shadow: 0 0 0 1px #51BD7A;
}
.bundler__tier-label {
  font-size: 0.875rem;
  font-weight: 700;
  color: #1a1a2e;
}
.bundler__tier-meta {
  font-size: 0.75rem;
  color: #71717a;
}
.bundler__tier-check {
  display: none;
  position: absolute;
  top: -8px;
  right: -8px;
  width: 24px;
  height: 24px;
  background: #51BD7A;
  color: #fff;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
}
.bundler__tier.is-reached .bundler__tier-check {
  display: flex;
}
@media (max-width: 749px) {
  .bundler__tiers { padding: 1rem; gap: 0.5rem; }
  .bundler__tier { padding: 0.75rem 1rem; min-width: 0; flex: 1; }
  .bundler__tier-label { font-size: 0.8125rem; }
}

/* ── Product grid ── */
.bundler__grid-wrap {
  max-width: 1100px;
  margin: 0 auto;
  padding: 1.5rem;
}
.bundler__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 1rem;
}
.bundler__product {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid #eee;
  border-radius: var(--radius-card);
  overflow: hidden;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.bundler__product.is-selected {
  border-color: #1a1a2e;
  box-shadow: 0 0 0 1px #1a1a2e;
}
.bundler__product-img-wrap {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: #f9f9f9;
}
.bundler__product-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.bundler__product-badge {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  padding: 0.125rem 0.5rem;
  border-radius: var(--radius-button);
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  color: #fff;
  line-height: 1.4;
}
.bundler__product-badge--sale { background: #e63946; }
.bundler__product-badge--sold-out { background: #ef4444; }
.bundler__product-info {
  padding: 0.625rem 0.75rem 0.375rem;
  flex: 1;
}
.bundler__product-title {
  font-size: 0.8125rem;
  font-weight: 600;
  margin: 0 0 0.125rem;
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.bundler__product-price {
  font-size: 0.875rem;
  font-weight: 700;
  margin: 0;
  color: #1a1a2e;
}
.bundler__product-actions {
  padding: 0 0.75rem 0.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
}
.bundler__product-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
  width: 100%;
  padding: 0.4375rem 0;
  background: #1a1a2e;
  color: #fff;
  border: none;
  border-radius: var(--radius-button);
  font-size: 0.75rem;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  transition: background 0.25s, transform 0.2s;
}
.bundler__product-toggle:hover { background: #51BD7A; transform: scale(1.04); }
.bundler__product-qty {
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #ddd;
  border-radius: 8px;
  overflow: hidden;
}
.bundler__product-qty button {
  width: 2.25rem;
  height: 2.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  font-size: 1rem;
  font-family: inherit;
  cursor: pointer;
  color: #1a1a2e;
  transition: background 0.15s;
}
.bundler__product-qty button:hover { background: #f5f5f5; }
.bundler__product-qty span {
  width: 2rem;
  text-align: center;
  font-size: 0.8125rem;
  font-weight: 600;
}
.bundler__product-sold-out {
  display: block;
  text-align: center;
  font-size: 0.75rem;
  color: #999;
  font-weight: 600;
}
.bundler__empty {
  text-align: center;
  padding: 3rem 1rem;
  color: #999;
}
@media (max-width: 749px) {
  .bundler__grid-wrap { padding: 1rem; }
  .bundler__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
  }
}

/* ── Sticky summary bar ── */
.bundler__summary {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 90;
  background: #fff;
  border-top: 1px solid #eee;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.08);
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.bundler__summary.is-visible {
  transform: translateY(0);
}
.bundler__summary[hidden] { display: none; }
.bundler__summary-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.75rem 1.5rem;
}
.bundler__summary-details {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.bundler__summary-count {
  font-size: 0.875rem;
  font-weight: 700;
}
.bundler__summary-original {
  font-size: 0.8125rem;
  color: #999;
}
.bundler__summary-total {
  font-size: 1rem;
  color: #1a1a2e;
}
.bundler__summary-savings {
  font-size: 0.75rem;
  font-weight: 600;
  color: #51BD7A;
  background: #f0fdf4;
  padding: 0.125rem 0.5rem;
  border-radius: var(--radius-button);
}
.bundler__summary-add {
  padding: 0.75rem 1.5rem;
  background: #1a1a2e;
  color: #fff;
  border: none;
  border-radius: var(--radius-button);
  font-size: 0.875rem;
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
  transition: background 0.2s, opacity 0.2s;
  white-space: nowrap;
  flex-shrink: 0;
}
.bundler__summary-add:hover { background: #2a2a2d; }
.bundler__summary-add:disabled { opacity: 0.4; cursor: default; }
.bundler__summary-add.is-adding { opacity: 0.7; pointer-events: none; }
.bundler__summary-add.is-added { background: #51BD7A; }
@media (max-width: 749px) {
  .bundler__summary-inner {
    flex-direction: column;
    padding: 0.75rem 1rem;
    gap: 0.5rem;
  }
  .bundler__summary-details { justify-content: center; gap: 0.5rem; }
  .bundler__summary-add { width: 100%; text-align: center; }
}
/* END_SECTION:bundler */

/* START_SECTION:collection-benefits (INDEX:43) */
.cl-benefits {
  padding-block: 4rem;
  overflow: hidden;
  background: var(--section-bg, #f5f5f0);
  --cl-bg: var(--section-bg, #f5f5f0);
}
.cl-benefits--dark {
  background: var(--section-bg, #141416);
  --cl-bg: var(--section-bg, #141416);
}
.cl-benefits__header {
  text-align: center;
  margin-block-end: 2.5rem;
  max-width: 72rem;
  margin-inline: auto;
}
.cl-benefits__heading {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--color-foreground, #1a1a2e);
  margin: 0;
}
.cl-benefits--dark .cl-benefits__heading { color: #f5f5f5; }
.cl-benefits__subheading {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--color-text-muted, #71717a);
  max-width: 40rem;
  margin: 0.75rem auto 0;
}
.cl-benefits--dark .cl-benefits__subheading { color: rgba(255,255,255,0.6); }

.cl-benefits__track-wrap {
  position: relative;
  max-width: 72rem;
  margin-inline: auto;
}
.cl-benefits__track {
  display: flex;
  gap: 1.25rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  max-width: 72rem;
  margin-inline: auto;
  padding: 0 1rem 1rem;
  scroll-padding-left: 1rem;
}
.cl-benefits__track::-webkit-scrollbar { display: none; }

.cl-benefits__card {
  flex: 0 0 300px;
  scroll-snap-align: start;
  border-radius: 1rem;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(0,0,0,0.06);
  transition: transform 0.25s;
}
.cl-benefits--dark .cl-benefits__card {
  background: #1e1e21;
  border-color: rgba(255,255,255,0.06);
}
/* hover removed — cards are not clickable */

.cl-benefits__card-media {
  aspect-ratio: var(--cl-benefit-ratio, 1 / 1);
  overflow: hidden;
  background: #f5f4f0;
}
.cl-benefits--dark .cl-benefits__card-media { background: #0d0d14; }
.cl-benefits__card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.cl-benefits__card-body {
  padding: 1.25rem 1.5rem 1.5rem;
}
.cl-benefits__card-number {
  display: block;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--color-text-muted, #999);
  margin-block-end: 0.25rem;
}
.cl-benefits--dark .cl-benefits__card-number { color: rgba(255,255,255,0.35); }
.cl-benefits__card-title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-foreground, #1a1a2e);
  margin: 0;
  line-height: 1.3;
}
.cl-benefits--dark .cl-benefits__card-title { color: #f5f5f5; }
.cl-benefits__card-desc {
  font-size: 0.8125rem;
  line-height: 1.5;
  color: var(--color-text-muted, #71717a);
  margin: 0.375rem 0 0;
}
.cl-benefits--dark .cl-benefits__card-desc { color: rgba(255,255,255,0.5); }

.cl-benefits__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
  transition: opacity 200ms ease, transform 200ms ease, box-shadow 200ms ease;
  color: #1a1a2e;
  padding: 0;
}
.cl-benefits--dark .cl-benefits__arrow {
  background: #1e1e21;
  border-color: rgba(255,255,255,0.15);
  color: #f5f5f5;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}
.cl-benefits__arrow:hover { transform: translateY(-50%) scale(1.08); }
.cl-benefits__arrow--prev { left: 0.5rem; }
.cl-benefits__arrow--next { right: 0.5rem; }
.cl-benefits__arrow[hidden] { display: none; }

/* ── Side fade gradients — dynamically sourced from section background ── */
.cl-benefits__fade {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 4rem;
  pointer-events: none;
  z-index: 1;
}
.cl-benefits__fade--left {
  left: 0;
  background: linear-gradient(to right, var(--cl-bg) 0%, transparent 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.cl-benefits__fade--right {
  right: 0;
  background: linear-gradient(to left, var(--cl-bg) 0%, transparent 100%);
  opacity: 1;
  transition: opacity 0.3s ease;
}

/* ── Nav dots ── */
.cl-benefits__dots {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-block-start: 1.25rem;
}
.cl-benefits__dot {
  width: 6px;
  height: 6px;
  border-radius: 9999px;
  background: var(--color-border, #deddd8);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: width 0.3s, background 0.3s;
}
.cl-benefits--dark .cl-benefits__dot {
  background: rgba(255,255,255,0.2);
}
.cl-benefits__dot.is-active {
  width: 18px;
  background: var(--color-foreground, #1a1a2e);
}
.cl-benefits--dark .cl-benefits__dot.is-active {
  background: #f5f5f5;
}

@media (max-width: 749px) {
  .cl-benefits { padding-block: 2.5rem; }
  .cl-benefits__card { flex: 0 0 75vw; max-width: 300px; }
  .cl-benefits__arrow { display: none; }
  /* No left fade on mobile — content snags to left edge */
  .cl-benefits__fade--left { display: none; }
  .cl-benefits__track { padding-left: 1rem; scroll-padding-left: 1rem; }
}
/* END_SECTION:collection-benefits */

/* START_SECTION:collection-faq (INDEX:44) */
.cl-faq {
  padding-block: 4rem;
}
.cl-faq--dark {
  background: #111118;
}
.cl-faq__container {
  max-width: 48rem;
  margin: 0 auto;
}
.cl-faq__header {
  text-align: center;
  margin-block-end: 2.5rem;
}
.cl-faq__heading {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--color-foreground, #1a1a2e);
  margin: 0;
}
.cl-faq--dark .cl-faq__heading { color: #f5f5f5; }
.cl-faq__subheading {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--color-text-muted, #71717a);
  margin: 0.75rem 0 0;
}
.cl-faq--dark .cl-faq__subheading { color: rgba(255,255,255,0.6); }

.cl-faq__accordion {
  display: flex;
  flex-direction: column;
}
.cl-faq__item {
  border-bottom: 1px solid rgba(0,0,0,0.08);
}
.cl-faq--dark .cl-faq__item {
  border-color: rgba(255,255,255,0.08);
}
.cl-faq__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 1.25rem 0;
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 600;
  text-align: left;
  color: var(--color-foreground, #1a1a2e);
  gap: 1rem;
  line-height: 1.4;
}
.cl-faq--dark .cl-faq__question { color: #f5f5f5; }
.cl-faq__chevron {
  flex-shrink: 0;
  transition: transform 0.25s ease;
  color: var(--color-text-muted, #999);
}
.cl-faq__question[aria-expanded="true"] .cl-faq__chevron {
  transform: rotate(180deg);
}
.cl-faq__answer {
  padding-block-end: 1.25rem;
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--color-text-muted, #555);
}
.cl-faq--dark .cl-faq__answer { color: rgba(255,255,255,0.65); }
.cl-faq__answer p { margin: 0 0 0.5rem; }
.cl-faq__answer p:last-child { margin-bottom: 0; }

.cl-faq__footer {
  text-align: center;
  margin-block-start: 2.5rem;
  padding-block-start: 1.5rem;
  border-top: 1px solid rgba(0,0,0,0.06);
}
.cl-faq--dark .cl-faq__footer { border-color: rgba(255,255,255,0.06); }
.cl-faq__cta-text {
  font-size: 0.875rem;
  color: var(--color-text-muted, #71717a);
  margin: 0 0 0.75rem;
}
.cl-faq__cta-link {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-foreground, #1a1a2e);
  text-decoration: none;
}
.cl-faq--dark .cl-faq__cta-link { color: #f5f5f5; }

@media (max-width: 749px) {
  .cl-faq { padding-block: 2.5rem; }
  .cl-faq__question { font-size: 0.9375rem; padding: 1rem 0; }
}
/* END_SECTION:collection-faq */

/* START_SECTION:collection-hero (INDEX:45) */
.cl-hero {
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  min-height: var(--cl-hero-desktop-h, 70vh);
}
.cl-hero__media {
  position: absolute;
  inset: 0;
}
.cl-hero__img {
  width: 100%;
  height: 125%;
  object-fit: cover;
  display: block;
  transform: translateY(0);
  will-change: transform;
}
/* Premium Nanoleaf brand-green gradient — vibrant, clearly green */
.cl-hero__gradient {
  width: 100%;
  height: 100%;
  background:
    radial-gradient(ellipse at 15% 80%, rgba(76, 175, 80, 0.55) 0%, transparent 45%),
    radial-gradient(ellipse at 85% 15%, rgba(56, 195, 80, 0.45) 0%, transparent 40%),
    radial-gradient(ellipse at 50% 50%, rgba(34, 197, 94, 0.25) 0%, transparent 55%),
    radial-gradient(circle at 70% 70%, rgba(22, 163, 74, 0.35) 0%, transparent 35%),
    radial-gradient(circle at 25% 30%, rgba(74, 222, 128, 0.15) 0%, transparent 30%),
    linear-gradient(155deg, #0b3a16 0%, #51BD7A 20%, #51BD7A 40%, #51BD7A 55%, #51BD7A 70%, #0f5a26 85%, #0a3818 100%);
}
.cl-hero__overlay {
  position: absolute;
  inset: 0;
  background: #000;
  pointer-events: none;
}
.cl-hero__content {
  position: relative;
  z-index: 2;
  padding-block: 5rem;
  display: flex;
  flex-direction: column;
  width: 100%;
}
.cl-hero__content--center {
  align-items: center;
  text-align: center;
  margin-inline: auto;
}
.cl-hero__content--left {
  align-items: flex-start;
  text-align: left;
}
.cl-hero__content--narrow { max-width: 40rem; }
.cl-hero__content--medium { max-width: 50rem; }
.cl-hero__content--wide { max-width: 64rem; }

.cl-hero__eyebrow {
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-block-end: 0.75rem;
  color: rgba(255,255,255,0.65);
}
.cl-hero__heading {
  font-size: clamp(2.25rem, 5vw, 4rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: #fff;
  margin: 0;
}
.cl-hero__subheading {
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  line-height: 1.6;
  color: rgba(255,255,255,0.8);
  max-width: 36rem;
  margin: 1rem 0 0;
}
.cl-hero__content--center .cl-hero__subheading { margin-inline: auto; }

.cl-hero__cta-wrap {
  margin-block-start: 1.5rem;
}
.cl-hero__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.625rem 1.375rem;
  font-size: 0.8125rem;
  font-weight: 600;
  border-radius: var(--radius-button);
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
  font-family: inherit;
}
.cl-hero__cta--primary {
  background: rgba(255,255,255,0.2);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.35);
}
.cl-hero__cta--primary:hover {
  background: rgba(255,255,255,0.3);
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}
.cl-hero__cta--secondary {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255,255,255,0.45);
}
.cl-hero__cta--secondary:hover {
  border-color: #fff;
  background: rgba(255,255,255,0.08);
}

/* ── Breadcrumb inside hero — matches PDP breadcrumb position ── */
.cl-hero__breadcrumb {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 3;
  padding: 14px 0;
}
.cl-hero__breadcrumb-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  padding: 0;
  margin: 0;
  list-style: none;
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.6);
  justify-content: flex-start;
}
.cl-hero__breadcrumb-item:not(:last-child)::after {
  content: '/';
  margin-inline-start: 0.5rem;
  color: rgba(255,255,255,0.35);
}
.cl-hero__breadcrumb-item a {
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  transition: color 0.2s;
}
.cl-hero__breadcrumb-item a:hover {
  color: #fff;
}
.cl-hero__breadcrumb-item--current {
  color: rgba(255,255,255,0.85);
}

@media (max-width: 749px) {
  .cl-hero { min-height: var(--cl-hero-mobile-h, auto) !important; }
  .cl-hero__content { padding-block: 3rem; }
  .cl-hero__cta { padding: 0.5rem 1.125rem; font-size: 0.75rem; }
  .cl-hero__breadcrumb { padding: 10px 0; }
  .cl-hero__breadcrumb-list { font-size: 0.75rem; }
}
/* END_SECTION:collection-hero */

/* START_SECTION:collection-promo-splitters (INDEX:47) */
.cl-promos {
  padding-block: 1rem;
}
.cl-promos--dark {
  background: #141416;
}
.cl-promos__container {
  max-width: 72rem;
  margin: 0 auto;
}
.cl-promos__grid {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}
.cl-promos__grid--two {
  flex-direction: row;
}
.cl-promos__card {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  background: var(--color-secondary, #f5f4f0);
  border: 1px solid var(--color-border, #deddd8);
  border-radius: var(--radius-card);
  text-decoration: none;
  color: inherit;
  transition: border-color 0.15s, background 0.15s;
}
.cl-promos--dark .cl-promos__card {
  background: #1e1e21;
  border-color: rgba(255,255,255,0.08);
}
.cl-promos__card:hover {
  border-color: var(--color-foreground, #1a1a2e);
}
.cl-promos--dark .cl-promos__card:hover {
  border-color: rgba(255,255,255,0.25);
}
.cl-promos__card > svg:first-child {
  flex-shrink: 0;
  color: var(--color-foreground, #1a1a2e);
}
.cl-promos--dark .cl-promos__card > svg:first-child {
  color: #f5f5f5;
}
.cl-promos__card-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1px;
  min-width: 0;
}
.cl-promos__card-title {
  font-size: 13px;
  font-weight: 600;
  color: var(--color-foreground, #1a1a2e);
}
.cl-promos--dark .cl-promos__card-title {
  color: #f5f5f5;
}
.cl-promos__card-desc {
  font-size: 11px;
  color: var(--color-text-muted, #999);
}
.cl-promos--dark .cl-promos__card-desc {
  color: rgba(255,255,255,0.45);
}
.cl-promos__card-arrow {
  flex-shrink: 0;
  color: #bbb;
  transition: transform 0.15s;
}
.cl-promos__card:hover .cl-promos__card-arrow {
  transform: translateX(2px);
  color: var(--color-foreground, #1a1a2e);
}
.cl-promos--dark .cl-promos__card:hover .cl-promos__card-arrow {
  color: #f5f5f5;
}

@media (max-width: 749px) {
  .cl-promos__grid--two {
    flex-direction: column;
  }
}
/* END_SECTION:collection-promo-splitters */

/* START_SECTION:collection-reviews (INDEX:48) */
.cl-reviews {
  padding-block: 4rem;
  /* --section-bg set by JS (alternation or homepage init) — no hardcoded default here */
}
.cl-reviews--dark {
  background: #1e1e21;
}
.cl-reviews__container {
  max-width: 72rem;
  margin: 0 auto;
}
.cl-reviews__header {
  text-align: center;
  margin-block-end: 2.5rem;
}
.cl-reviews__heading {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--color-foreground, #1a1a2e);
  margin: 0;
}
.cl-reviews--dark .cl-reviews__heading { color: #f5f5f5; }
.cl-reviews__stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-block-end: 0.5rem;
  font-size: 0.875rem;
  color: var(--color-text-muted, #71717a);
}
.cl-reviews--dark .cl-reviews__stats { color: rgba(255,255,255,0.5); }
.cl-reviews__tp-stars {
  display: inline-flex;
  gap: 2px;
  vertical-align: middle;
  margin-inline-end: 4px;
}
.cl-reviews__loading {
  text-align: center;
  padding: 2rem;
  font-size: 0.875rem;
  color: var(--color-text-muted, #999);
}
.cl-reviews--dark .cl-reviews__loading { color: rgba(255,255,255,0.4); }

/* Dark override: card text MUST stay dark on white card bg.
   Uses !important to beat .theme-dark #main-content p global override. */
.cl-reviews--dark .cl-reviews__card { background: #fff !important; color: #1a1a2e !important; }
.cl-reviews--dark .cl-reviews__card h3,
.cl-reviews--dark .cl-reviews__card p,
.cl-reviews--dark .cl-reviews__card span,
.cl-reviews--dark .cl-reviews__card a { color: #1a1a2e !important; }
.cl-reviews--dark .cl-reviews__card-title { color: #1a1a2e !important; }
.cl-reviews--dark .cl-reviews__card-quote { color: #444 !important; }
.cl-reviews--dark .cl-reviews__card-author-name { color: #1a1a2e !important; }
.cl-reviews--dark .cl-reviews__card-verified { color: #111 !important; }
.cl-reviews--dark .cl-reviews__card-verified svg { color: #111 !important; }
.cl-reviews--dark .cl-reviews__card-date { color: #999 !important; }
.cl-reviews--dark .cl-reviews__card-footer { border-color: #f0f0f0 !important; }
.cl-reviews--dark .cl-reviews__card-stars svg polygon { fill: #f59e0b; }
.cl-reviews--dark .cl-reviews__show-more { color: #f5f5f5; border-color: rgba(255,255,255,0.3); }
.cl-reviews--dark .cl-reviews__show-more:hover { background: rgba(255,255,255,0.08); }

/* ── Masonry layout — identical to PDP ── */
.cl-reviews__masonry-wrap {
  position: relative;
}
.cl-reviews__masonry {
  columns: 3;
  column-gap: 1rem;
}
.cl-reviews__blur-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 120px;
  background: linear-gradient(to bottom, var(--section-bg-transparent, rgba(240,239,234,0)) 0%, var(--section-bg-semi, rgba(240,239,234,0.7)) 40%, var(--section-bg, #f0efea) 100%);
  pointer-events: none;
  z-index: 2;
}
.cl-reviews--dark .cl-reviews__blur-overlay {
  background: linear-gradient(to bottom, var(--section-bg-transparent, rgba(30,30,33,0)) 0%, var(--section-bg-semi, rgba(30,30,33,0.7)) 40%, var(--section-bg, #1e1e21) 100%);
}

/* ── Review card — ALWAYS white, same as PDP ── */
.cl-reviews__card {
  break-inside: avoid;
  background: #fff;
  border: 1px solid #eee;
  border-radius: 0.75rem;
  padding: 1.25rem;
  margin-bottom: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}
.cl-reviews__card[hidden] { display: none; }
.cl-reviews__card-stars {
  display: flex;
  align-items: center;
  line-height: 1;
}
.cl-reviews__card-title {
  font-size: 0.875rem;
  font-weight: 600;
  color: #1a1a2e;
  margin: 0;
  line-height: 1.4;
}
.cl-reviews__card-quote {
  font-size: 0.8125rem;
  line-height: 1.65;
  color: #444;
  margin: 0;
}
.cl-reviews__card-footer {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  padding-top: 0.625rem;
  border-top: 1px solid #f0f0f0;
  margin-top: auto;
}
.cl-reviews__card-avatar {
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 0.6875rem;
  font-weight: 700;
  flex-shrink: 0;
  letter-spacing: 0.02em;
}
.cl-reviews__card-author-info {
  display: flex;
  flex-direction: column;
  gap: 1px;
}
.cl-reviews__card-author-name {
  font-size: 0.8125rem;
  font-weight: 600;
  color: #1a1a2e;
}
.cl-reviews__card-verified {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.6875rem;
  color: #111;
  font-weight: 500;
}
.cl-reviews__card-date {
  font-size: 0.6875rem;
  color: #999;
}

/* ── Footer ── */
.cl-reviews__footer {
  text-align: center;
  margin-top: 1.5rem;
  position: relative;
  z-index: 3;
}
.cl-reviews__show-more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.375rem;
  padding: 0.75rem 2rem;
  background: transparent;
  border: 1.5px solid #1a1a2e;
  border-radius: var(--radius-button);
  font-size: 0.875rem;
  font-weight: 600;
  color: #1a1a2e;
  cursor: pointer;
  font-family: inherit;
  transition: background 0.2s, color 0.2s;
}
.cl-reviews--dark .cl-reviews__show-more {
  border-color: rgba(255,255,255,0.3);
  color: #f5f5f5;
}
.cl-reviews__show-more:hover {
  background: #1a1a2e;
  color: #fff;
}
.cl-reviews--dark .cl-reviews__show-more:hover {
  background: rgba(255,255,255,0.1);
}
.cl-reviews__show-more[hidden] { display: none; }

@media (max-width: 989px) {
  .cl-reviews__masonry { columns: 2; }
}
@media (min-width: 1200px) {
  .cl-reviews__masonry { columns: 3; }
  .cl-reviews__card { padding: 1.5rem; }
  .cl-reviews__card-quote { font-size: 0.875rem; }
}
@media (max-width: 749px) {
  .cl-reviews { padding-block: 2.5rem; }
  .cl-reviews__masonry { columns: 1; }
  .cl-reviews__masonry .cl-reviews__card:nth-child(n+2) { display: none; }
  .cl-reviews__masonry.cl-reviews__masonry--expanded .cl-reviews__card { display: flex; }
}
/* END_SECTION:collection-reviews */

/* START_SECTION:collection-seo-content (INDEX:49) */
.cl-seo {
  padding-block: 3.5rem;
  border-top: 1px solid rgba(0,0,0,0.06);
}
.cl-seo--dark {
  background: var(--section-bg, #1e1e21);
  border-color: rgba(255,255,255,0.06);
}
.cl-seo__container {
  max-width: 48rem;
  margin: 0 auto;
  text-align: center;
}
.cl-seo__heading {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-foreground, #1a1a2e);
  margin: 0 0 1.5rem;
  letter-spacing: -0.01em;
}
.cl-seo--dark .cl-seo__heading { color: #f5f5f5; }
.cl-seo__wrap {
  position: relative;
  text-align: left;
}
.cl-seo__wrap.is-collapsed .cl-seo__body {
  max-height: 25rem; /* ~400 chars equivalent */
  overflow: hidden;
}
.cl-seo__fade {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 5rem;
  background: linear-gradient(to bottom, transparent 0%, var(--section-bg, #fff) 100%);
  pointer-events: none;
}
.cl-seo--dark .cl-seo__fade {
  background: linear-gradient(to bottom, transparent 0%, var(--section-bg, #1e1e21) 100%);
}
.cl-seo__fade[hidden] { display: none; }
.cl-seo__body {
  font-size: 0.9375rem;
  line-height: 1.8;
  color: var(--color-text-muted, #555);
}
.cl-seo--dark .cl-seo__body { color: rgba(255,255,255,0.6); }
.cl-seo__body h2, .cl-seo__body h3 {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--color-foreground, #1a1a2e);
  margin: 2rem 0 0.75rem;
}
.cl-seo--dark .cl-seo__body h2,
.cl-seo--dark .cl-seo__body h3 { color: #f5f5f5; }
.cl-seo__body p { margin: 0 0 1rem; }
.cl-seo__body p:last-child { margin-bottom: 0; }
.cl-seo__body a { color: var(--color-foreground, #1a1a2e); text-decoration: underline; }
.cl-seo--dark .cl-seo__body a { color: #f5f5f5; }
.cl-seo__body ul, .cl-seo__body ol {
  padding-left: 1.5rem;
  margin: 0 0 1rem;
}
.cl-seo__toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  margin-top: 1rem;
  padding: 0.5rem 1.25rem;
  background: #e5e5e5;
  border: none;
  border-radius: var(--radius-button);
  font-size: 0.8125rem;
  font-weight: 600;
  color: #1a1a2e;
  cursor: pointer;
  font-family: inherit;
  transition: background 0.2s, color 0.2s;
}
.cl-seo--dark .cl-seo__toggle {
  background: rgba(255,255,255,0.15);
  color: #f5f5f5 !important;
  border: 1px solid rgba(255,255,255,0.2);
}
.cl-seo--dark .cl-seo__toggle svg { color: #f5f5f5; }
.cl-seo__toggle:hover {
  background: #d4d4d4;
  color: #1a1a2e;
}
.cl-seo--dark .cl-seo__toggle:hover {
  background: rgba(255,255,255,0.25);
  color: #f5f5f5 !important;
}
.cl-seo__toggle[hidden] { display: none; }
.cl-seo__toggle svg {
  transition: transform 0.3s ease;
}
.cl-seo__toggle.is-expanded svg { transform: rotate(180deg); }

@media (max-width: 749px) {
  .cl-seo { padding-block: 2.5rem; }
}
/* END_SECTION:collection-seo-content */

/* START_SECTION:collection-spotlights (INDEX:50) */
.cl-spotlights {
  padding-block: 4rem;
  background: #f5f5f0;
}
.cl-spotlights--dark {
  background: #1e1e21;
}
.cl-spotlights__container {
  max-width: 72rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 4rem;
}
.cl-spotlights__header {
  text-align: center;
}
.cl-spotlights__section-heading {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--color-foreground, #1a1a2e);
  margin: 0;
}
.cl-spotlights--dark .cl-spotlights__section-heading {
  color: #f5f5f5;
}
.cl-spotlights__section-sub {
  color: var(--color-text-muted, #71717a);
  max-width: 36rem;
  margin: 0.75rem auto 0;
  line-height: 1.6;
}

/* ── Row: image + content side by side ── */
.cl-spotlights__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.cl-spotlights__row--reversed {
  direction: rtl;
}
.cl-spotlights__row--reversed > * {
  direction: ltr;
}

.cl-spotlights__media {
  border-radius: 1rem;
  overflow: hidden;
  background: #f5f4f0;
}
.cl-spotlights--dark .cl-spotlights__media {
  background: #0d0d14;
}
.cl-spotlights__media img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}
.cl-spotlights__video-wrap {
  position: relative;
  aspect-ratio: 16 / 9;
}
.cl-spotlights__video-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.cl-spotlights__content {
  padding: var(--cl-text-pad, 1rem);
}

.cl-spotlights__eyebrow {
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text-muted, #71717a);
  margin-block-end: 0.5rem;
}
.cl-spotlights--dark .cl-spotlights__eyebrow {
  color: rgba(255,255,255,0.45);
}
.cl-spotlights__heading {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--color-foreground, #1a1a2e);
  margin: 0 0 0.75rem;
  line-height: 1.2;
}
.cl-spotlights--dark .cl-spotlights__heading {
  color: #f5f5f5;
}
.cl-spotlights__body {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--color-text-muted, #555);
}
.cl-spotlights--dark .cl-spotlights__body {
  color: rgba(255,255,255,0.65);
}
.cl-spotlights__body p { margin: 0 0 0.5rem; }
.cl-spotlights__body p:last-child { margin-bottom: 0; }

.cl-spotlights__specs {
  list-style: none;
  padding: 0;
  margin: 1.25rem 0 0;
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
}
.cl-spotlights__spec {
  font-size: 0.875rem;
  line-height: 1.5;
}
.cl-spotlights__spec-label {
  font-weight: 600;
  color: var(--color-foreground, #1a1a2e);
}
.cl-spotlights--dark .cl-spotlights__spec-label {
  color: #f5f5f5;
}
.cl-spotlights__spec-value {
  color: var(--color-text-muted, #555);
}

.cl-spotlights__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  margin-block-start: 1.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-foreground, #1a1a2e);
  text-decoration: none;
  transition: gap 0.2s;
}
.cl-spotlights--dark .cl-spotlights__cta {
  color: #f5f5f5;
}
.cl-spotlights__cta:hover {
  gap: 0.625rem;
}

@media (max-width: 749px) {
  .cl-spotlights { padding-block: 2.5rem; }
  .cl-spotlights__container { gap: 2.5rem; }
  .cl-spotlights__row {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .cl-spotlights__row--reversed { direction: ltr; }
  /* Normalize text padding on mobile — ignore CMS override */
  .cl-spotlights__content { padding: 1rem !important; }
}
/* END_SECTION:collection-spotlights */

/* START_SECTION:collection-sticky-cta (INDEX:51) */
.cl-sticky-cta {
  position: fixed;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%) translateY(80px);
  z-index: 50;
  opacity: 0;
  pointer-events: none;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease;
}
.cl-sticky-cta.is-visible {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
  pointer-events: auto;
}
.cl-sticky-cta__btn {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.625rem 1.375rem;
  font-size: 0.8125rem;
  font-weight: 600;
  font-family: inherit;
  border-radius: var(--radius-button);
  text-decoration: none;
  background: rgba(255,255,255,0.2);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  color: #1a1a2e;
  border: 1px solid rgba(0,0,0,0.1);
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  transition: background 0.2s, box-shadow 0.2s;
}
.cl-sticky-cta__btn:hover {
  background: rgba(255,255,255,0.35);
  box-shadow: 0 6px 28px rgba(0,0,0,0.15);
}
.cl-sticky-cta--dark .cl-sticky-cta__btn {
  background: rgba(255,255,255,0.12);
  color: #f5f5f5;
  border-color: rgba(255,255,255,0.15);
}
.cl-sticky-cta--dark .cl-sticky-cta__btn:hover {
  background: rgba(255,255,255,0.2);
}
.cl-sticky-cta[hidden] { display: none; }
/* END_SECTION:collection-sticky-cta */

/* START_SECTION:collection-subcategories (INDEX:52) */
.cl-subcats {
  padding-block: 2rem;
  background: transparent;
  overflow-x: clip;
}
.cl-subcats--dark {
  background: transparent;
}

.cl-subcats__container {
  max-width: 72rem;
  margin: 0 auto;
}
.cl-subcats__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-block-end: 1.5rem;
}
/* Sticky only when filters are enabled */
.cl-subcats--has-filters .cl-subcats__header {
  position: sticky;
  top: 0;
  z-index: 10;
  /* Full-bleed background, boxed content */
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding: 0.75rem calc(50vw - 50%);
  background: var(--section-bg, #fff);
  margin-top: -0.75rem;
  transition: box-shadow 0.2s ease;
}
.cl-subcats--has-filters .cl-subcats__header.is-stuck {
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}
.cl-subcats--has-filters.cl-subcats--dark .cl-subcats__header {
  background: var(--section-bg, #141416);
}
.cl-subcats--has-filters.cl-subcats--dark .cl-subcats__header.is-stuck {
  box-shadow: 0 2px 12px rgba(0,0,0,0.3);
}
.cl-subcats__header-left {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
}
.cl-subcats__heading {
  font-size: 1.125rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--color-foreground, #1a1a2e);
  margin: 0;
}
.cl-subcats__bundle-btn {
  display: inline-flex;
  align-items: center;
  padding: 0.375rem 1rem;
  font-size: 0.75rem;
  font-weight: 600;
  font-family: inherit;
  color: #fff;
  background: #1a1a2e;
  border: none;
  border-radius: var(--radius-button);
  text-decoration: none;
  white-space: nowrap;
  transition: transform 0.2s, box-shadow 0.2s;
}
.cl-subcats__bundle-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 3px 12px rgba(0,0,0,0.15);
}
.cl-subcats--dark .cl-subcats__bundle-btn {
  background: #fff;
  color: #1a1a2e;
}
.cl-subcats--dark .cl-subcats__heading {
  color: #f5f5f5;
}
.cl-subcats__subheading {
  font-size: 0.8125rem;
  color: var(--color-text-muted, #71717a);
  margin: 0;
}
.cl-subcats--dark .cl-subcats__subheading {
  color: rgba(255,255,255,0.5);
}

/* ── Product grid — auto columns with minimum 3 ── */
.cl-subcats__grid {
  display: grid;
  grid-template-columns: repeat(var(--cl-cols-mobile, 1), 1fr);
  gap: 1rem;
}
@media (min-width: 750px) {
  .cl-subcats__grid { grid-template-columns: repeat(var(--cl-cols-tablet, 2), 1fr); }
}
@media (min-width: 990px) {
  .cl-subcats__grid { grid-template-columns: repeat(var(--cl-cols-desktop, 3), 1fr); }
}

.cl-subcats__product-item {
  min-width: 0;
}
/* Force product cards to fill their grid cell */
.cl-subcats__product-item .nf-card {
  width: 100%;
}
.cl-subcats__product-item .nf-card__img-wrap {
  width: 100%;
}
.cl-subcats__product-item .nf-card__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Dark card overrides handled globally by .theme-dark .nf-card__* in theme.liquid */

/* ── Filter button ── */
.cl-subcats__filter-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 0.4375rem 1rem;
  font-size: 0.8125rem;
  font-weight: 600;
  font-family: inherit;
  color: #1a1a2e;
  background: #f4f4f5;
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: var(--radius-button);
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s, transform 0.15s;
}
.cl-subcats__filter-btn:hover {
  background: #e4e4e7;
  transform: translateY(-1px);
}
.cl-subcats--dark .cl-subcats__filter-btn {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.1);
  color: #f5f5f5;
}
.cl-subcats--dark .cl-subcats__filter-btn:hover {
  background: rgba(255,255,255,0.14);
}

/* ── Filter area: button + active chips inline ── */
.cl-subcats__filter-area {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}
.cl-subcats__active-filters {
  display: flex;
  gap: 0.375rem;
  flex-wrap: wrap;
  align-items: center;
}
/* Desktop: show inline chips, hide mobile row */
.cl-subcats__active-filters--mobile { display: none; }
@media (max-width: 749px) {
  .cl-subcats__active-filters--desktop { display: none !important; }
  .cl-subcats__active-filters--mobile {
    display: flex;
    gap: 0.375rem;
    flex-wrap: wrap;
    align-items: center;
    padding-top: 0.25rem;
    margin-bottom: 1rem;
  }
  .cl-subcats__active-filters--mobile:empty { display: none; }
}
.cl-subcats__active-filters:empty { display: none; }
.cl-filter-chip {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 0.3125rem 0.625rem;
  font-size: 0.75rem;
  font-weight: 500;
  font-family: inherit;
  color: #1a1a2e;
  background: #e8e8ec;
  border: none;
  border-radius: var(--radius-button);
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.15s, transform 0.1s;
  line-height: 1;
}
.cl-filter-chip:hover {
  background: #d4d4d8;
}
.cl-filter-chip:active {
  transform: scale(0.95);
}
.cl-filter-chip__x {
  width: 12px;
  height: 12px;
  opacity: 0.5;
  flex-shrink: 0;
  transition: opacity 0.15s;
}
.cl-filter-chip:hover .cl-filter-chip__x {
  opacity: 0.9;
}
/* Dark theme chips */
.cl-subcats--dark .cl-filter-chip {
  background: rgba(255,255,255,0.1);
  color: #f5f5f5;
}
.cl-subcats--dark .cl-filter-chip:hover {
  background: rgba(255,255,255,0.18);
}

/* ══════════════════════════════════════
   Filter Drawer — slides from left
   ══════════════════════════════════════ */
.cl-filter-drawer { position: fixed; inset: 0; z-index: 999; display: flex; pointer-events: none; }
.cl-filter-drawer[hidden] { display: none; }
.cl-filter-drawer.is-open { pointer-events: auto; }
.cl-filter-drawer__overlay {
  position: absolute; inset: 0;
  background: rgba(0,0,0,0.45);
}

.cl-filter-drawer__panel {
  position: relative; z-index: 1;
  width: 22rem; max-width: 85vw;
  height: 100%;
  display: flex; flex-direction: column;
  background: #fff;
  box-shadow: 4px 0 24px rgba(0,0,0,0.12);
  transform: translateX(-100%);
  transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.cl-filter-drawer.is-open .cl-filter-drawer__panel { transform: translateX(0); }
.cl-filter-drawer__overlay { opacity: 0; transition: opacity 0.3s ease; }
.cl-filter-drawer.is-open .cl-filter-drawer__overlay { opacity: 1; }

.cl-filter-drawer__panel--dark {
  background: #1e1e21;
  color: #f5f5f5;
  box-shadow: 4px 0 24px rgba(0,0,0,0.4);
}

.cl-filter-drawer__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid rgba(0,0,0,0.08);
}
.cl-filter-drawer__panel--dark .cl-filter-drawer__header {
  border-color: rgba(255,255,255,0.1);
}
.cl-filter-drawer__title {
  font-size: 1rem;
  font-weight: 700;
  margin: 0;
  letter-spacing: -0.01em;
}
.cl-filter-drawer__close {
  display: flex; align-items: center; justify-content: center;
  width: 32px; height: 32px;
  background: none; border: none;
  color: inherit; cursor: pointer;
  border-radius: 50%;
  transition: background 0.2s;
}
.cl-filter-drawer__close:hover { background: rgba(0,0,0,0.05); }
.cl-filter-drawer__panel--dark .cl-filter-drawer__close:hover { background: rgba(255,255,255,0.1); }

.cl-filter-drawer__body {
  flex: 1;
  overflow-y: auto;
  padding: 0.5rem 0;
}

/* Filter groups (details/summary) */
.cl-filter-drawer__group {
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.cl-filter-drawer__panel--dark .cl-filter-drawer__group {
  border-color: rgba(255,255,255,0.08);
}
.cl-filter-drawer__group-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.875rem 1.5rem;
  font-size: 0.8125rem;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  user-select: none;
}
.cl-filter-drawer__group-title::-webkit-details-marker { display: none; }
.cl-filter-drawer__chevron {
  transition: transform 0.2s ease;
}
.cl-filter-drawer__group[open] .cl-filter-drawer__chevron {
  transform: rotate(180deg);
}
.cl-filter-drawer__group-body {
  padding: 0 1.5rem 1rem;
}

/* Checkboxes */
.cl-filter-drawer__values {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.cl-filter-drawer__check-label {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0.375rem 0;
  font-size: 0.8125rem;
  cursor: pointer;
}
.cl-filter-drawer__checkbox {
  width: 16px; height: 16px;
  accent-color: #1a1a2e;
  flex-shrink: 0;
}
.cl-filter-drawer__panel--dark .cl-filter-drawer__checkbox {
  accent-color: #f5f5f5;
}
.cl-filter-drawer__check-count {
  color: #a1a1aa;
  font-size: 0.75rem;
  margin-left: auto;
}
.cl-filter-drawer__panel--dark .cl-filter-drawer__check-count {
  color: rgba(255,255,255,0.35);
}

/* Price range */
.cl-filter-drawer__price-range {
  display: flex;
  align-items: flex-end;
  gap: 0.75rem;
}
.cl-filter-drawer__price-label {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 0.75rem;
  font-weight: 500;
  flex: 1;
}
.cl-filter-drawer__price-input {
  padding: 0.5rem 0.625rem;
  font-size: 0.8125rem;
  font-family: inherit;
  border: 1.5px solid rgba(0,0,0,0.12);
  border-radius: 8px;
  background: #f9f9f7;
  color: inherit;
  width: 100%;
}
.cl-filter-drawer__panel--dark .cl-filter-drawer__price-input {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.12);
}
.cl-filter-drawer__price-sep {
  color: #a1a1aa;
  padding-bottom: 0.5rem;
}

/* Footer */
.cl-filter-drawer__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.5rem;
  border-top: 1px solid rgba(0,0,0,0.08);
  gap: 1rem;
}
.cl-filter-drawer__panel--dark .cl-filter-drawer__footer {
  border-color: rgba(255,255,255,0.1);
}
.cl-filter-drawer__clear {
  font-size: 0.8125rem;
  color: #71717a;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.cl-filter-drawer__panel--dark .cl-filter-drawer__clear {
  color: rgba(255,255,255,0.5);
}
.cl-filter-drawer__apply {
  flex: 1;
  max-width: 10rem;
  padding: 0.625rem 1.25rem;
  font-size: 0.8125rem;
  font-weight: 600;
  font-family: inherit;
  color: #fff;
  background: #1a1a2e;
  border: none;
  border-radius: 9999px;
  cursor: pointer;
  transition: background 0.2s;
}
.cl-filter-drawer__apply:hover { background: #2a2a2d; }
.cl-filter-drawer__panel--dark .cl-filter-drawer__apply {
  background: #f5f5f5;
  color: #1a1a2e;
}
.cl-filter-drawer__panel--dark .cl-filter-drawer__apply:hover {
  background: #e0e0e0;
}

/* Infinite scroll trigger */
.cl-subcats__infinite-trigger {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  padding: 2rem 0;
}
.cl-subcats__infinite-trigger[hidden] { display: none; }
.cl-subcats__infinite-spinner svg {
  animation: clInfSpin 0.7s linear infinite;
  color: #999;
}
.cl-subcats--dark .cl-subcats__infinite-spinner svg { color: rgba(255,255,255,0.4); }
@keyframes clInfSpin { to { transform: rotate(360deg); } }
.cl-subcats__infinite-text {
  font-size: 0.8125rem;
  color: #999;
  font-weight: 500;
}
.cl-subcats--dark .cl-subcats__infinite-text { color: rgba(255,255,255,0.4); }

/* Pagination */
.cl-subcats__pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
  font-size: 0.875rem;
}
.cl-subcats__page-btn {
  padding: 0.5rem 1.25rem;
  border-radius: 9999px;
  background: #1a1a2e;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.8125rem;
  transition: background 0.2s;
}
.cl-subcats__page-btn:hover { background: #2a2a2d; }
.cl-subcats__page-info { color: #666; font-weight: 500; }
.cl-subcats--dark .cl-subcats__page-btn { background: #f5f5f5; color: #1a1a2e; }
.cl-subcats--dark .cl-subcats__page-info { color: rgba(255,255,255,0.5); }
.cl-subcats__no-results {
  text-align: center;
  padding: 3rem 1rem;
  color: #666;
  font-size: 0.9375rem;
}
.cl-subcats__no-results a { color: #1a1a2e; font-weight: 600; text-decoration: underline; }
.cl-subcats--dark .cl-subcats__no-results { color: rgba(255,255,255,0.5); }
.cl-subcats--dark .cl-subcats__no-results a { color: #f5f5f5; }

@media (max-width: 749px) {
  .cl-subcats { padding-block: 1.25rem; }
  .cl-subcats__grid { gap: 0.75rem; }
  .cl-filter-drawer__panel { width: 85vw; }
}
/* END_SECTION:collection-subcategories */

/* START_SECTION:collection-subnav (INDEX:53) */
/* ══════════════════════════════════════
   Collection Sub-Navigation
   Design A = cards (image + label)
   Design B = pills (icon + label) — default
   ══════════════════════════════════════ */
/* Force the shopify-section wrapper to be transparent */
.shopify-section:has(.cl-subnav) {
  background: transparent !important;
}
.cl-subnav {
  padding-block: 1.25rem 0.5rem;
  background: transparent !important;
}
.cl-subnav__label {
  display: none; /* hidden on mobile/tablet */
}
.cl-subnav__container {
  max-width: 72rem;
  margin: 0 auto;
}

/* ── Track: horizontal scroll ── */
.cl-subnav__track {
  display: flex;
  gap: 0.625rem;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: 0;
}
.cl-subnav__track::-webkit-scrollbar { display: none; }
.cl-subnav__track::after { content: ''; flex-shrink: 0; width: 0.25rem; }
@media (max-width: 749px) { .cl-subnav__track::after { width: 1.25rem; } }

/* ── Shared item base ── */
.cl-subnav__item {
  display: flex;
  text-decoration: none;
  scroll-snap-align: start;
  flex-shrink: 0;
}

/* ══════════════════════════════════════
   Design B: Pills (default)
   Mirrors megamenu room filter pills
   ══════════════════════════════════════ */
.cl-subnav--pills .cl-subnav__item {
  align-items: center;
  gap: 6px;
  padding: 5px 14px;
  border-radius: var(--radius-button);
  background: transparent;
  border: 1px solid #ccc;
  font-size: 12px;
  font-weight: 500;
  color: #666;
  letter-spacing: 0;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.cl-subnav--pills .cl-subnav__item:hover {
  background: #1a1a2e;
  color: #fff;
  border-color: #1a1a2e;
}
.cl-subnav--pills .cl-subnav__icon {
  width: 16px;
  height: 16px;
  object-fit: contain;
  flex-shrink: 0;
}
/* Active/current collection pill */
.cl-subnav--pills .cl-subnav__item[aria-current="page"],
.cl-subnav--pills .cl-subnav__item.is-active {
  background: #1a1a2e;
  color: #fff;
  border-color: #1a1a2e;
}

/* Pills — dark theme */
.cl-subnav--dark.cl-subnav--pills .cl-subnav__item {
  background: transparent;
  border-color: rgba(255,255,255,0.25);
  color: rgba(255,255,255,0.55);
}
.cl-subnav--dark.cl-subnav--pills .cl-subnav__item:hover {
  background: #fff;
  color: #1a1a2e;
  border-color: #fff;
  box-shadow: none;
}
.cl-subnav--dark.cl-subnav--pills .cl-subnav__item[aria-current="page"],
.cl-subnav--dark.cl-subnav--pills .cl-subnav__item.is-active {
  background: #fff;
  color: #1a1a2e;
  border-color: #fff;
}

/* ══════════════════════════════════════
   Design A: Cards (image + label)
   ══════════════════════════════════════ */
.cl-subnav--cards .cl-subnav__item {
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  width: 7.5rem;
}
.cl-subnav--cards .cl-subnav__img-wrap {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 0.75rem;
  overflow: hidden;
  background: #f4f4f5;
  border: 1px solid rgba(0,0,0,0.06);
}
.cl-subnav--cards .cl-subnav__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.cl-subnav--cards .cl-subnav__item:hover .cl-subnav__img {
  transform: scale(1.05);
}
.cl-subnav--cards .cl-subnav__img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #a1a1aa;
}
.cl-subnav--cards .cl-subnav__label {
  font-size: 0.75rem;
  font-weight: 600;
  color: #1a1a2e;
  text-align: center;
  letter-spacing: -0.01em;
  line-height: 1.2;
}

/* Cards — dark theme */
.cl-subnav--dark.cl-subnav--cards .cl-subnav__img-wrap {
  background: #1a1a1d;
  border-color: rgba(255,255,255,0.08);
}
.cl-subnav--dark.cl-subnav--cards .cl-subnav__label {
  color: #f5f5f5;
}
.cl-subnav--dark.cl-subnav--cards .cl-subnav__img-placeholder {
  color: rgba(255,255,255,0.3);
}

/* ── Desktop: boxed pill bar overlapping hero ── */
@media (min-width: 750px) {
  .cl-subnav {
    position: relative;
    z-index: 2;
    margin-top: -1.75rem;
    padding-block: 0;
    background: transparent;
    display: flex;
    justify-content: center;
  }
  .cl-subnav__container {
    display: inline-flex !important;
    align-items: center;
    gap: 0.75rem;
    max-width: 72rem;
    width: auto !important;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    border-radius: var(--radius-button);
    padding: 0.375rem 1rem;
  }
  .cl-subnav__label {
    display: block;
    font-size: 0.5625rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--color-text-muted, #999);
    white-space: nowrap;
    flex-shrink: 0;
  }
  .cl-subnav--dark .cl-subnav__label {
    color: rgba(255,255,255,0.5);
  }
  .cl-subnav__track {
    justify-content: center;
    overflow: visible;
    gap: 0.5rem;
  }
  .cl-subnav--dark .cl-subnav__container {
    background: #1e1e21;
    border-color: rgba(255,255,255,0.1);
    box-shadow: 0 2px 12px rgba(0,0,0,0.3);
  }
}

/* ── Mobile ── */
@media (max-width: 749px) {
  .cl-subnav { padding-block: 1rem 0.25rem; }
  .cl-subnav__container.page-width { max-width: 100vw !important; padding-left: 0 !important; padding-right: 0 !important; margin-left: 0 !important; margin-right: 0 !important; width: 100% !important; }
  .cl-subnav__track { padding-left: 1.25rem; padding-right: 1.25rem; overflow-x: auto; }
  .cl-subnav__track::after { content: ''; flex-shrink: 0; width: 1px; } /* ensures last pill isn't clipped */
  .cl-subnav--cards .cl-subnav__item { width: 5.5rem; }
  .cl-subnav--cards .cl-subnav__label { font-size: 0.6875rem; }
  .cl-subnav--pills .cl-subnav__item { font-size: 0.75rem; padding: 0.4375rem 0.875rem; }
}
/* END_SECTION:collection-subnav */

/* START_SECTION:collection-tabs (INDEX:54) */
.shop-categories {
  padding-block: 2.5rem;
}

.shop-categories__container {
  max-width: 72rem;
  margin: 0 auto;
}

.shop-categories__header {
  margin-block-end: 2rem;
}

.shop-categories__title {
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  font-weight: 600;
  letter-spacing: var(--tracking-tight);
  color: var(--color-foreground);
}

.shop-categories__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
}

.shop-categories__card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: var(--color-foreground);
  border-radius: var(--radius-xl, 1rem);
  overflow: hidden;
  transition: transform 0.3s ease;
}

.shop-categories__card:hover {
  transform: translateY(-4px);
}

.shop-categories__card-media {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: var(--radius-xl, 1rem);
  background: var(--color-secondary, #f0ede8);
}

.shop-categories__card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.shop-categories__card:hover .shop-categories__card-img {
  transform: scale(1.05);
}

.shop-categories__card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgb(0 0 0 / 0.25) 0%, transparent 50%);
  pointer-events: none;
}

.shop-categories__card-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #e8e6e1 0%, #d5d3ce 100%);
}

.shop-categories__card-label {
  display: block;
  padding: 0.75rem 0.25rem 0;
  font-size: 0.875rem;
  font-weight: 600;
  text-align: center;
  color: var(--color-foreground);
}

/* 3 rows max on desktop (15 items at 5 per row) */
/* Desktop: same padding as mobile — unified */

/* Tablet: 3 columns */
@media screen and (max-width: 989px) and (min-width: 750px) {
  .shop-categories__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Mobile: 2 columns, max 6 */
@media screen and (max-width: 749px) {
  .shop-categories__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
  }

  .shop-categories__card--hide-mobile {
    display: none;
  }

  .shop-categories__card-label {
    font-size: 0.8125rem;
    padding-top: 0.5rem;
  }
}

/* Dark mode */
.theme-dark .shop-categories__title { color: #f5f5f5; }
.theme-dark .shop-categories__card-label { color: #f5f5f5; }
.theme-dark .shop-categories__card-media { background: rgba(255,255,255,0.05); }
/* END_SECTION:collection-tabs */

/* START_SECTION:collection-trust (INDEX:55) */
.cl-trust {
  padding-block: 3rem;
  border-top: 1px solid rgba(0,0,0,0.06);
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.cl-trust--dark {
  background: #111118;
  border-color: rgba(255,255,255,0.06);
}
.cl-trust__container {
  max-width: 72rem;
  margin: 0 auto;
}
.cl-trust__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
}
.cl-trust__item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.cl-trust__icon {
  flex-shrink: 0;
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-foreground, #1a1a2e);
}
.cl-trust--dark .cl-trust__icon { color: #f5f5f5; }
.cl-trust__title {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--color-foreground, #1a1a2e);
  margin: 0;
  line-height: 1.3;
}
.cl-trust--dark .cl-trust__title { color: #f5f5f5; }
.cl-trust__desc {
  font-size: 0.8125rem;
  line-height: 1.5;
  color: var(--color-text-muted, #71717a);
  margin: 0.25rem 0 0;
}
.cl-trust--dark .cl-trust__desc { color: rgba(255,255,255,0.5); }

@media (max-width: 749px) {
  .cl-trust { padding-block: 2rem; }
  .cl-trust__grid { grid-template-columns: 1fr; gap: 1.5rem; }
}
/* END_SECTION:collection-trust */

/* START_SECTION:collection-video (INDEX:56) */
.cl-video {
  padding-block: 4rem;
}
.cl-video--dark {
  background: #1e1e21;
}
.cl-video__container {
  max-width: 72rem;
  margin: 0 auto;
}
.cl-video__layout {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 3rem;
  align-items: center;
}
.cl-video__heading {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--color-foreground, #1a1a2e);
  margin: 0 0 1rem;
  line-height: 1.15;
}
.cl-video--dark .cl-video__heading { color: #f5f5f5; }
.cl-video__description {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--color-text-muted, #555);
}
.cl-video--dark .cl-video__description { color: rgba(255,255,255,0.65); }
.cl-video__description p { margin: 0 0 0.75rem; }
.cl-video__trust-point {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--color-foreground, #1a1a2e);
  margin-block-start: 0.625rem;
}
.cl-video--dark .cl-video__trust-point { color: #f5f5f5; }
.cl-video__trust-point svg { color: #51BD7A; flex-shrink: 0; }

/* ── Player ── */
.cl-video__player {
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: #0d0d14;
}
.cl-video__native {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.cl-video__poster {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.cl-video__player:hover .cl-video__poster { transform: scale(1.02); }
.cl-video__play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: none;
  border: none;
  cursor: pointer;
  z-index: 2;
  transition: transform 0.2s;
}
.cl-video__play-btn:hover { transform: translate(-50%, -50%) scale(1.08); }
.cl-video__play-btn[hidden] { display: none; }

.cl-video__controls {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 3;
  background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, transparent 100%);
  padding: 1.5rem 0.75rem 0.5rem;
}
.cl-video__controls[hidden] { display: none; }
.cl-video__progress {
  width: 100%;
  height: 3px;
  background: rgba(255,255,255,0.25);
  border-radius: 2px;
  cursor: pointer;
  margin-bottom: 0.5rem;
}
.cl-video__progress-bar {
  height: 100%;
  background: #fff;
  width: 0%;
  border-radius: 2px;
  transition: width 0.15s linear;
}
.cl-video__controls-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cl-video__time {
  font-size: 0.6875rem;
  color: rgba(255,255,255,0.8);
  font-variant-numeric: tabular-nums;
}
.cl-video__controls-right {
  display: flex;
  align-items: center;
  gap: 0.375rem;
}
.cl-video__speed,
.cl-video__mute,
.cl-video__fullscreen {
  background: rgba(255,255,255,0.15);
  border: none;
  border-radius: 0.25rem;
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.cl-video__speed {
  font-size: 0.6875rem;
  font-weight: 600;
  padding: 0.25rem 0.5rem;
  font-family: inherit;
  min-width: 2rem;
}
.cl-video__mute,
.cl-video__fullscreen {
  width: 28px;
  height: 28px;
  padding: 0;
}
.cl-video__speed:hover,
.cl-video__mute:hover,
.cl-video__fullscreen:hover { background: rgba(255,255,255,0.3); }

.cl-video__iframe-wrap {
  position: absolute;
  inset: 0;
}
.cl-video__iframe-wrap iframe {
  width: 100%;
  height: 100%;
  border: none;
}

@media (max-width: 749px) {
  .cl-video { padding-block: 2.5rem; }
  .cl-video__layout { grid-template-columns: 1fr; gap: 1.5rem; }
  .cl-video__player { border-radius: 0.75rem; }
  .cl-video__play-btn svg { width: 48px; height: 48px; }
}
/* END_SECTION:collection-video */

/* START_SECTION:cta-bar (INDEX:66) */
.cta-bar { position: relative; z-index: 2; }
.cta-bar__container { max-width: 72rem; margin: 0 auto; }

/* ── Grid ── */
.cta-bar__grid { display: grid; gap: 0.625rem; }
.cta-bar__grid--1 { grid-template-columns: 1fr; }
.cta-bar__grid--2 { grid-template-columns: repeat(2, 1fr); }
.cta-bar__grid--3 { grid-template-columns: repeat(3, 1fr); }

/* ── Card ── */
.cta-bar__card {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  padding: 0.75rem 1.25rem;
  background: #fff;
  border: 1px solid rgba(0,0,0,0.08);
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  border-radius: var(--radius-xl, 1rem);
  text-decoration: none;
  color: #1a1a2e;
  transition: box-shadow 0.25s ease, transform 0.2s ease;
  min-height: 64px;
}
.cta-bar__card:hover {
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
  transform: translateY(-2px);
}

/* ── Image ── */
.cta-bar__img-wrap {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 0.5rem;
  overflow: hidden;
}
.cta-bar__img { width: 100%; height: 100%; object-fit: cover; }

/* ── Badge ── */
.cta-bar__badge {
  display: inline-block;
  font-size: 0.5625rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #fff;
  background: #51BD7A;
  padding: 2px 6px;
  border-radius: 4px;
  margin-bottom: 2px;
  line-height: 1.4;
}

/* ── Text ── */
.cta-bar__text { flex: 1; min-width: 0; }
.cta-bar__title { font-size: 0.875rem; font-weight: 700; line-height: 1.3; margin: 0; }
.cta-bar__desc { font-size: 0.75rem; color: #666; margin: 0.125rem 0 0; line-height: 1.4; }

/* ── Arrow ── */
.cta-bar__arrow {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--color-surface-alt, #f0efea);
  color: #1a1a2e;
  transition: background 0.2s, transform 0.2s, color 0.2s;
}
.cta-bar__card:hover .cta-bar__arrow { background: #1a1a2e; color: #fff; transform: translateX(2px); }

/* ════ Sale Override ════ */
.cta-bar__sale {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1rem 1.5rem;
  background: #1a1a2e;
  color: #fff;
  border-radius: var(--radius-xl, 1rem);
  text-decoration: none;
  transition: box-shadow 0.25s ease, transform 0.2s ease;
}
.cta-bar__sale:hover { box-shadow: 0 4px 20px rgba(0,0,0,0.25); transform: translateY(-2px); }
.cta-bar__sale-badge {
  display: inline-block;
  font-size: 0.5625rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  background: #ef4444;
  color: #fff;
  padding: 2px 8px;
  border-radius: 4px;
  margin-bottom: 4px;
}
.cta-bar__sale-text { flex: 1; }
.cta-bar__sale-title { font-size: 1rem; font-weight: 700; margin: 0; }
.cta-bar__sale-desc { font-size: 0.8125rem; opacity: 0.7; margin: 0.25rem 0 0; }
.cta-bar__sale-cta {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 0.5rem 1.25rem;
  background: #fff;
  color: #1a1a2e;
  border-radius: var(--radius-button);
  font-size: 0.8125rem;
  font-weight: 600;
  white-space: nowrap;
  transition: background 0.2s, transform 0.2s;
}
.cta-bar__sale:hover .cta-bar__sale-cta { background: #f0efea; transform: translateX(2px); }

/* ── Countdown ── */
.cta-bar__countdown { display: flex; align-items: center; gap: 0.25rem; flex-shrink: 0; }
.cta-bar__countdown-unit { text-align: center; min-width: 2.5rem; }
.cta-bar__countdown-unit span { display: block; font-size: 1.25rem; font-weight: 700; font-variant-numeric: tabular-nums; }
.cta-bar__countdown-unit small { display: block; font-size: 0.5625rem; text-transform: uppercase; letter-spacing: 0.05em; opacity: 0.6; }
.cta-bar__countdown-sep { font-size: 1rem; font-weight: 600; opacity: 0.4; margin-top: -0.5rem; }

/* ── Dark scheme ── */
.theme-dark .cta-bar__card { background: #1e1e21; border-color: rgba(255,255,255,0.1); box-shadow: 0 2px 8px rgba(0,0,0,0.2); color: #f5f5f5; }
.theme-dark .cta-bar__desc { color: rgba(255,255,255,0.5); }
.theme-dark .cta-bar__arrow { background: rgba(255,255,255,0.1); color: #f5f5f5; }
.theme-dark .cta-bar__card:hover .cta-bar__arrow { background: #fff; color: #1a1a2e; }
.theme-dark .cta-bar__badge { background: #51BD7A; }

/* ── Hero overlap ── */
.shopify-section:has(.hero-bb) + .shopify-section > .cta-bar,
.shopify-section:has(.cl-hero) + .shopify-section > .cta-bar {
  margin-top: -1.5rem;
}

/* ── Mobile ── */
@media (max-width: 749px) {
  .cta-bar__grid--2, .cta-bar__grid--3 { grid-template-columns: 1fr; }
  .cta-bar__card { padding: 0.625rem 0.875rem; min-height: 52px; gap: 0.625rem; }
  .cta-bar__img-wrap { width: 36px; height: 36px; }
  .cta-bar__title { font-size: 0.8125rem; }
  .cta-bar__desc { font-size: 0.6875rem; }
  .cta-bar__arrow { width: 24px; height: 24px; }
  .cta-bar__sale { flex-wrap: wrap; gap: 0.75rem; padding: 0.75rem 1rem; }
  .cta-bar__countdown-unit span { font-size: 1rem; }
}
/* END_SECTION:cta-bar */

/* START_SECTION:feature-grid (INDEX:75) */
/* ── Feature Grid — PDP Benefits-inspired card layout ── */
.feature-grid {
  padding: 1.75rem 0;
}

.feature-grid__container {
  max-width: 72rem;
  margin: 0 auto;
}

.feature-grid__eyebrow-wrap {
  margin-block-end: 0.5rem;
}
/* Alignment syncs eyebrow, title, and subtitle */
.feature-grid--align-left .feature-grid__eyebrow-wrap,
.feature-grid--align-left .feature-grid__subtitle { text-align: left; }
.feature-grid--align-center .feature-grid__eyebrow-wrap,
.feature-grid--align-center .feature-grid__header { justify-content: center; }
.feature-grid--align-center .feature-grid__subtitle { text-align: center; }
.feature-grid--align-right .feature-grid__eyebrow-wrap,
.feature-grid--align-right .feature-grid__subtitle { text-align: right; }
.feature-grid--align-right .feature-grid__header { justify-content: flex-end; }

.feature-grid__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-block-end: var(--space-xl, 1.5rem);
}

.feature-grid__eyebrow {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-text-muted);
}

.feature-grid__title {
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  font-weight: 600;
  letter-spacing: var(--tracking-tight);
  color: var(--color-foreground);
}

.feature-grid__view-all {
  display: inline-flex;
  align-items: center;
  gap: 0.35em;
  font-size: var(--font-size-sm);
  font-weight: 600;
  text-decoration: none;
  color: var(--color-foreground);
  transition: opacity var(--duration-base, 0.2s) var(--ease-default, ease);
  white-space: nowrap;
}

.feature-grid__view-all:hover { opacity: 0.7; }

.feature-grid__subtitle {
  color: var(--color-text-muted);
  margin-block-end: 2rem;
  max-width: 42rem;
  line-height: var(--line-height-base);
  font-size: var(--font-size-sm);
}

.feature-grid__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

/* Card — portrait image above, text below */
.feature-grid__card {
  display: block;
  text-decoration: none;
  color: var(--color-foreground);
  text-align: center;
  transition: transform 0.3s ease;
  cursor: default;
}
.feature-grid__card--linked { cursor: pointer; }

.feature-grid__card--linked:hover {
  transform: translateY(-4px);
}

.feature-grid__card-media {
  aspect-ratio: 3 / 4;
  border-radius: var(--radius-xl, 1rem);
  overflow: hidden;
  margin-block-end: 1rem;
  background: var(--color-secondary, #f0ede8);
}

.feature-grid__card-media--placeholder {
  background: linear-gradient(135deg, #e8e6e1 0%, #d5d3ce 100%);
}

.feature-grid__card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.feature-grid__card--linked:hover .feature-grid__card-img {
  transform: scale(1.03);
}

.feature-grid__card-body {
  padding: 0 0.5rem;
}

.feature-grid__card-badge {
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #51BD7A;
  background: rgba(45, 138, 35, 0.08);
  padding: 3px 10px;
  border-radius: var(--radius-button);
  margin-block-end: 0.5rem;
}

.feature-grid__card-title {
  font-weight: 600;
  font-size: 1.0625rem;
  margin-block-end: 0.375rem;
  color: var(--color-foreground);
}

.feature-grid__card-desc {
  font-size: var(--font-size-sm);
  color: var(--color-text-muted);
  line-height: var(--line-height-base);
  margin-block-end: 0.75rem;
}

.feature-grid__card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.3em;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--color-foreground);
  opacity: 0;
  transform: translateY(4px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.feature-grid__card--linked:hover .feature-grid__card-link {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive grid */
@media screen and (min-width: 750px) {
  .feature-grid {
    padding: 1.75rem 0; /* same on all breakpoints */
  }

  .feature-grid__grid {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  }

  .feature-grid[data-columns="2"] .feature-grid__grid {
    grid-template-columns: repeat(2, 1fr);
    max-width: 48rem;
    margin-inline: auto;
  }

  .feature-grid[data-columns="3"] .feature-grid__grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .feature-grid[data-columns="4"] .feature-grid__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* ── Mobile: horizontal slider ── */
@media (max-width: 749px) {
  .feature-grid__grid {
    display: flex !important;
    grid-template-columns: none !important;
    gap: 0.75rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 0.5rem;
    padding-left: var(--space-xl, 1.5rem);
    padding-right: var(--space-xl, 1.5rem);
  }

  .feature-grid__grid::-webkit-scrollbar { display: none; }

  .feature-grid__card {
    width: 65vw;
    flex-shrink: 0;
    scroll-snap-align: center;
  }

  .feature-grid__card-link {
    opacity: 1;
    transform: none;
  }

  /* Dot navigation */
  .feature-grid__dots {
    display: flex;
    justify-content: center;
    gap: 6px;
    padding-top: 1rem;
  }

  .feature-grid__dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: rgba(0,0,0,0.2);
    border: none;
    padding: 0;
    cursor: pointer;
    transition: background 0.25s ease, transform 0.25s ease;
    -webkit-appearance: none;
    appearance: none;
  }

  .feature-grid__dot--active {
    background: rgba(0,0,0,0.6);
    transform: scale(1.25);
  }
}

/* Desktop: hide dots */
@media (min-width: 750px) {
  .feature-grid__dots { display: none; }
}

/* Dark mode */
.theme-dark .feature-grid__title { color: #f5f5f5; }
.theme-dark .feature-grid__eyebrow { color: rgba(255,255,255,0.5); }
.theme-dark .feature-grid__subtitle { color: rgba(255,255,255,0.6); }
.theme-dark .feature-grid__card-title { color: #f5f5f5; }
.theme-dark .feature-grid__card-desc { color: rgba(255,255,255,0.6); }
.theme-dark .feature-grid__card-link { color: #f5f5f5; }
.theme-dark .feature-grid__view-all { color: #f5f5f5; }
.theme-dark .feature-grid__card-media { background: rgba(255,255,255,0.05); }
.theme-dark .feature-grid__card-badge { color: #51BD7A; background: rgba(34,197,94,0.1); }
/* END_SECTION:feature-grid */

/* START_SECTION:help-center (INDEX:88) */
/* ── Help Center ── */
.help-center {
  padding-block-end: var(--space-3xl);
}

/* ── Full-width top bar (title + tabs share one background) ── */
.help-center__top-bar {
  background: var(--color-background);
  border-bottom: 1px solid var(--color-border);
  padding-block-start: var(--space-3xl);
}

.help-center__top-bar-inner {
  max-width: 72rem;
  margin: 0 auto;
}

.help-center__container {
  max-width: 72rem;
  margin: 0 auto;
  padding-block-start: var(--space-xl);
}

.help-center__header {
  text-align: center;
  margin-block-end: var(--space-2xl);
}

.help-center__title {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  letter-spacing: var(--tracking-tight);
  color: var(--color-foreground);
  margin-block-end: var(--space-xs);
}

.help-center__subtitle {
  font-size: var(--font-size-lg);
  color: var(--color-text-secondary);
  max-width: 500px;
  margin-inline: auto;
}

/* ── Tabs ── */
.help-center__tabs {
  position: sticky;
  top: 0;
  z-index: var(--z-sticky);
  background: var(--color-background);
  padding-block: var(--space-sm);
  margin-block-end: 0;
}

.help-center__tabs-track {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  overflow-x: auto;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  padding-block: 4px;
}

@media (max-width: 749px) {
  .help-center__tabs-track {
    justify-content: flex-start;
    padding-inline: 1rem;
  }
}

.help-center__tabs-track::-webkit-scrollbar { display: none; }

.help-center__tab {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 0.5rem 1rem;
  border-radius: var(--radius-full);
  border: 1px solid var(--color-border);
  background: transparent;
  color: var(--color-text-secondary);
  font-family: inherit;
  font-size: var(--font-size-sm);
  font-weight: 500;
  white-space: nowrap;
  cursor: pointer;
  transition: background var(--duration-base) var(--ease-default),
              color var(--duration-base) var(--ease-default),
              border-color var(--duration-base) var(--ease-default);
  flex-shrink: 0;
  -webkit-appearance: none;
  appearance: none;
}

.help-center__tab:hover {
  background: var(--color-primary);
  color: var(--color-text-on-primary);
  border-color: var(--color-primary);
}

.help-center__tab--active {
  background: var(--color-primary);
  color: var(--color-text-on-primary);
  border-color: var(--color-primary);
}

.help-center__tab svg {
  flex-shrink: 0;
}

/* ── Panels ── */
.help-center__panel {
  display: none;
  animation: fadeInUp 0.3s ease;
}

.help-center__panel--active {
  display: block;
}

.help-center__panel-inner {
  max-width: 56rem;
  margin: 0 auto;
}

.help-center__panel-title {
  font-family: var(--font-heading);
  font-size: var(--font-size-2xl);
  font-weight: 600;
  letter-spacing: var(--tracking-tight);
  margin-block-end: var(--space-xl);
  color: var(--color-foreground);
}

/* ── Info Cards Grid ── */
.help-center__cards-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
}

@media (min-width: 750px) {
  .help-center__cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.help-center__cards-grid--2col {
  grid-template-columns: 1fr;
}

@media (min-width: 750px) {
  .help-center__cards-grid--2col {
    grid-template-columns: repeat(2, 1fr);
  }
}

.help-center__info-card {
  background: var(--color-card);
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: var(--radius-xl);
  padding: var(--space-xl);
}

.help-center__info-card h3 {
  font-size: var(--font-size-lg);
  font-weight: 600;
  margin-block-end: var(--space-xs);
  color: var(--color-foreground);
}

.help-center__info-card p {
  font-size: var(--font-size-sm);
  color: var(--color-text-secondary);
  line-height: var(--line-height-relaxed);
}

.help-center__chat-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.75rem;
  padding: 0.5rem 1.25rem;
  background: #51BD7A;
  color: #fff;
  border: none;
  border-radius: var(--radius-button);
  font-size: 0.8125rem;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  transition: background 0.2s, box-shadow 0.2s, transform 0.2s;
  box-shadow: 0 2px 8px rgba(45,138,35,0.25);
}
.help-center__chat-btn:hover {
  background: #51BD7A;
  box-shadow: 0 4px 16px rgba(45,138,35,0.4);
  transform: translateY(-1px);
}

.help-center__info-card p a {
  color: var(--color-foreground);
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.help-center__info-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-muted);
  border-radius: var(--radius-lg);
  margin-block-end: var(--space-md);
  color: var(--color-foreground);
}

/* ── Resource Cards ── */
.help-center__resource-card {
  display: block;
  background: var(--color-card);
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: var(--radius-xl);
  padding: var(--space-xl);
  text-decoration: none;
  color: var(--color-foreground);
  transition: transform var(--duration-base) var(--ease-default), box-shadow var(--duration-base) var(--ease-default);
}

.help-center__resource-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.help-center__resource-icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-primary);
  color: var(--color-text-on-primary);
  border-radius: var(--radius-lg);
  margin-block-end: var(--space-md);
}

.help-center__resource-card h3 {
  font-size: var(--font-size-lg);
  font-weight: 600;
  margin-block-end: var(--space-xs);
}

.help-center__resource-card p {
  font-size: var(--font-size-sm);
  color: var(--color-text-secondary);
  line-height: var(--line-height-base);
}

/* ── Two-col content ── */
.help-center__two-col {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-2xl);
}

@media (min-width: 750px) {
  .help-center__two-col {
    grid-template-columns: 1fr 1fr;
  }
}

.help-center__content-block h3 {
  font-size: var(--font-size-xl);
  font-weight: 600;
  margin-block-end: var(--space-sm);
  color: var(--color-foreground);
}

.help-center__content-block h4 {
  font-size: var(--font-size-base);
  font-weight: 600;
  margin-block-start: var(--space-lg);
  margin-block-end: var(--space-xs);
  color: var(--color-foreground);
}

.help-center__content-block p {
  font-size: var(--font-size-sm);
  color: var(--color-text-secondary);
  line-height: var(--line-height-relaxed);
  margin-block-end: var(--space-sm);
}

.help-center__content-block p a {
  color: var(--color-foreground);
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.help-center__content-block ul,
.help-center__content-block ol {
  padding-inline-start: var(--space-lg);
  margin-block-end: var(--space-md);
}

.help-center__content-block li {
  font-size: var(--font-size-sm);
  color: var(--color-text-secondary);
  line-height: var(--line-height-relaxed);
  margin-block-end: var(--space-xs);
}

.help-center__content-block li strong {
  color: var(--color-foreground);
}

.help-center__note {
  background: var(--color-muted);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  margin-block-start: var(--space-xl);
  font-size: var(--font-size-sm);
  color: var(--color-text-secondary);
  line-height: var(--line-height-relaxed);
}

.help-center__note strong {
  color: var(--color-foreground);
}

/* ── FAQ Accordion ── */
.help-center__faq-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.help-center__faq-item {
  border-bottom: 1px solid var(--color-border);
}

.help-center__faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: var(--space-lg) 0;
  background: none;
  border: none;
  font-family: inherit;
  font-size: var(--font-size-base);
  font-weight: 500;
  color: var(--color-foreground);
  cursor: pointer;
  text-align: left;
  gap: var(--space-md);
  -webkit-appearance: none;
  appearance: none;
}

.help-center__faq-question:hover {
  color: var(--color-text-secondary);
}

.help-center__faq-chevron {
  flex-shrink: 0;
  transition: transform var(--duration-base) var(--ease-default);
}

.help-center__faq-question[aria-expanded="true"] .help-center__faq-chevron {
  transform: rotate(180deg);
}

.help-center__faq-answer {
  padding-block-end: var(--space-lg);
  font-size: var(--font-size-sm);
  color: var(--color-text-secondary);
  line-height: var(--line-height-relaxed);
  max-width: 48rem;
}

/* ── Mobile ── */
@media (max-width: 749px) {
  .help-center {
    padding-block: var(--space-2xl);
  }

  .help-center__tabs-track {
    padding-inline: var(--space-xs);
  }

  .help-center__tab {
    font-size: 0.75rem;
    padding: 0.4375rem 0.875rem;
  }
}
/* END_SECTION:help-center */

/* START_SECTION:hero-billboard (INDEX:90) */
/* ── HP Hero Billboard Carousel ── */
.hero-bb {
  position: relative;
  width: 100%;
  min-height: 480px;
  display: flex;
  align-items: var(--hp-hero-align, center);
  justify-content: var(--hp-hero-justify, center);
  overflow: hidden;
  background: #000;
}

/* Override any alternation bg on the section wrapper */
.hp-section:has(.hero-bb) {
  background: transparent !important;
}

/* ── Color scheme applied to section wrapper ── */
/* Light scheme = light/cream bg, dark text */
.hero-bb--light { --hp-hero-text: #1a1a2e; color: #1a1a2e; }
/* Dark scheme = dark bg, white text */
.hero-bb--dark { --hp-hero-text: #fff; color: #fff; }

/* ── Slides ── */
.hero-bb__slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: var(--hp-hero-align, center);
  justify-content: var(--hp-hero-justify, center);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.8s ease, visibility 0.8s ease;
  z-index: 0;
}
.hero-bb__slide--active {
  opacity: 1;
  visibility: visible;
  z-index: 1;
}

/* Single slide: relative position for section height, full viewport coverage */
.hero-bb[data-slide-count="1"] .hero-bb__slide {
  position: relative;
  opacity: 1;
  visibility: visible;
  min-height: 480px;
  width: 100%;
}
.hero-bb[data-slide-count="1"] .hero-bb__slide .hero-bb__content {
  opacity: 1;
  transform: none;
  transition: none;
}
.hero-bb[data-slide-count="1"] .hero-bb__slide .hero-bb__media {
  position: absolute;
  top: -10%;
  left: 0;
  right: 0;
  height: 120%;
}

/* Multi-slide: first slide stays relative for height, rest absolute */
.hero-bb[data-slide-count]:not([data-slide-count="1"]) .hero-bb__slide:first-child {
  position: relative;
}

/* ── Text fade-in with delay after image ── */
.hero-bb__slide .hero-bb__content {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.6s ease 0.3s, transform 0.6s ease 0.3s;
}
.hero-bb__slide--active .hero-bb__content {
  opacity: 1;
  transform: translateY(0);
}

/* ── Media ── */
.hero-bb__media {
  position: absolute;
  top: -10%;
  left: 0;
  right: 0;
  height: 120%;
  z-index: 0;
  will-change: transform;
}

.hero-bb__image,
.hero-bb__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-bb__color-bg {
  position: absolute;
  inset: 0;
  background: var(--hero-bg-fallback, #1a1a2e);
}

.hero-bb__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(to top, var(--hp-hero-overlay) 0%, transparent 60%);
  pointer-events: none;
}

.hero-bb__content {
  position: relative;
  z-index: 2;
  text-align: var(--hp-hero-text-align, center);
  padding: var(--space-2xl) var(--space-xl) var(--space-4xl);
  max-width: 72rem;
  width: 100%;
  margin: 0 auto;
}

/* Heading sizes */
.hero-bb__heading {
  font-family: var(--font-heading);
  font-weight: 700;
  letter-spacing: var(--tracking-tight);
  line-height: var(--line-height-tight);
  margin-bottom: var(--space-sm);
}
.hero-bb--heading-small .hero-bb__heading { font-size: clamp(1.5rem, 3.5vw, 2.5rem); }
.hero-bb--heading-medium .hero-bb__heading { font-size: clamp(2rem, 5vw, 3.5rem); }
.hero-bb--heading-large .hero-bb__heading { font-size: clamp(2.25rem, 6vw, 4.5rem); }

/* Description sizes */
.hero-bb__tagline {
  font-weight: 400;
  opacity: 0.9;
  margin-bottom: var(--space-xl);
  line-height: var(--line-height-base);
  max-width: 42rem;
}
.hero-bb--desc-small .hero-bb__tagline { font-size: clamp(0.8125rem, 1.5vw, 1rem); }
.hero-bb--desc-medium .hero-bb__tagline { font-size: clamp(1rem, 2vw, 1.375rem); }
.hero-bb--desc-large .hero-bb__tagline { font-size: clamp(1.125rem, 2.5vw, 1.625rem); }

/* Tagline alignment follows content position */
.hero-bb__content--h-center .hero-bb__tagline { margin-inline: auto; }
.hero-bb__content--h-left .hero-bb__tagline { margin-inline: 0; }
.hero-bb__content--h-right .hero-bb__tagline { margin-inline: 0 0; margin-left: auto; }

.hero-bb__ctas {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
}
.hero-bb__content--h-center .hero-bb__ctas { justify-content: center; }
.hero-bb__content--h-left .hero-bb__ctas { justify-content: flex-start; }
.hero-bb__content--h-right .hero-bb__ctas { justify-content: flex-end; }

.hero-bb__btn {
  display: inline-flex;
  align-items: center;
  gap: 0.35em;
  padding: 0.85em 2em;
  border-radius: var(--radius-full);
  font-size: var(--font-size-sm);
  font-weight: 600;
  letter-spacing: 0.02em;
  text-decoration: none;
  transition: background var(--duration-base) var(--ease-default), color var(--duration-base) var(--ease-default), box-shadow var(--duration-base) var(--ease-default);
  cursor: pointer;
}

/* Light scheme (light bg, dark text): dark buttons */
.hero-bb--light .hero-bb__btn--primary {
  background: #1a1a2e;
  color: #fff;
}
.hero-bb--light .hero-bb__btn--primary:hover {
  background: #111122;
  box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}
.hero-bb--light .hero-bb__btn--secondary {
  background: transparent;
  border: 1.5px solid rgba(0,0,0,0.3);
  color: #1a1a2e;
}
.hero-bb--light .hero-bb__btn--secondary:hover {
  background: rgba(0,0,0,0.06);
  border-color: #1a1a2e;
}

/* Dark scheme (dark bg, white text): white buttons */
.hero-bb--dark .hero-bb__btn--primary {
  background: #fff;
  color: #1a1a2e;
}
.hero-bb--dark .hero-bb__btn--primary:hover {
  background: #f0f0f0;
  box-shadow: 0 4px 16px rgba(0,0,0,0.2);
}
.hero-bb--dark .hero-bb__btn--secondary {
  background: transparent;
  border: 1.5px solid rgba(255,255,255,0.6);
  color: #fff;
}
.hero-bb--dark .hero-bb__btn--secondary:hover {
  background: rgba(255,255,255,0.15);
  border-color: #fff;
}

/* ── Dot navigation ── */
.hero-bb__dots {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero-bb__dot {
  position: relative;
  width: 8px;
  height: 8px;
  border-radius: 4px;
  border: none;
  padding: 0;
  cursor: pointer;
  background: rgba(255,255,255,0.4);
  transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1), background 0.3s ease;
  overflow: hidden;
  -webkit-appearance: none;
  appearance: none;
}

.hero-bb__dot--active {
  width: 24px;
  background: rgba(255,255,255,0.5);
}

.hero-bb__dot-fill {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0%;
  background: #fff;
  border-radius: 4px;
  pointer-events: none;
}

.hero-bb__dot--active .hero-bb__dot-fill {
  animation: hero-bb-dot-progress var(--hp-autoplay-duration, 5s) linear forwards;
}

.hero-bb--paused .hero-bb__dot--active .hero-bb__dot-fill {
  animation-play-state: paused;
}

/* Dark scheme dots */
.hero-bb--dark .hero-bb__dot {
  background: rgba(0,0,0,0.2);
}
.hero-bb--dark .hero-bb__dot--active {
  background: rgba(0,0,0,0.3);
}
.hero-bb--dark .hero-bb__dot-fill {
  background: #1a1a2e;
}

@keyframes hero-bb-dot-progress {
  from { width: 0%; }
  to { width: 100%; }
}

/* ── Scroll-down button arrow bounce ── */
.hero-bb__btn--scroll .hero-bb__btn-arrow {
  display: inline-block;
  animation: hero-bb-bounce 2s ease infinite;
}

/* ── Scroll indicator ── */
.hero-bb__scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  background: transparent;
  border: none;
  padding: 0.5rem;
  cursor: pointer;
  color: var(--hp-hero-text, #fff);
  opacity: 0.6;
  transition: opacity 0.3s ease;
  line-height: 0;
  animation: hero-bb-pulse 2.5s ease-in-out infinite;
}

.hero-bb__scroll-indicator:hover {
  opacity: 1;
}

/* Color scheme sync */
.hero-bb__scroll-indicator--light { color: #1a1a2e; }
.hero-bb__scroll-indicator--dark { color: #fff; }

@keyframes hero-bb-bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(3px); }
}

@keyframes hero-bb-pulse {
  0%, 100% { opacity: 0.5; transform: translateX(-50%) translateY(0); }
  50% { opacity: 0.9; transform: translateX(-50%) translateY(4px); }
}

@media (min-width: 768px) {
  .hero-bb__content {
    padding-bottom: var(--space-4xl);
  }
}

/* ── Mobile overrides ── */
@media (max-width: 749px) {
  .hero-bb { min-height: 320px; }

  /* Single-slide mobile height */
  .hero-bb[data-slide-count="1"] .hero-bb__slide {
    min-height: 320px !important;
  }

  /* Mobile heading sizes */
  .hero-bb--m-heading-small .hero-bb__heading { font-size: clamp(1.25rem, 5vw, 1.75rem); }
  .hero-bb--m-heading-medium .hero-bb__heading { font-size: clamp(1.5rem, 6vw, 2.25rem); }
  .hero-bb--m-heading-large .hero-bb__heading { font-size: clamp(1.75rem, 7vw, 2.75rem); }
  .hero-bb--m-heading-auto .hero-bb__heading { font-size: unset; }

  /* Mobile description sizes */
  .hero-bb--m-desc-small .hero-bb__tagline { font-size: 0.8125rem; }
  .hero-bb--m-desc-medium .hero-bb__tagline { font-size: 1rem; }
  .hero-bb--m-desc-large .hero-bb__tagline { font-size: 1.125rem; }
  .hero-bb--m-desc-auto .hero-bb__tagline { font-size: unset; }

  .hero-bb__dots {
    bottom: 1.25rem;
  }
}
/* END_SECTION:hero-billboard */

/* START_SECTION:integration-features (INDEX:101) */
.integration-features {
    /* Section wrapper - no padding needed, rows handle their own backgrounds */
  }

  .integration-features--dark {
    color: #ffffff;
  }

  /* Row */
  .integration-features__row {
    padding: 60px 0;
    background-color: #ffffff;
  }

  .integration-features__row--alt {
    background-color: #f8f8f8;
  }

  .integration-features--dark .integration-features__row {
    background-color: #1a1a2e;
  }

  .integration-features--dark .integration-features__row--alt {
    background-color: #151527;
  }

  /* Container */
  .integration-features__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
  }

  @media (min-width: 769px) {
    .integration-features__container {
      grid-template-columns: 1fr 1fr;
      gap: 60px;
    }
  }

  /* Row direction: default = image left, text right */
  /* On desktop, reversed row swaps the visual order */
  @media (min-width: 769px) {
    .integration-features__row--reversed .integration-features__container {
      direction: rtl;
    }

    .integration-features__row--reversed .integration-features__container > * {
      direction: ltr;
    }
  }

  /* Media */
  .integration-features__media img,
  .integration-features__media video {
    display: block;
    width: 100%;
    height: auto;
    border-radius: var(--radius-image);
  }

  .integration-features__placeholder {
    background-color: #e8e8e8;
    border-radius: var(--radius-image);
    aspect-ratio: 4 / 3;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
  }

  .integration-features--dark .integration-features__placeholder {
    background-color: #2a2a4a;
  }

  .integration-features__placeholder svg {
    width: 60%;
    height: auto;
    opacity: 0.3;
  }

  /* Text */
  .integration-features__text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }

  .integration-features__heading {
    font-size: 32px;
    font-weight: 700;
    line-height: 1.2;
    margin: 0 0 20px;
    color: #2d2f30;
    letter-spacing: -0.01em;
  }

  .integration-features--dark .integration-features__heading {
    color: #ffffff;
  }

  .integration-features__description {
    font-size: 16px;
    line-height: 1.7;
    color: #515354;
  }

  .integration-features--dark .integration-features__description {
    color: rgba(255, 255, 255, 0.75);
  }

  /* Rich text elements within description */
  .integration-features__description h3 {
    font-size: 20px;
    font-weight: 600;
    margin: 24px 0 8px;
    color: #2d2f30;
  }

  .integration-features--dark .integration-features__description h3 {
    color: #ffffff;
  }

  .integration-features__description h3:first-child {
    margin-top: 0;
  }

  .integration-features__description p {
    margin: 0 0 16px;
  }

  .integration-features__description p:last-child {
    margin-bottom: 0;
  }

  .integration-features__description ul,
  .integration-features__description ol {
    margin: 12px 0;
    padding-left: 20px;
  }

  .integration-features__description li {
    margin-bottom: 8px;
    line-height: 1.6;
  }

  .integration-features__description li:last-child {
    margin-bottom: 0;
  }

  .integration-features__description strong {
    color: #2d2f30;
    font-weight: 600;
  }

  .integration-features--dark .integration-features__description strong {
    color: #ffffff;
  }

  .integration-features__description em {
    font-style: italic;
  }

  .integration-features__media {
    position: relative;
    aspect-ratio: 4 / 3;
    border-radius: var(--radius-image);
    overflow: hidden;
    background: #f5f4f0;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .integration-features__illustration {
    display: block;
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
  }

  /* Large images: fill the square */
  .integration-features__illustration[width],
  .integration-features__illustration.--fill {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  /* Small images (badges/logos): center at half size for @2x sharpness */
  .integration-features__illustration.--center {
    width: auto;
    height: auto;
    max-width: 50%;
    max-height: 50%;
    object-fit: contain;
  }

  .integration-features__placeholder--icon {
    background: #f5f4f0;
    display: flex;
    align-items: center;
    justify-content: center;
    aspect-ratio: 4 / 3;
    border-radius: var(--radius-image);
  }

  /* Mobile adjustments */
  @media (max-width: 768px) {
    .integration-features__row {
      padding: 40px 0;
    }

    .integration-features__heading {
      font-size: 26px;
      margin-bottom: 16px;
    }

    .integration-features__description {
      font-size: 15px;
    }
  }
/* END_SECTION:integration-features */

/* START_SECTION:integration-grid (INDEX:102) */
.integration-grid { padding-block: var(--space-3xl); }
.integration-grid__container { max-width: 72rem; margin: 0 auto; }

.integration-grid__header { text-align: center; margin-block-end: var(--space-xl); }
.integration-grid__title { font-family: var(--font-heading); font-size: clamp(1.25rem, 2.5vw, 1.75rem); font-weight: 600; letter-spacing: var(--tracking-tight); color: var(--color-foreground); margin-block-end: var(--space-xs); }
.integration-grid__subtitle { font-size: var(--font-size-base); color: var(--color-text-secondary); max-width: 500px; margin-inline: auto; line-height: var(--line-height-base); }

/* ── Filters ── */
.integration-grid__filters { display: flex; gap: 0.5rem; justify-content: center; flex-wrap: wrap; margin-block-end: var(--space-2xl); }
.integration-grid__filter { display: inline-flex; align-items: center; padding: 0.5rem 1rem; border-radius: var(--radius-full); border: 1px solid var(--color-border); background: transparent; color: var(--color-text-secondary); font-family: inherit; font-size: var(--font-size-sm); font-weight: 500; cursor: pointer; transition: background var(--duration-base), color var(--duration-base), border-color var(--duration-base); -webkit-appearance: none; appearance: none; }
.integration-grid__filter:hover,
.integration-grid__filter--active { background: var(--color-primary); color: var(--color-text-on-primary); border-color: var(--color-primary); }

/* ── Grid ── */
.integration-grid__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--space-md); }
@media (min-width: 750px) { .integration-grid__grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 990px) { .integration-grid__grid { grid-template-columns: repeat(4, 1fr); } }

/* ── Cards ── */
.integration-grid__card { display: flex; flex-direction: column; align-items: center; text-align: center; padding: var(--space-xl) var(--space-md); background: var(--color-card); border: 1px solid rgba(0,0,0,0.06); border-radius: var(--radius-xl); text-decoration: none; color: var(--color-foreground); transition: transform var(--duration-base) var(--ease-default), box-shadow var(--duration-base) var(--ease-default); position: relative; overflow: hidden; }
.integration-grid__card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.integration-grid__card[hidden] { display: none; }

/* ── Card visual (logo + hover overlay) ── */
.integration-grid__card-visual { position: relative; width: 80px; height: 80px; display: flex; align-items: center; justify-content: center; margin-block-end: var(--space-md); border-radius: var(--radius-lg); }
.integration-grid__card-img { width: 100%; height: 100%; object-fit: contain; border-radius: var(--radius-lg); transition: filter 0.4s ease, transform 0.4s ease; }
.integration-grid__card-placeholder { display: flex; align-items: center; justify-content: center; width: 100%; height: 100%; background: var(--color-muted); color: var(--color-text-muted); border-radius: var(--radius-lg); transition: filter 0.4s ease; }

/* ── Hover overlay: centered arrow in circle, bg blurs ── */
.integration-grid__card-overlay { position: absolute; inset: -8px; display: flex; align-items: center; justify-content: center; opacity: 0; transition: opacity 0.3s ease; z-index: 2; }
.integration-grid__card-arrow { display: flex; align-items: center; justify-content: center; width: 40px; height: 40px; background: rgba(255,255,255,0.95); border-radius: 50%; box-shadow: 0 2px 12px rgba(0,0,0,0.15); color: #1a1a2e; transform: scale(0.8); transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1); }

/* Hover state — only for linked cards */
.integration-grid__card[href]:not([href="#"]):hover .integration-grid__card-overlay { opacity: 1; }
.integration-grid__card[href]:not([href="#"]):hover .integration-grid__card-arrow { transform: scale(1); }
.integration-grid__card[href]:not([href="#"]):hover .integration-grid__card-img { filter: blur(2px) brightness(0.85); transform: scale(1.05); }
.integration-grid__card[href]:not([href="#"]):hover .integration-grid__card-placeholder { filter: blur(2px) brightness(0.85); }
.integration-grid__card[href]:not([href="#"]):hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }

/* No link — static card, no hover effects */
.integration-grid__card[href="#"],
.integration-grid__card:not([href]) { cursor: default; }
.integration-grid__card[href="#"]:hover,
.integration-grid__card:not([href]):hover { transform: none; box-shadow: none; }

/* No description — remove bottom margin on name */
.integration-grid__card-body:only-child { margin-top: auto; }
.integration-grid__card-name:last-child { margin-block-end: 0; }

/* ── Card body ── */
.integration-grid__card-name { font-size: var(--font-size-base); font-weight: 600; margin-block-end: var(--space-2xs); color: var(--color-foreground); }
.integration-grid__card-desc { font-size: var(--font-size-xs); color: var(--color-text-muted); line-height: var(--line-height-base); }

/* ── Dark mode ── */
.theme-dark .integration-grid__card { background: rgba(255,255,255,0.04); border-color: rgba(255,255,255,0.08); }
.theme-dark .integration-grid__card-arrow { background: rgba(255,255,255,0.15); color: #fff; backdrop-filter: blur(8px); }
.theme-dark .integration-grid__card:hover .integration-grid__card-img { filter: blur(2px) brightness(0.6); }

/* ── Mobile ── */
@media (max-width: 749px) {
  .integration-grid { padding-block: var(--space-2xl); }
  .integration-grid__filters { overflow-x: auto; flex-wrap: nowrap; justify-content: flex-start; scrollbar-width: none; -webkit-overflow-scrolling: touch; padding-block: 4px; }
  .integration-grid__filters::-webkit-scrollbar { display: none; }
  .integration-grid__filter { flex-shrink: 0; font-size: 0.75rem; padding: 0.4375rem 0.875rem; }
  .integration-grid__card { padding: var(--space-lg) var(--space-sm); }
  .integration-grid__card-visual { width: 56px; height: 56px; }
  .integration-grid__card-name { font-size: var(--font-size-sm); }
}
/* END_SECTION:integration-grid */

/* START_SECTION:integration-hero (INDEX:103) */
.integration-hero {
    padding: 0 0 60px;
  }

  .integration-hero--light {
    background-color: #f8f8f8;
    color: #2d2f30;
  }

  .integration-hero--dark {
    background-color: #1a1a2e;
    color: #ffffff;
  }

  .integration-hero__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
  }

  /* Breadcrumb */
  .integration-hero__breadcrumb {
    padding: 16px 0;
  }

  .integration-hero__breadcrumb ol {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0;
    margin: 0;
    padding: 0;
    font-size: 14px;
  }

  .integration-hero__breadcrumb li {
    display: flex;
    align-items: center;
    color: #515354;
  }

  .integration-hero--dark .integration-hero__breadcrumb li {
    color: rgba(255, 255, 255, 0.6);
  }

  .integration-hero__breadcrumb li + li::before {
    content: '/';
    margin: 0 8px;
    color: #515354;
  }

  .integration-hero--dark .integration-hero__breadcrumb li + li::before {
    color: rgba(255, 255, 255, 0.4);
  }

  .integration-hero__breadcrumb a {
    color: inherit;
    text-decoration: none;
  }

  .integration-hero__breadcrumb a:hover {
    text-decoration: underline;
  }

  .integration-hero__breadcrumb li[aria-current="page"] {
    color: #2d2f30;
    font-weight: 500;
  }

  .integration-hero--dark .integration-hero__breadcrumb li[aria-current="page"] {
    color: #ffffff;
  }

  /* Layout */
  .integration-hero__layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
    padding-top: 40px;
  }

  @media (min-width: 769px) {
    .integration-hero__layout {
      grid-template-columns: 1fr 1fr;
      gap: 60px;
      padding-top: 60px;
    }
  }

  /* Content */
  .integration-hero__content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }

  .integration-hero__logo {
    margin-bottom: 20px;
  }

  .integration-hero__logo img {
    display: block;
    width: 48px;
    height: 48px;
    object-fit: contain;
  }

  .integration-hero__heading {
    font-size: 44px;
    font-weight: 700;
    line-height: 1.1;
    margin: 0 0 20px;
    letter-spacing: -0.02em;
  }

  .integration-hero__description {
    font-size: 18px;
    line-height: 1.6;
    color: #515354;
    margin: 0 0 32px;
    max-width: 520px;
  }

  .integration-hero--dark .integration-hero__description {
    color: rgba(255, 255, 255, 0.75);
  }

  .integration-hero__actions {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 24px;
  }

  .integration-hero__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    background-color: #1a1a2e;
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border-radius: var(--radius-button);
    border: none;
    cursor: pointer;
    transition: opacity 0.2s ease;
  }

  .integration-hero__cta:hover {
    opacity: 0.85;
  }

  .integration-hero__ext-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 600;
    color: #1a1a2e;
    text-decoration: none;
    padding: 14px 24px;
    border: 1px solid #e5e5e5;
    border-radius: var(--radius-button);
    transition: border-color 0.15s;
  }
  .integration-hero__ext-link:hover { border-color: #1a1a2e; }
  .integration-hero--dark .integration-hero__ext-link { color: #fff; border-color: rgba(255,255,255,0.3); }
  .integration-hero--dark .integration-hero__ext-link:hover { border-color: #fff; }

  .integration-hero__voice {
    margin-bottom: 20px;
  }
  .integration-hero__voice-label {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #999;
    margin: 0 0 8px;
  }
  .integration-hero__voice-list {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
  }
  .integration-hero__voice-cmd {
    display: inline-block;
    padding: 6px 12px;
    background: #f5f4f0;
    border-radius: var(--radius-button);
    font-size: 13px;
    font-weight: 500;
    color: #1a1a2e;
    font-style: italic;
  }
  .integration-hero--dark .integration-hero__voice-cmd {
    background: rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.85);
  }

  .integration-hero__disclaimer {
    font-size: 11px;
    color: #999;
    margin: 0;
    line-height: 1.5;
  }
  .integration-hero--dark .integration-hero__disclaimer {
    color: rgba(255,255,255,0.4);
  }

  /* Media */
  .integration-hero__media img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: var(--radius-image);
  }

  /* Mobile adjustments */
  @media (max-width: 768px) {
    .integration-hero {
      padding: 0 0 40px;
    }

    .integration-hero__heading {
      font-size: 32px;
    }

    .integration-hero__description {
      font-size: 16px;
      margin-bottom: 24px;
    }

    .integration-hero__cta {
      padding: 12px 28px;
      font-size: 15px;
    }
  }
/* END_SECTION:integration-hero */

/* START_SECTION:integration-products (INDEX:104) */
.ip {
  padding: 3rem 0 4rem;
}
.ip__heading {
  font-size: 1.75rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 0 0 0.5rem;
  color: #1a1a2e;
}
.ip__subheading {
  font-size: 1rem;
  color: #777;
  margin: 0 0 2rem;
}
.ip__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.ip__card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 12px 16px;
  border-radius: var(--radius-card);
  border: 1px solid #e5e5e5;
  background: #fff;
  text-decoration: none;
  color: #1a1a2e;
  transition: border-color 0.15s, box-shadow 0.15s, transform 0.15s;
}
.ip__card:hover {
  border-color: #ccc;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  transform: translateY(-1px);
}
.ip__card-img {
  width: 56px;
  height: 56px;
  flex-shrink: 0;
  border-radius: var(--radius-image);
  overflow: hidden;
  background: #f5f4f0;
}
.ip__card-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  mix-blend-mode: multiply;
}
.ip__card-body {
  flex: 1;
  min-width: 0;
}
.ip__card-title {
  font-size: 0.875rem;
  font-weight: 600;
  margin: 0 0 2px;
  line-height: 1.3;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.ip__card-price {
  font-size: 0.8125rem;
  color: #777;
  margin: 0;
}
.ip__card-arrow {
  flex-shrink: 0;
  opacity: 0;
  transform: translateX(-4px);
  transition: opacity 0.15s, transform 0.15s;
  color: #999;
}
.ip__card:hover .ip__card-arrow {
  opacity: 1;
  transform: translateX(0);
}
@media (max-width: 749px) {
  .ip__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
/* END_SECTION:integration-products */

/* START_SECTION:legal-content (INDEX:105) */
/* ═══════════════════════════════════════
   LEGAL PAGE — narrow centered layout
   ═══════════════════════════════════════ */
.legal-page {
  max-width: 48rem;
  margin: 0 auto;
  padding: 6rem 1.5rem 4rem;
}

/* ── Breadcrumb ── */
.legal-breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8125rem;
  color: var(--color-text-muted, #71717a);
  margin-bottom: 2.5rem;
}
.legal-breadcrumb a {
  color: var(--color-text-muted, #71717a);
  text-decoration: none;
  transition: color 0.2s ease;
}
.legal-breadcrumb a:hover {
  color: var(--color-foreground, #1a1a2e);
}
.legal-breadcrumb span:last-child {
  color: var(--color-foreground, #1a1a2e);
}

/* ── White card container ── */
.legal-content {
  background: #fff;
  border-radius: 1.5rem;
  padding: 3rem;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
  animation: legalFadeIn 0.6s ease both;
}
@keyframes legalFadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ── Header ── */
.legal-title {
  font-size: 2rem;
  font-weight: 800;
  margin: 0 0 0.5rem;
  color: var(--color-foreground, #1a1a2e);
  line-height: 1.2;
  letter-spacing: -0.02em;
}
.legal-date {
  font-size: 0.8125rem;
  color: var(--color-text-muted, #71717a);
  margin: 0 0 3rem;
}

/* ── Table of contents ── */
.legal-toc {
  background: var(--color-secondary, #f5f4f0);
  border-radius: 0.75rem;
  padding: 1.25rem 1.5rem;
  margin-bottom: 2.5rem;
}
.legal-toc__title {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-text-muted, #71717a);
  margin: 0 0 0.75rem;
}
.legal-toc__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
}
.legal-toc__link {
  font-size: 0.875rem;
  color: var(--color-accent, #2563eb);
  text-decoration: none;
  line-height: 1.5;
  transition: opacity 0.2s ease;
}
.legal-toc__link:hover {
  opacity: 0.7;
}

/* ── Body typography — heading hierarchy ── */
.legal-body h2 {
  font-size: 1.5rem;
  font-weight: 700;
  margin: 2.5rem 0 1rem;
  padding-top: 2rem;
  border-top: 1px solid var(--color-border, #e5e5e5);
  color: var(--color-foreground, #1a1a2e);
  line-height: 1.3;
}
.legal-body h2:first-child {
  border-top: none;
  padding-top: 0;
  margin-top: 0;
}
.legal-body h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin: 2rem 0 0.75rem;
  color: var(--color-foreground, #1a1a2e);
  line-height: 1.3;
}
.legal-body h4 {
  font-size: 1.0625rem;
  font-weight: 600;
  margin: 1.75rem 0 0.625rem;
  color: var(--color-text-muted, #71717a);
  line-height: 1.4;
}
.legal-body h5 {
  font-size: 0.9375rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin: 1.5rem 0 0.5rem;
  color: var(--color-foreground, #1a1a2e);
  line-height: 1.4;
}
.legal-body p {
  line-height: 1.8;
  margin: 0 0 1.25rem;
  color: var(--color-body-text, #444);
}
.legal-body ul,
.legal-body ol {
  padding-left: 1.5rem;
  margin: 0 0 1.25rem;
}
.legal-body li {
  line-height: 1.8;
  margin-bottom: 0.5rem;
  color: var(--color-body-text, #444);
}
.legal-body a {
  color: var(--color-accent, #2563eb);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.legal-body a:hover {
  opacity: 0.7;
}
.legal-body strong {
  font-weight: 600;
  color: var(--color-foreground, #1a1a2e);
}
.legal-body table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
  font-size: 0.875rem;
}
.legal-body th,
.legal-body td {
  text-align: left;
  padding: 0.625rem 0.75rem;
  border-bottom: 1px solid var(--color-border, #e5e5e5);
  line-height: 1.6;
}
.legal-body th {
  font-weight: 600;
  color: var(--color-foreground, #1a1a2e);
}
.legal-body blockquote {
  border-left: 3px solid var(--color-border, #e5e5e5);
  padding-left: 1rem;
  margin: 1.5rem 0;
  color: var(--color-text-muted, #71717a);
  font-style: italic;
}

/* ── Dark mode ── */
@media (prefers-color-scheme: dark) {
  .legal-content {
    background: #1e1e21;
    box-shadow: 0 2px 12px rgba(0,0,0,0.2);
  }
  .legal-title,
  .legal-body h2,
  .legal-body h3,
  .legal-body h5,
  .legal-body strong,
  .legal-body th {
    color: #f0f0f5;
  }
  .legal-body h4 {
    color: #a0a0b0;
  }
  .legal-body p,
  .legal-body li {
    color: #c8c8d4;
  }
  .legal-breadcrumb,
  .legal-breadcrumb a,
  .legal-date,
  .legal-body blockquote {
    color: #8888a0;
  }
  .legal-breadcrumb span:last-child {
    color: #f0f0f5;
  }
  .legal-toc {
    background: #24242e;
  }
  .legal-body h2 {
    border-top-color: #2e2e3a;
  }
  .legal-body th,
  .legal-body td {
    border-bottom-color: #2e2e3a;
  }
}

/* ── Responsive ── */
@media (max-width: 749px) {
  .legal-page { padding: 3rem 1rem 3rem; }
  .legal-content { padding: 2rem 1.25rem; border-radius: 1rem; }
  .legal-title { font-size: 1.5rem; }
  .legal-body h2 { font-size: 1.25rem; margin-top: 2rem; }
  .legal-body h3 { font-size: 1.0625rem; }
  .legal-body h4 { font-size: 1rem; }
  .legal-body h5 { font-size: 0.875rem; }
  .legal-toc { padding: 1rem 1.25rem; }
}
/* END_SECTION:legal-content */

/* START_SECTION:manual-grid (INDEX:139) */
.manual-grid { padding: 3rem 0 4rem; }
.manual-grid__container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }
.manual-grid__header { text-align: center; margin-bottom: 3rem; }
.manual-grid__title { font-size: 2rem; font-weight: 700; color: #1a1a2e; margin: 0 0 0.5rem; }
.manual-grid__subtitle { font-size: 1rem; color: #666; margin: 0; max-width: 600px; margin-inline: auto; }

.manual-grid__category { margin-bottom: 2.5rem; }
.manual-grid__category-title {
  font-size: 1.125rem; font-weight: 600; color: #1a1a2e;
  margin: 0 0 1rem; padding-bottom: 0.75rem;
  border-bottom: 1px solid #eee;
}

.manual-grid__cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 1.25rem;
}

.manual-grid__card {
  display: flex; flex-direction: column;
  background: #fff; border: 1px solid #eee; border-radius: var(--radius-card);
  overflow: hidden; text-decoration: none; color: inherit;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.manual-grid__card:hover {
  border-color: #ccc;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

.manual-grid__card-img {
  aspect-ratio: 1; background: #f5f5f5;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.manual-grid__card-img img {
  width: 100%; height: 100%; object-fit: cover;
}
.manual-grid__card-placeholder { color: #ccc; }

.manual-grid__card-info { padding: 0.75rem 1rem 1rem; }
.manual-grid__card-title {
  font-size: 0.875rem; font-weight: 600; color: #1a1a2e;
  margin: 0 0 0.25rem; line-height: 1.3;
}
.manual-grid__card-link {
  font-size: 0.75rem; color: #51BD7A; font-weight: 500;
  display: inline-flex; align-items: center; gap: 2px;
}

@media (max-width: 767px) {
  .manual-grid__cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
  }
  .manual-grid__title { font-size: 1.5rem; }
}
/* END_SECTION:manual-grid */

/* START_SECTION:manual-steps (INDEX:150) */
.manual-steps {
    --ms-green: #51BD7A;
    --ms-dark: #1a1a2e;
    --ms-text: #2d2f30;
    --ms-bg: #ffffff;
    --ms-card-bg: #ffffff;
    --ms-card-border: #e2e2e2;
    --ms-muted: #6b6e70;
    padding: 64px 24px;
  }

  .manual-steps--dark {
    --ms-bg: #1a1a2e;
    --ms-card-bg: #252540;
    --ms-card-border: #3a3a55;
    --ms-text: #f0f0f0;
    --ms-muted: #b0b0b8;
  }

  .manual-steps {
    background-color: var(--ms-bg);
    color: var(--ms-text);
  }

  .manual-steps__container {
    max-width: 1200px;
    margin: 0 auto;
  }

  /* ---- Hero ---- */
  .manual-steps__hero {
    text-align: center;
    margin-bottom: 48px;
  }

  .manual-steps__eyebrow {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--ms-green);
    margin: 0 0 12px;
  }

  .manual-steps__heading {
    font-size: 36px;
    font-weight: 700;
    line-height: 1.15;
    margin: 0 0 16px;
    color: var(--ms-text);
  }

  .manual-steps__intro {
    font-size: 16px;
    line-height: 1.6;
    color: var(--ms-muted);
    max-width: 640px;
    margin: 0 auto;
  }

  /* ---- Steps grid ---- */
  .manual-steps__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 48px;
  }

  .manual-steps__card {
    background: var(--ms-card-bg);
    border: 1px solid var(--ms-card-border);
    border-radius: var(--radius-card);
    padding: 32px 24px;
    text-align: center;
  }

  .manual-steps__badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: var(--ms-green);
    color: #ffffff;
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 16px;
  }

  .manual-steps__card-title {
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 8px;
    color: var(--ms-text);
  }

  .manual-steps__card-desc {
    font-size: 14px;
    line-height: 1.55;
    color: var(--ms-muted);
    margin: 0;
  }

  /* ---- CTA ---- */
  .manual-steps__cta {
    text-align: center;
  }

  .manual-steps__download {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    border: 1.5px solid var(--ms-green);
    border-radius: var(--radius-button);
    color: var(--ms-green);
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: background-color 0.2s ease, color 0.2s ease;
  }

  .manual-steps__download:hover {
    background-color: var(--ms-green);
    color: #ffffff;
  }

  .manual-steps__download-icon {
    flex-shrink: 0;
  }

  /* ---- Responsive ---- */
  @media screen and (max-width: 768px) {
    .manual-steps {
      padding: 48px 16px;
    }

    .manual-steps__heading {
      font-size: 28px;
    }

    .manual-steps__grid {
      grid-template-columns: 1fr;
      gap: 16px;
    }
  }
/* END_SECTION:manual-steps */

/* START_SECTION:newsroom-press-kits (INDEX:163) */
/* ── Newsroom: Press Kits ── */
.newsroom-kits {
  padding: var(--space-3xl) 0;
}

.newsroom-kits__container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.newsroom-kits__heading {
  font-size: var(--font-size-2xl);
  font-weight: 700;
  color: var(--color-text);
  margin: 0 0 var(--space-xl);
}

.newsroom-kits__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
}

.newsroom-kits__card {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--color-surface);
  display: flex;
  flex-direction: column;
}

.newsroom-kits__image-wrap {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #f5f5f5;
}

.newsroom-kits__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.newsroom-kits__body {
  padding: var(--space-lg);
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  flex: 1;
}

.newsroom-kits__product {
  font-size: var(--font-size-lg);
  font-weight: 600;
  color: var(--color-text);
  margin: 0;
}

.newsroom-kits__files {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

.newsroom-kits__file-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-sm) var(--space-md);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  text-decoration: none;
  color: var(--color-text);
  font-size: var(--font-size-sm);
  transition: background 0.15s ease;
}

.newsroom-kits__file-link:hover {
  background: var(--color-surface-alt);
}

.newsroom-kits__file-label {
  font-weight: 500;
}

.newsroom-kits__file-size {
  font-size: var(--font-size-xs);
  color: var(--color-text-subtle);
  background: var(--color-surface-alt);
  padding: 2px 8px;
  border-radius: var(--radius-sm);
}

.newsroom-kits__download-all {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: var(--space-sm) var(--space-lg);
  background: #51BD7A;
  color: #fff;
  border-radius: var(--radius-md);
  text-decoration: none;
  font-size: var(--font-size-sm);
  font-weight: 600;
  margin-top: auto;
  transition: background 0.15s ease;
}

.newsroom-kits__download-all:hover {
  background: #51BD7A;
}

@media (min-width: 768px) {
  .newsroom-kits__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .newsroom-kits__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
/* END_SECTION:newsroom-press-kits */

/* START_SECTION:newsroom-press-quotes (INDEX:164) */
/* ── Newsroom: Press Quotes ── */
.newsroom-quotes {
  padding: var(--space-3xl) 0;
  background: var(--color-surface-alt);
}

.newsroom-quotes__container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.newsroom-quotes__heading {
  font-size: var(--font-size-2xl);
  font-weight: 700;
  color: var(--color-text);
  margin: 0 0 var(--space-xl);
}

.newsroom-quotes__track {
  display: flex;
  gap: var(--space-lg);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding-bottom: var(--space-sm);
}

.newsroom-quotes__track::-webkit-scrollbar {
  display: none;
}

.newsroom-quotes__card {
  flex: 0 0 min(400px, 85vw);
  scroll-snap-align: start;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
  background: var(--color-surface);
}

.newsroom-quotes__text {
  font-size: var(--font-size-lg);
  font-style: italic;
  line-height: 1.6;
  color: var(--color-text);
  margin: 0;
  flex: 1;
}

.newsroom-quotes__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
  flex-wrap: wrap;
}

.newsroom-quotes__source {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.newsroom-quotes__logo-wrap {
  width: 80px;
  flex-shrink: 0;
}

.newsroom-quotes__logo {
  width: 100%;
  height: auto;
  display: block;
  opacity: 0.7;
}

.newsroom-quotes__source-name {
  font-style: normal;
  font-weight: 600;
  font-size: var(--font-size-sm);
  color: var(--color-text-subtle);
}

.newsroom-quotes__article-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: var(--font-size-sm);
  font-weight: 600;
  color: #51BD7A;
  text-decoration: none;
}

.newsroom-quotes__article-link:hover {
  text-decoration: underline;
}

@media (min-width: 768px) {
  .newsroom-quotes__track {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    overflow: visible;
    scroll-snap-type: none;
  }

  .newsroom-quotes__card {
    flex: unset;
  }
}

@media (min-width: 1024px) {
  .newsroom-quotes__track {
    grid-template-columns: repeat(3, 1fr);
  }
}
/* END_SECTION:newsroom-press-quotes */

/* START_SECTION:newsroom-releases (INDEX:165) */
/* ── Newsroom: Press Releases ── */
.newsroom-releases {
  padding: var(--space-3xl) 0;
}

.newsroom-releases__container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.newsroom-releases__heading {
  font-size: var(--font-size-2xl);
  font-weight: 700;
  color: var(--color-text);
  margin: 0 0 var(--space-xl);
}

.newsroom-releases__track {
  display: flex;
  gap: var(--space-md);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding-bottom: var(--space-sm);
}

.newsroom-releases__track::-webkit-scrollbar {
  display: none;
}

.newsroom-releases__card {
  flex: 0 0 280px;
  scroll-snap-align: start;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  background: var(--color-surface);
  transition: box-shadow 0.2s ease;
}

.newsroom-releases__card:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.newsroom-releases__image-wrap {
  margin: calc(var(--space-lg) * -1) calc(var(--space-lg) * -1) 0;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  overflow: hidden;
}

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

.newsroom-releases__date {
  font-size: var(--font-size-xs);
  color: var(--color-text-subtle);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.newsroom-releases__title {
  font-size: var(--font-size-md);
  font-weight: 600;
  color: var(--color-text);
  margin: 0;
  line-height: 1.4;
  flex: 1;
}

.newsroom-releases__title-link {
  color: inherit;
  text-decoration: none;
}

.newsroom-releases__title-link:hover {
  text-decoration: underline;
}

.newsroom-releases__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: var(--font-size-sm);
  font-weight: 600;
  color: #51BD7A;
  text-decoration: none;
  margin-top: auto;
}

.newsroom-releases__link:hover {
  text-decoration: underline;
}

@media (min-width: 768px) {
  .newsroom-releases__track {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    overflow: visible;
    scroll-snap-type: none;
  }

  .newsroom-releases__card {
    flex: unset;
  }
}

@media (min-width: 1024px) {
  .newsroom-releases__track {
    grid-template-columns: repeat(4, 1fr);
  }
}
/* END_SECTION:newsroom-releases */

/* START_SECTION:page-app-hero (INDEX:169) */
/* ═══════════════════════════════════════
    APP HERO — split layout for app pages
    ═══════════════════════════════════════ */
  .app-hero {
    background: var(--app-hero-bg, #f5f4f0);
    padding: 5rem 0;
    overflow: hidden;
  }
  .app-hero__container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
  }

  /* Media position toggle (desktop) */
  .app-hero--media-left  .app-hero__media { order: 0; }
  .app-hero--media-left  .app-hero__text  { order: 1; }
  .app-hero--media-right .app-hero__media { order: 1; }
  .app-hero--media-right .app-hero__text  { order: 0; }

  /* ── Pill subtitle ── */
  .app-hero__pill {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.4rem 0.95rem;
    background: var(--app-hero-pill-bg, #51BD7A);
    color: var(--app-hero-pill-text, #fff);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    border-radius: 999px;
    margin-bottom: 1.25rem;
    width: fit-content;
  }
  .app-hero__pill-icon {
    display: block;
    border-radius: 50%;
  }

  /* ── Text ── */
  .app-hero__heading {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.03em;
    color: var(--color-foreground, #1a1a2e);
    margin: 0 0 1.25rem;
  }
  .app-hero__description {
    font-size: 1.0625rem;
    font-weight: 500;
    line-height: 1.7;
    color: var(--color-body-text, #555);
    margin: 0 0 1.5rem;
    max-width: 36rem;
  }

  /* ── Learn more CTA ── */
  .app-hero__cta { margin: 0 0 1.25rem; }
  .app-hero__learn-more {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #51BD7A;
    color: #fff;
    padding: 0.875rem 1.5rem;
    border-radius: var(--radius-button, 999px);
    font-size: 0.9375rem;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.2s ease, transform 0.15s ease;
  }
  .app-hero__learn-more:hover {
    background: #45a468;
    transform: translateY(-1px);
  }
  .app-hero__learn-more svg { transition: transform 0.2s ease; }
  .app-hero__learn-more:hover svg { transform: translateX(2px); }

  /* ── Download buttons ── */
  .app-hero__buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
  }
  .app-hero__btn {
    display: inline-flex;
    align-items: center;
    gap: 0.625rem;
    background: #1a1a2e;
    color: #fff;
    padding: 0.875rem 1.75rem;
    border-radius: var(--radius-button);
    font-size: 0.9375rem;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.2s ease, transform 0.15s ease;
  }
  .app-hero__btn:hover {
    background: #2a2a3e;
    transform: translateY(-1px);
  }

  /* ── System requirements ── */
  .app-hero__sys-req {
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--color-text-muted, #71717a);
    line-height: 1.5;
    margin: 0;
    max-width: 30rem;
  }

  /* ── Media ── */
  .app-hero__media {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .app-hero__image,
  .app-hero__video {
    width: 100%;
    height: auto;
    border-radius: 1rem;
    box-shadow: 0 8px 32px rgba(0,0,0,0.08);
    display: block;
  }
  .app-hero__video { background: #000;}
  .app-hero__placeholder {
    width: 100%;
    aspect-ratio: 4/3;
    background: rgba(0,0,0,0.04);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  /* ── Responsive — mobile keeps text-first, image-second regardless of desktop position ── */
  @media (max-width: 749px) {
    .app-hero { padding: 3rem 0; }
    .app-hero__container {
      grid-template-columns: 1fr;
      gap: 2rem;
    }
    .app-hero--media-left  .app-hero__text,
    .app-hero--media-right .app-hero__text  { order: 0; }
    .app-hero--media-left  .app-hero__media,
    .app-hero--media-right .app-hero__media { order: 1; }
    .app-hero__heading { font-size: 1.75rem; }
    .app-hero__buttons { flex-direction: column; }
    .app-hero__btn { justify-content: center; }
  }
/* END_SECTION:page-app-hero */

/* START_SECTION:page-declarations (INDEX:179) */
.declarations-page {
    padding: 60px 20px;
    background: #fff;
  }

  .declarations-container {
    max-width: 1000px;
    margin: 0 auto;
  }

  .declarations-heading {
    font-size: 32px;
    font-weight: 700;
    color: #1a1a2e;
    margin: 0 0 8px;
    line-height: 1.2;
  }

  .declarations-subtitle {
    font-size: 16px;
    color: #666;
    margin: 0 0 40px;
    line-height: 1.5;
  }

  .declarations-table-heading {
    font-size: 20px;
    font-weight: 600;
    color: #1a1a2e;
    margin: 0 0 16px;
  }

  /* Desktop table */
  .declarations-table-wrapper {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .declarations-table {
    width: 100%;
    border-collapse: collapse;
    border-radius: var(--radius-card);
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
  }

  .declarations-table thead tr {
    background: #1a1a2e;
  }

  .declarations-table th {
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    text-align: left;
    padding: 14px 20px;
    letter-spacing: 0.02em;
  }

  .declarations-table tbody tr {
    background: #fff;
    transition: background 0.15s ease;
  }

  .declarations-table tbody tr:nth-child(even) {
    background: #f8f8f8;
  }

  .declarations-table tbody tr:hover {
    background: #f0f0f0;
  }

  .declarations-table td {
    padding: 14px 20px;
    font-size: 14px;
    color: #333;
    border-bottom: 1px solid #eee;
    vertical-align: middle;
  }

  .declarations-table tbody tr:last-child td {
    border-bottom: none;
  }

  .declarations-download-btn {
    display: inline-block;
    background: #51BD7A;
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    padding: 6px 16px;
    border-radius: var(--radius-button);
    text-decoration: none;
    transition: background 0.2s ease;
    white-space: nowrap;
  }

  .declarations-download-btn:hover {
    background: #51BD7A;
    color: #fff;
  }

  .declarations-unavailable {
    color: #999;
  }

  /* Mobile cards - hidden on desktop */
  .declarations-cards {
    display: none;
  }

  .declarations-card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: var(--radius-card);
    padding: 16px;
    margin-bottom: 12px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
  }

  .declarations-card:nth-child(even) {
    background: #f8f8f8;
  }

  .declarations-card-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
  }

  .declarations-card-row:not(:last-child) {
    border-bottom: 1px solid #eee;
  }

  .declarations-card-label {
    font-size: 12px;
    font-weight: 600;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 0.04em;
  }

  .declarations-card-value {
    font-size: 14px;
    color: #333;
    text-align: right;
  }

  .declarations-empty {
    font-size: 15px;
    color: #999;
    text-align: center;
    padding: 40px 0;
  }

  @media screen and (max-width: 749px) {
    .declarations-page {
      padding: 40px 16px;
    }

    .declarations-heading {
      font-size: 26px;
    }

    .declarations-table-wrapper {
      display: none;
    }

    .declarations-cards {
      display: block;
    }
  }
/* END_SECTION:page-declarations */

/* START_SECTION:page-security (INDEX:205) */
.security-page {
    --security-green: #51BD7A;
    --security-green-dark: #51BD7A;
    --security-green-light: #51BD7A;
    --security-dark: #1a1a2e;
  }

  .security-hero {
    background: var(--security-dark);
    padding: 60px 20px 0;
    text-align: center;
  }

  .security-hero__inner {
    max-width: 900px;
    margin: 0 auto;
  }

  .security-hero__heading {
    color: #fff;
    font-size: 2.4rem;
    font-weight: 700;
    margin: 0 0 16px;
    line-height: 1.2;
  }

  .security-hero__description {
    color: #fff;
    font-size: 1.05rem;
    line-height: 1.6;
    margin: 0 0 32px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.95;
  }

  .security-tabs {
    display: inline-flex;
    gap: 0;
    border-radius: 6px 6px 0 0;
    overflow: hidden;
  }

  .security-tab {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    border: none;
    padding: 14px 32px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease;
  }

  .security-tab:hover {
    background: rgba(255, 255, 255, 0.35);
  }

  .security-tab--active {
    background: #fff;
    color: var(--security-dark);
  }

  .security-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 20px 60px;
  }

  .security-panel {
    display: none;
  }

  .security-panel--active {
    display: block;
  }

  .security-panel[hidden] {
    display: none;
  }

  .security-panel__heading {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--security-dark);
    margin: 0 0 24px;
  }

  .security-panel__body.rte {
    font-size: 1rem;
    line-height: 1.7;
    color: #333;
  }

  .security-panel__body.rte ul,
  .security-panel__body.rte ol {
    padding-left: 24px;
    margin: 16px 0;
  }

  .security-panel__body.rte li {
    margin-bottom: 8px;
  }

  .security-panel__body.rte a {
    color: var(--security-green);
    text-decoration: underline;
  }

  .security-panel__empty {
    color: #666;
    font-size: 1rem;
    padding: 40px 0;
    text-align: center;
  }

  /* PGP Key */
  .pgp-key {
    margin-top: 32px;
    border: 1px solid #e0e0e0;
    border-radius: var(--radius-card);
    overflow: hidden;
  }

  .pgp-key__toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 14px 20px;
    background: #f7f7f7;
    border: none;
    cursor: pointer;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--security-dark);
    transition: background 0.2s ease;
  }

  .pgp-key__toggle:hover {
    background: #efefef;
  }

  .pgp-key__chevron {
    transition: transform 0.2s ease;
  }

  .pgp-key__toggle[aria-expanded="true"] .pgp-key__chevron {
    transform: rotate(180deg);
  }

  .pgp-key__block {
    padding: 0 20px 20px;
    background: #fafafa;
  }

  .pgp-key__block[hidden] {
    display: none;
  }

  .pgp-key__pre {
    background: #1a1a2e;
    color: #e0e0e0;
    padding: 20px;
    border-radius: 6px;
    overflow-x: auto;
    font-size: 0.78rem;
    line-height: 1.5;
    margin: 16px 0 12px;
    white-space: pre-wrap;
    word-break: break-all;
  }

  .pgp-key__copy {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 20px;
    background: var(--security-green);
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s ease;
  }

  .pgp-key__copy:hover {
    background: var(--security-green-dark);
  }

  /* Fixed Issues Table */
  .fixed-issues-table-wrapper {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .fixed-issues-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.95rem;
  }

  .fixed-issues-table thead th {
    text-align: left;
    padding: 12px 16px;
    background: #f7f7f7;
    font-weight: 700;
    color: var(--security-dark);
    border-bottom: 2px solid #e0e0e0;
    white-space: nowrap;
  }

  .fixed-issues-table tbody td {
    padding: 14px 16px;
    border-bottom: 1px solid #eee;
    color: #333;
    vertical-align: top;
    line-height: 1.5;
  }

  .fixed-issues-table__date {
    white-space: nowrap;
    min-width: 120px;
    font-weight: 600;
  }

  .fixed-issues-table__desc {
    min-width: 250px;
  }

  .fixed-issues-table__release {
    min-width: 140px;
  }

  .fixed-issues-table__link {
    display: inline-block;
    margin-top: 4px;
    color: var(--security-green);
    text-decoration: underline;
    font-size: 0.88rem;
  }

  .fixed-issues-table tbody tr:hover {
    background: #fafafa;
  }

  @media (max-width: 600px) {
    .security-hero {
      padding: 40px 16px 0;
    }

    .security-hero__heading {
      font-size: 1.6rem;
    }

    .security-hero__description {
      font-size: 0.95rem;
    }

    .security-tab {
      padding: 12px 20px;
      font-size: 0.78rem;
    }

    .security-content {
      padding: 28px 16px 40px;
    }

    .security-panel__heading {
      font-size: 1.3rem;
    }

    .fixed-issues-table {
      font-size: 0.85rem;
    }

    .fixed-issues-table thead th,
    .fixed-issues-table tbody td {
      padding: 10px 12px;
    }
  }
/* END_SECTION:page-security */

/* START_SECTION:pdp-app-download (INDEX:225) */
/* Chameleon section: inherits predecessor's background, collapses margins */
  .pdp-app-cta-section {
    margin-top: 0 !important;
    padding: 0;
    background-color: #fff;
  }
  .theme-dark .pdp-app-cta-section {
    background-color: #1e1e21;
  }
  /* On PDP, also paint the preceding reviews wrapper white */
  .pdp-reviews-section {
    background-color: #fff;
  }
  .theme-dark .pdp-reviews-section {
    background-color: #1e1e21;
  }
  .pdp-app-cta {
    padding-block: 12px 2rem;
  }

  .pdp-app-cta__inner {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    border-radius: var(--radius-xl, 1rem);
    min-height: 80px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
  }

  /* Background variants */
  .pdp-app-cta--light .pdp-app-cta__inner {
    background-color: #f8f7f4;
    color: #1a1a2e;
  }

  .pdp-app-cta--dark .pdp-app-cta__inner {
    background-color: #1a1a2e;
    color: #f8f7f4;
  }

  .pdp-app-cta--accent .pdp-app-cta__inner {
    background-color: #51BD7A;
    color: #fff;
  }

  /* Icon */
  .pdp-app-cta__icon {
    flex-shrink: 0;
  }

  .pdp-app-cta__icon img {
    width: 40px;
    height: 40px;
    border-radius: 0.5rem;
    object-fit: cover;
  }

  /* Text */
  .pdp-app-cta__text {
    flex: 1;
    min-width: 0;
  }

  .pdp-app-cta__title {
    font-size: 0.9375rem;
    font-weight: 600;
    line-height: 1.3;
    margin: 0;
  }

  .pdp-app-cta__desc {
    font-size: 0.8125rem;
    line-height: 1.4;
    margin: 0.125rem 0 0;
    opacity: 0.75;
  }

  /* Badges */
  .pdp-app-cta__badges {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-shrink: 0;
  }

  .pdp-app-cta__badge {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.5rem 1rem;
    border-radius: var(--radius-button);
    font-size: 0.8125rem;
    font-weight: 500;
    text-decoration: none;
    white-space: nowrap;
    transition: opacity 0.2s ease;
    line-height: 1;
  }

  .pdp-app-cta__badge:hover {
    opacity: 0.8;
  }

  .pdp-app-cta__badge-icon {
    flex-shrink: 0;
  }

  /* Light / accent variant badges */
  .pdp-app-cta--light .pdp-app-cta__badge,
  .pdp-app-cta--accent .pdp-app-cta__badge {
    background-color: #1a1a2e;
    color: #fff;
  }

  /* Dark variant badges */
  .pdp-app-cta--dark .pdp-app-cta__badge {
    background-color: #fff;
    color: #1a1a2e;
  }

  /* Mobile: compact stack */
  @media screen and (max-width: 749px) {
    .pdp-app-cta__inner {
      flex-wrap: wrap;
      gap: 0.75rem;
      padding: 1rem;
    }

    .pdp-app-cta__text {
      flex-basis: calc(100% - 56px);
    }

    .pdp-app-cta__badges {
      width: 100%;
    }

    .pdp-app-cta__badge {
      flex: 1;
      justify-content: center;
      padding: 0.5rem 0.75rem;
      font-size: 0.75rem;
    }
  }
/* END_SECTION:pdp-app-download */

/* START_SECTION:pdp-before-after (INDEX:226) */
.pdp-before-after {
    padding: 4rem 0;
  }

  @media screen and (min-width: 750px) {
    .pdp-before-after {
      padding: 5rem 0;
    }
  }

  .pdp-before-after__inner {
    max-width: 56rem;
    margin: 0 auto;
    padding: 0 1.25rem;
  }

  /* Header */
  .pdp-before-after__header {
    text-align: center;
    margin-bottom: 2.5rem;
  }

  .pdp-before-after__title {
    font-size: 2rem;
    font-weight: 600;
    letter-spacing: -0.02em;
    color: #1a1a2e;
    margin: 0 0 0.5rem;
  }

  @media screen and (min-width: 750px) {
    .pdp-before-after__title {
      font-size: 2.25rem;
    }
  }

  .pdp-before-after__subtitle {
    font-size: 0.9375rem;
    color: rgba(26, 26, 46, 0.55);
    margin: 0 auto;
    max-width: 480px;
    line-height: 1.6;
  }

  /* Slider container */
  .pdp-before-after__slider {
    display: block;
  }

  .pdp-before-after__container {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-xl, 1rem);
    aspect-ratio: 16 / 9;
    cursor: ew-resize;
    user-select: none;
    -webkit-user-select: none;
    touch-action: none;
  }

  @media screen and (max-width: 749px) {
    .pdp-before-after__container {
      aspect-ratio: 4 / 3;
    }
  }

  .pdp-before-after__container--active {
    cursor: grabbing;
  }

  /* Images */
  .pdp-before-after__image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
  }

  .pdp-before-after__before-wrap {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
  }

  /* Handle */
  .pdp-before-after__handle {
    position: absolute;
    top: 0;
    bottom: 0;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translateX(-50%);
    outline: none;
  }

  .pdp-before-after__handle-line {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 2px;
    background: #fff;
    transform: translateX(-50%);
    box-shadow: 0 0 4px rgba(0, 0, 0, 0.3);
  }

  .pdp-before-after__handle-knob {
    position: relative;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
    color: #1a1a2e;
    transition: transform 150ms ease;
    z-index: 1;
  }

  .pdp-before-after__handle:hover .pdp-before-after__handle-knob,
  .pdp-before-after__handle:focus-visible .pdp-before-after__handle-knob {
    transform: scale(1.1);
  }

  .pdp-before-after__handle:focus-visible .pdp-before-after__handle-knob {
    outline: 2px solid #1a1a2e;
    outline-offset: 2px;
  }

  /* Labels */
  .pdp-before-after__label {
    position: absolute;
    top: 1rem;
    z-index: 4;
    background: rgba(0, 0, 0, 0.55);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    padding: 0.375rem 0.75rem;
    border-radius: 2rem;
    pointer-events: none;
  }

  .pdp-before-after__label--before {
    left: 1rem;
  }

  .pdp-before-after__label--after {
    right: 1rem;
  }

  /* Demo placeholders — shown when no images uploaded */
  .pdp-before-after__demo-panel {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
  }

  .pdp-before-after__demo-panel--before {
    background: linear-gradient(135deg, #e8e5e0 0%, #d4d1cc 100%);
  }

  .pdp-before-after__demo-panel--after {
    background: linear-gradient(135deg, #c8e6c9 0%, #a5d6a7 100%);
  }

  .pdp-before-after__demo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: rgba(26, 26, 46, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.1em;
  }

  .pdp-before-after__demo-subtext {
    font-size: 0.75rem;
    color: rgba(26, 26, 46, 0.25);
    text-align: center;
    max-width: 200px;
  }

  /* Mobile */
  @media screen and (max-width: 749px) {
    .pdp-before-after__title {
      font-size: 1.5rem;
    }

    .pdp-before-after__header {
      margin-bottom: 1.5rem;
    }

    .pdp-before-after__handle-knob {
      width: 36px;
      height: 36px;
    }

    .pdp-before-after__handle-knob svg {
      width: 16px;
      height: 16px;
    }
  }
/* END_SECTION:pdp-before-after */

/* START_SECTION:pdp-benefits (INDEX:227) */
.pdp-benefits {
    padding-block: 4rem;
  }

  .pdp-benefits__header {
    text-align: center;
    margin-block-end: 3rem;
  }

  .pdp-benefits__eyebrow {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--color-text-muted);
    margin-block-end: 0.5rem;
  }

  .pdp-benefits__title {
    font-size: var(--font-size-3xl);
    font-weight: 600;
    letter-spacing: var(--tracking-tight);
    color: var(--color-foreground);
  }

  .pdp-benefits__subtitle {
    color: var(--color-text-muted);
    margin-block-start: 0.75rem;
    max-width: 42rem;
    margin-inline: auto;
    line-height: var(--line-height-base);
  }

  .pdp-benefits__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .pdp-benefits__card {
    text-align: center;
    background: transparent;
  }

  .pdp-benefits__image-wrapper {
    aspect-ratio: 3 / 4;
    background-color: var(--color-secondary);
    border-radius: var(--radius-xl);
    margin-block-end: 1rem;
    overflow: hidden;
  }

  .pdp-benefits__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .pdp-benefits__card-title {
    font-weight: 600;
    margin-block-end: 0.5rem;
    color: var(--color-foreground);
  }

  .pdp-benefits__card-desc {
    font-size: var(--font-size-sm);
    color: var(--color-text-muted);
    line-height: var(--line-height-base);
  }

  @media screen and (min-width: 750px) {
    .pdp-benefits {
      padding-block: 5rem;
    }

    .pdp-benefits__grid {
      grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    }

    .pdp-benefits__image-wrapper {
      aspect-ratio: 3 / 4;
    }

    /* 2-column variant */
    .pdp-benefits[data-columns="2"] .pdp-benefits__grid {
      grid-template-columns: repeat(2, 1fr);
      max-width: 48rem;
      margin-inline: auto;
    }

    /* 4-column variant */
    .pdp-benefits[data-columns="4"] .pdp-benefits__grid {
      grid-template-columns: repeat(4, 1fr);
    }
  }
/* END_SECTION:pdp-benefits */

/* START_SECTION:pdp-breadcrumb (INDEX:228) */
.pdp-breadcrumb-section {
  background: var(--color-background, #f5f5f0);
  margin: 0;
  padding: 0;
}
.pdp-breadcrumb {
  padding: 14px 0;
  background: var(--color-background, #f5f5f0);
}
.pdp-breadcrumb__list {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  gap: 0;
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 12px;
  line-height: 1.4;
  color: var(--color-text-secondary, #888);
  overflow: hidden;
}
.pdp-breadcrumb__item {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.pdp-breadcrumb__item--current {
  flex-shrink: 1;
  min-width: 0;
}
.pdp-breadcrumb__item:not(:last-child)::after {
  content: '/';
  margin: 0 8px;
  color: var(--color-border, #ccc);
  font-size: 11px;
}
.pdp-breadcrumb__item a {
  color: var(--color-text-secondary, #888);
  text-decoration: none;
  transition: color 0.2s ease;
  position: relative;
  width: fit-content;
}
.pdp-breadcrumb__item a::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--color-foreground, #1a1a2e);
  transition: width 0.25s ease;
}
.pdp-breadcrumb__item a:hover {
  color: var(--color-foreground, #1a1a2e);
  text-decoration: none !important;
}
.pdp-breadcrumb__item a:hover::after {
  width: 100%;
}
.pdp-breadcrumb__item--current {
  color: var(--color-foreground, #1a1a2e);
  font-weight: 500;
  max-width: 260px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
/* END_SECTION:pdp-breadcrumb */

/* START_SECTION:pdp-bundle-upsell (INDEX:229) */
/* ═══════════════════════════════════════
   BUNDLE UPSELL — matches App CTA design
   ═══════════════════════════════════════ */
/* Breaker section — blends with preceding section bg */
.pdp-bundle-section {
  margin-top: 0 !important;
  padding-top: 0;
}
.pdp-bundle {
  padding-block: 12px 2rem;
  position: relative;
  z-index: 2;
}

/* When bundle follows a hero section — overlap it */
.shopify-section:has(.hero-bb) + .shopify-section > .pdp-bundle,
.shopify-section:has(.cl-hero) + .shopify-section > .pdp-bundle {
  margin-top: -1.5rem;
  padding-top: 0;
}
.pdp-bundle__container {
  max-width: 72rem;
  margin: 0 auto;
}
.pdp-bundle__inner {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.5rem;
  border-radius: var(--radius-xl, 1rem);
  min-height: 80px;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06), 0 0 0 1px rgba(0,0,0,0.02);
  color: #1a1a2e;
}
/* Dark scheme handled globally via body.theme-dark */

/* Icon / thumbnail */
.pdp-bundle__icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 0.625rem;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border: 1px solid rgba(0,0,0,0.06);
}
.pdp-bundle__icon-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.pdp-bundle__icon svg {
  color: #999;
}

/* Text */
.pdp-bundle__text {
  flex: 1;
  min-width: 0;
}
.pdp-bundle__title {
  font-size: 0.9375rem;
  font-weight: 600;
  line-height: 1.3;
  margin: 0;
}
.pdp-bundle__title a {
  color: #1a1a2e;
  text-decoration: none;
}
.pdp-bundle__title a:hover {
  text-decoration: underline;
  text-underline-offset: 2px;
}
.pdp-bundle__desc {
  font-size: 0.8125rem;
  line-height: 1.4;
  margin: 0.125rem 0 0;
  opacity: 0.75;
  color: #1a1a2e;
}
.pdp-bundle__compare {
  color: #999;
  text-decoration: line-through;
  font-weight: 400;
}

/* Badges / CTAs — same pattern as App CTA badges */
.pdp-bundle__badges {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
}
.pdp-bundle__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.5rem 1rem;
  border-radius: var(--radius-button);
  font-size: 0.8125rem;
  font-weight: 500;
  text-decoration: none;
  white-space: nowrap;
  transition: opacity 0.2s ease;
  line-height: 1;
  font-family: inherit;
  cursor: pointer;
}
.pdp-bundle__badge:hover { opacity: 0.8; }
.pdp-bundle__badge-plus {
  display: inline-block;
  max-width: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-width 0.5s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.3s ease, margin 0.5s cubic-bezier(0.22, 1, 0.36, 1);
  margin-right: 0;
}
@media (hover: hover) {
  .pdp-bundle__badge--primary:hover .pdp-bundle__badge-plus {
    max-width: 1.25rem;
    opacity: 1;
    margin-right: 0.25rem;
  }
}
.pdp-bundle__badge--primary {
  background: #1a1a2e;
  color: #fff;
  border: none;
  font-weight: 600;
  overflow: hidden;
}
.pdp-bundle__badge--primary.is-adding {
  pointer-events: none;
  opacity: 0.7;
}
.pdp-bundle__badge--primary.is-added {
  background: #51BD7A;
}
.pdp-bundle__badge--secondary {
  background: transparent;
  color: #1a1a2e;
  border: 1px solid rgba(0,0,0,0.15);
}
.pdp-bundle__badge--secondary:hover {
  border-color: #1a1a2e;
  opacity: 1;
}

/* ── Tier fallback ── */
.pdp-bundle__inner--tiers {
  flex-wrap: wrap;
}
.pdp-bundle__tiers {
  display: flex;
  gap: 0.5rem;
  flex-shrink: 0;
}
.pdp-bundle__tier {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0.5rem 0.75rem;
  border-radius: 0.625rem;
  background: #f5f4f0;
  min-width: 56px;
}
.pdp-bundle__tier-pct {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.2;
  color: #1a1a2e;
}
.pdp-bundle__tier-label {
  font-size: 0.625rem;
  font-weight: 500;
  color: #1a1a2e;
  opacity: 0.6;
  white-space: nowrap;
}

/* ── Dark mode for bundle section ── */
.theme-dark .pdp-bundle__inner {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.1);
  box-shadow: none;
  color: #f5f5f5;
}
.theme-dark .pdp-bundle__title { color: #f5f5f5; }
.theme-dark .pdp-bundle__desc { color: rgba(255,255,255,0.6); }
.theme-dark .pdp-bundle__tier {
  background: rgba(255,255,255,0.1);
}
.theme-dark .pdp-bundle__tier-pct { color: #f5f5f5; }
.theme-dark .pdp-bundle__tier-label { color: rgba(255,255,255,0.6); }
.theme-dark .pdp-bundle__badge--secondary {
  color: #f5f5f5;
  border-color: rgba(255,255,255,0.3);
}
.theme-dark .pdp-bundle__badge--secondary:hover {
  border-color: #f5f5f5;
}
.theme-dark .pdp-bundle__badge--primary {
  background: #f5f5f5;
  color: #1a1a2e;
}

/* Mobile: compact stack */
@media screen and (max-width: 749px) {
  .pdp-bundle__inner {
    flex-wrap: wrap;
    gap: 0.75rem;
    padding: 1rem;
  }
  .pdp-bundle__badges {
    width: 100%;
    flex-direction: column;
  }
  .pdp-bundle__badge {
    width: 100%;
    justify-content: center;
    padding: 0.625rem 1rem;
  }
  /* Tier pills: horizontal row, equal width, centered */
  .pdp-bundle__tiers {
    width: 100%;
    justify-content: center;
  }
  .pdp-bundle__tier {
    flex: 1;
    min-width: 0;
  }
  .pdp-bundle__inner--tiers .pdp-bundle__badge {
    margin-top: 0.25rem;
  }
}
/* END_SECTION:pdp-bundle-upsell */

/* START_SECTION:pdp-buy-box (INDEX:230) */
.pdp-buy-box form {
  display: flex;
  flex-direction: column;
  gap: var(--space-md, 1rem);
}

.pdp-buy-box__variants {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs, 0.5rem);
}

.pdp-buy-box__variants-label {
  font-size: var(--font-size-sm, 0.875rem);
  font-weight: 600;
  color: var(--color-foreground, #1a1a1a);
}

.pdp-buy-box__variant-select {
  width: 100%;
  padding: var(--space-sm, 0.75rem);
  font-size: var(--font-size-base, 1rem);
  border: 1px solid var(--color-border, #e5e5e5);
  border-radius: var(--radius-md, 0.5rem);
  background: var(--color-card, #fff);
  color: var(--color-foreground, #1a1a2e);
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath d='M3 4.5L6 7.5L9 4.5' fill='none' stroke='%23666' stroke-width='1.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  padding-inline-end: 2rem;
}

.pdp-buy-box__variant-select:focus-visible {
  outline: 2px solid var(--color-primary, #000);
  outline-offset: 2px;
}

.pdp-buy-box__quantity {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs, 0.5rem);
}

.pdp-buy-box__quantity-label {
  font-size: var(--font-size-sm, 0.875rem);
  font-weight: 600;
  color: var(--color-foreground, #1a1a1a);
}

.pdp-buy-box__quantity-controls {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--color-border, #deddd8);
  border-radius: var(--radius-md, 0.5rem);
  overflow: hidden;
  width: fit-content;
}

.pdp-buy-box__quantity-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--color-foreground, #1a1a1a);
  font-size: var(--font-size-lg, 1.25rem);
}

.pdp-buy-box__quantity-btn:hover {
  background-color: var(--color-surface, #f5f5f5);
}

.pdp-buy-box__quantity-btn:focus-visible {
  outline: 2px solid var(--color-primary, #000);
  outline-offset: -2px;
}

.pdp-buy-box__quantity-input {
  width: 52px;
  height: 44px;
  text-align: center;
  border: none;
  border-inline: 1px solid var(--color-border, #e5e5e5);
  font-size: var(--font-size-base, 1rem);
  font-weight: 500;
  color: var(--color-foreground, #1a1a1a);
  background: transparent;
  -moz-appearance: textfield;
}

.pdp-buy-box__quantity-input::-webkit-outer-spin-button,
.pdp-buy-box__quantity-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.pdp-buy-box__price {
  font-size: var(--font-size-xl, 1.5rem);
  font-weight: 600;
  color: var(--color-foreground, #1a1a1a);
}

.pdp-buy-box__add-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 52px;
  padding: var(--space-sm, 0.75rem) var(--space-lg, 2rem);
  font-size: var(--font-size-base, 1rem);
  font-weight: 600;
  letter-spacing: 0.01em;
  background-color: var(--color-accent, #e63946);
  color: #fff;
  border: none;
  border-radius: var(--radius-full, 9999px);
  cursor: pointer;
  transition: all var(--duration-base, 200ms) var(--ease-default);
  box-shadow: var(--shadow-cta, 0 1px 4px rgba(230, 57, 70, 0.15));
  position: relative;
  overflow: hidden;
}

.pdp-buy-box__add-btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.08) 25%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.08) 75%, transparent 100%);
  background-size: 200% 100%;
  animation: ctaShimmer 4s ease-in-out infinite;
}

@keyframes ctaShimmer {
  0% { background-position: 200% center; }
  100% { background-position: -200% center; }
}

.pdp-buy-box__add-btn:hover:not(:disabled) {
  background-color: var(--color-accent-hover, #d62839);
  box-shadow: var(--shadow-cta-hover, 0 2px 10px rgba(230, 57, 70, 0.25));
  transform: translateY(-0.5px);
}

.pdp-buy-box__add-btn:active:not(:disabled) {
  box-shadow: var(--shadow-cta, 0 1px 4px rgba(230, 57, 70, 0.15));
  transform: none;
}

.pdp-buy-box__add-btn:focus-visible {
  outline: 2px solid var(--color-accent, #e63946);
  outline-offset: 2px;
}

.pdp-buy-box__add-btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

@media (min-width: 768px) {
  .pdp-buy-box__add-btn {
    max-width: 400px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .pdp-buy-box * {
    transition: none !important;
  }
}
/* END_SECTION:pdp-buy-box */

/* START_SECTION:pdp-comparison (INDEX:231) */
.comparison {
    padding-block: 4rem;
  }

  .comparison__header {
    text-align: center;
    margin-block-end: 2.5rem;
  }

  .comparison__title {
    font-size: var(--font-size-3xl);
    font-weight: 600;
    letter-spacing: var(--tracking-tight);
    color: var(--color-foreground);
    margin-block-end: 0.75rem;
  }

  .comparison__subtitle {
    color: var(--color-text-muted);
    max-width: 36rem;
    margin-inline: auto;
    line-height: var(--line-height-base);
  }

  .comparison__table-wrap {
    overflow-x: auto;
    margin-inline: -1rem;
    padding-inline: 1rem;
    -webkit-overflow-scrolling: touch;
  }

  .comparison__table {
    width: 100%;
    min-width: 640px;
    border-collapse: separate;
    border-spacing: 0;
    border: 1px solid rgba(0,0,0,0.08);
    border-radius: 1rem;
    overflow: hidden;
  }

  .comparison__th {
    padding: 1rem 1.25rem;
    font-size: var(--font-size-sm);
    white-space: nowrap;
  }

  .comparison__th--feature {
    text-align: start;
    font-weight: 500;
    color: var(--color-text-muted);
    border-block-end: 2px solid rgba(0,0,0,0.06);
    width: 200px;
    background: rgba(0,0,0,0.02);
  }

  .comparison__th--nanoleaf {
    text-align: center;
    font-weight: 600;
    border-block-end: 2px solid #51BD7A;
    background: rgba(45, 138, 35, 0.1);
    border-start-start-radius: 0.5rem;
    border-start-end-radius: 0.5rem;
    position: relative;
  }

  .comparison__th--nanoleaf::before {
    content: '';
    position: absolute;
    inset: 0;
    border-left: 2px solid rgba(45, 138, 35, 0.2);
    border-right: 2px solid rgba(45, 138, 35, 0.2);
    border-top: 2px solid rgba(45, 138, 35, 0.2);
    border-radius: 0.5rem 0.5rem 0 0;
    pointer-events: none;
  }

  .comparison__nanoleaf-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.375rem;
  }

  .comparison__nanoleaf-header span {
    font-size: 0.8125rem;
    font-weight: 700;
    color: #1a1a2e;
  }

  .comparison__logo {
    height: 1.25rem;
    width: auto;
  }

  .comparison__logo--dark { display: none; }

  .comparison__th--competitor {
    text-align: center;
    font-weight: 500;
    color: var(--color-text-muted);
    border-block-end: 2px solid rgba(0,0,0,0.06);
    border-left: 1px solid rgba(0,0,0,0.06);
  }

  .comparison__value--competitor {
    border-left: 1px solid rgba(0,0,0,0.06);
  }

  .comparison__row--alt {
    background: rgba(0, 0, 0, 0.015);
  }

  .comparison__row:hover td {
    background: rgba(0, 0, 0, 0.03);
    transition: background 0.15s ease;
  }

  .comparison__row:hover .comparison__value--nanoleaf {
    background: rgba(45, 138, 35, 0.1) !important;
  }

  .comparison__feature {
    padding: 0.875rem 1.25rem;
    font-size: var(--font-size-sm);
    font-weight: 500;
    color: var(--color-foreground);
    border-block-end: 1px solid rgba(0, 0, 0, 0.06);
    border-right: 1px solid rgba(0, 0, 0, 0.06);
  }

  .comparison__value {
    padding: 0.875rem 1.25rem;
    font-size: var(--font-size-sm);
    text-align: center;
    border-block-end: 1px solid rgba(0, 0, 0, 0.06);
  }

  .comparison__value--nanoleaf {
    font-weight: 600;
    background: rgba(45, 138, 35, 0.06);
    color: #1a1a2e;
    border-left: 2px solid rgba(45, 138, 35, 0.2);
    border-right: 2px solid rgba(45, 138, 35, 0.2);
  }

  /* Last row bottom border for Nanoleaf column */
  .comparison__row:last-child .comparison__value--nanoleaf {
    border-bottom: 2px solid rgba(45, 138, 35, 0.2);
    border-radius: 0 0 0.5rem 0.5rem;
  }

  .comparison__value--competitor {
    color: var(--color-text-muted);
  }

  .comparison__check,
  .comparison__x {
    display: inline-block;
    vertical-align: middle;
  }

  .comparison__footer {
    font-size: var(--font-size-xs);
    color: var(--color-text-muted);
    text-align: center;
    margin-block-start: 1.5rem;
  }

  .comparison__price-wrap {
    display: inline-flex;
    align-items: center;
    gap: 6px;
  }

  .comparison__price-compare {
    color: #999;
    font-weight: 400;
    font-size: 0.8125rem;
    text-decoration: line-through;
  }

  .comparison__price-current {
    font-weight: 700;
    color: #51BD7A;
  }

  @media screen and (min-width: 750px) {
    .comparison {
      padding-block: 5rem;
    }

    .comparison__title {
      font-size: var(--font-size-4xl);
    }
  }
/* END_SECTION:pdp-comparison */

/* START_SECTION:pdp-exit-intent (INDEX:232) */
.exit-intent__dialog {
    position: fixed;
    inset: 0;
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    padding: 1.6rem;
    max-width: 100vw;
    max-height: 100vh;
    width: 100%;
    height: 100%;
    background-color: transparent;
  }

  .exit-intent__dialog::backdrop {
    background-color: rgba(0, 0, 0, 0.5);
  }

  .exit-intent__dialog:not([open]) {
    display: none;
  }

  .exit-intent__content {
    position: relative;
    display: flex;
    flex-direction: column;
    max-width: 48rem;
    width: 100%;
    background-color: var(--exit-bg, #ffffff);
    border-radius: 0.8rem;
    overflow: hidden;
    box-shadow: 0 2.4rem 4.8rem rgba(0, 0, 0, 0.15);
  }

  .exit-intent__close {
    position: absolute;
    top: 1.2rem;
    right: 1.2rem;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3.2rem;
    height: 3.2rem;
    border: none;
    background: transparent;
    cursor: pointer;
    color: rgba(0, 0, 0, 0.6);
    border-radius: 50%;
    transition: background-color 0.2s ease;
  }

  .exit-intent__close:hover {
    background-color: rgba(0, 0, 0, 0.05);
  }

  .exit-intent__close:focus-visible {
    outline: 2px solid currentColor;
    outline-offset: 2px;
  }

  .exit-intent__image {
    width: 100%;
    overflow: hidden;
  }

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

  .exit-intent__body {
    padding: 2.4rem;
    text-align: center;
  }

  .exit-intent__heading {
    font-size: 2.4rem;
    font-weight: 700;
    margin-bottom: 1.2rem;
    line-height: 1.2;
  }

  .exit-intent__desc {
    font-size: 1.4rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    color: rgba(0, 0, 0, 0.7);
  }

  .exit-intent__cta {
    display: inline-block;
  }

  @media screen and (min-width: 750px) {
    .exit-intent__content {
      flex-direction: row;
      max-width: 64rem;
    }

    .exit-intent__image {
      width: 50%;
      flex-shrink: 0;
    }

    .exit-intent__img {
      height: 100%;
      object-fit: cover;
    }

    .exit-intent__body {
      display: flex;
      flex-direction: column;
      justify-content: center;
      padding: 3.2rem;
      text-align: left;
    }

    .exit-intent__heading {
      font-size: 2.8rem;
    }
  }
/* END_SECTION:pdp-exit-intent */

/* START_SECTION:pdp-faq (INDEX:233) */
.faq-section {
    display: block;
    padding-block: 4rem;
  }

  .faq-section__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  /* --- Header --- */
  .faq-section__header {
    margin-block-end: 2rem;
    padding-inline: 0.25rem;
  }

  .faq-section__title {
    font-size: var(--font-size-3xl);
    font-weight: 600;
    letter-spacing: var(--tracking-tight);
    color: var(--color-foreground);
    margin-block-end: 0.75rem;
  }

  .faq-section__subtitle {
    color: var(--color-text-muted);
    line-height: var(--line-height-base);
  }

  /* --- Accordion --- */
  .faq-section__accordion {
    border-radius: var(--radius-xl);
    border: 1px solid var(--color-border);
    overflow: hidden;
    background: inherit;
  }

  .faq-section__item {
    border-block-end: 1px solid var(--color-border);
  }

  .faq-section__item:last-child {
    border-block-end: none;
  }

  .faq-section__question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 1rem 1.25rem;
    text-align: start;
    background: none;
    border: none;
    cursor: pointer;
    font-family: inherit;
    font-weight: 500;
    font-size: var(--font-size-sm);
    color: var(--color-foreground);
  }

  .faq-section__question-text {
    padding-inline-end: 1rem;
    line-height: var(--line-height-base);
  }

  .faq-section__chevron {
    flex-shrink: 0;
    color: var(--color-text-muted);
    transition: transform var(--duration-base) var(--ease-default);
  }

  .faq-section__question[aria-expanded="true"] .faq-section__chevron {
    transform: rotate(180deg);
  }

  .faq-section__answer {
    padding-inline: 1.25rem;
    padding-block-end: 1.25rem;
    margin-block-start: -0.25rem;
  }

  .faq-section__answer[hidden] {
    display: none;
  }

  .faq-section__answer p {
    font-size: var(--font-size-xs);
    color: var(--color-text-muted);
    line-height: var(--line-height-relaxed);
  }

  /* --- Help CTA --- */
  .faq-section__help-cta {
    margin-block-start: 1.25rem;
    font-size: 0.8125rem;
    color: var(--color-text-muted);
    text-align: center;
  }

  .faq-section__help-cta a {
    color: var(--color-foreground);
    text-decoration: underline;
    text-underline-offset: 2px;
  }

  .faq-section__help-cta a:hover {
    color: var(--color-link-hover, var(--color-foreground));
  }

  /* --- Sidebar App CTA --- */
  .faq-section__sidebar {
    order: -1;
  }

  .faq-section__app-cta {
    border-radius: var(--radius-xl);
    overflow: hidden;
    background: linear-gradient(165deg, #51BD7A 0%, #51BD7A 50%, #51BD7A 100%);
    padding: 1.5rem;
    text-align: center;
    color: #fff;
  }

  .faq-section__app-icon {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
  }

  .faq-section__app-title {
    font-size: 1.125rem;
    font-weight: 600;
    margin: 0 0 0.5rem;
    color: #fff;
  }

  .faq-section__app-desc {
    font-size: 0.8125rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.65);
    margin: 0 0 1rem;
  }

  .faq-section__app-features {
    list-style: none;
    padding: 0;
    margin: 0 0 1.25rem;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }

  .faq-section__app-features li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.85);
  }

  .faq-section__app-features svg {
    flex-shrink: 0;
    color: #fff;
  }

  .faq-section__app-stores {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    margin-bottom: 0.75rem;
  }

  .faq-section__store-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.5rem 0.875rem;
    border-radius: var(--radius-full, 9999px);
    background: #fff;
    color: #1a1a2e;
    font-size: 0.75rem;
    font-weight: 600;
    text-decoration: none;
    transition: background 200ms ease, transform 200ms ease;
    white-space: nowrap;
  }

  .faq-section__store-badge svg { color: #1a1a2e; }

  .faq-section__store-badge:hover {
    background: #f0f0f0;
    transform: translateY(-1px);
    text-decoration: none;
  }

  .faq-section__app-free {
    display: block;
    font-size: 0.6875rem;
    color: rgba(255, 255, 255, 0.4);
  }

  @media screen and (min-width: 640px) {
    .faq-section__question {
      padding: 1.25rem;
      font-size: var(--font-size-base);
    }

    .faq-section__answer {
      padding-inline: 1.25rem;
      padding-block-end: 1.25rem;
    }

    .faq-section__answer p {
      font-size: var(--font-size-sm);
    }
  }

  @media screen and (min-width: 990px) {
    .faq-section {
      padding-block: 5rem;
    }

    .faq-section__grid {
      grid-template-columns: 1fr 300px;
      gap: 3rem;
    }

    .faq-section__title {
      font-size: var(--font-size-4xl);
    }

    .faq-section__sidebar {
      order: 0;
      position: sticky;
      inset-block-start: 6rem;
      align-self: start;
    }
  }

  @media (prefers-reduced-motion: reduce) {
    .faq-section__chevron {
      transition: none;
    }
  }

  /* ── Dark mode for wellness / collection pages ── */
  .faq-section--dark { background: #0d0d14; }
  .faq-section--dark .faq-section__title { color: #f5f5f5; }
  .faq-section--dark .faq-section__subtitle { color: rgba(255,255,255,0.55); }
  .faq-section--dark .faq-section__accordion { background: #1a1a1d; border-color: rgba(255,255,255,0.08); }
  .faq-section--dark .faq-section__item { border-color: rgba(255,255,255,0.06); }
  .faq-section--dark .faq-section__question { color: #f5f5f5; }
  .faq-section--dark .faq-section__chevron { color: rgba(255,255,255,0.4); }
  .faq-section--dark .faq-section__answer { color: rgba(255,255,255,0.65); }
  .faq-section--dark .faq-section__help-cta { color: rgba(255,255,255,0.5); }
  .faq-section--dark .faq-section__help-cta a { color: #f5f5f5; }
  .faq-section--dark .faq-section__sidebar { color: #f5f5f5; }
  /* App CTA keeps brand green on both light and dark */
  .faq-section--dark .faq-section__app-title { color: #f5f5f5; }
  .faq-section--dark .faq-section__app-desc { color: rgba(255,255,255,0.55); }
  .faq-section--dark .faq-section__app-features li { color: rgba(255,255,255,0.65); }
  /* Store badges stay white on both light and dark */
  .faq-section--dark .faq-section__app-free { color: rgba(255,255,255,0.4); }
/* END_SECTION:pdp-faq */

/* START_SECTION:pdp-gallery (INDEX:234) */
.pdp-gallery__inner {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm, 0.75rem);
}

.pdp-gallery__inner:has(.pdp-gallery__thumbnails--left) {
  flex-direction: row;
}

.pdp-gallery__main {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg, 1rem);
  background-color: var(--color-surface, #f5f5f0);
  aspect-ratio: 1 / 1;
}

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

.pdp-gallery__lightbox-trigger {
  position: absolute;
  inset-block-end: var(--space-sm, 0.75rem);
  inset-inline-end: var(--space-sm, 0.75rem);
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: var(--space-xs, 0.5rem) var(--space-sm, 0.75rem);
  background: rgb(255 255 255 / 0.9);
  border: 1px solid var(--color-border, #deddd8);
  border-radius: var(--radius-md, 0.5rem);
  cursor: pointer;
  color: var(--color-foreground, #1a1a2e);
  font-size: var(--font-size-sm, 0.875rem);
  backdrop-filter: blur(4px);
  z-index: 2;
}

.pdp-gallery__lightbox-trigger:focus-visible {
  outline: 2px solid var(--color-primary, #000);
  outline-offset: 2px;
}

.pdp-gallery__thumbnails {
  display: flex;
  gap: var(--space-xs, 0.5rem);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding-block: var(--space-xs, 0.25rem);
}

.pdp-gallery__thumbnails--left {
  flex-direction: column;
  overflow-x: visible;
  overflow-y: auto;
  max-height: 100%;
  order: -1;
  width: 80px;
  flex-shrink: 0;
}

.pdp-gallery__thumbnail {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  border: 2px solid transparent;
  border-radius: var(--radius-md, 0.5rem);
  overflow: hidden;
  cursor: pointer;
  padding: 0;
  background: var(--color-surface, #f5f5f0);
  scroll-snap-align: start;
  transition: border-color var(--duration-fast, 150ms) var(--ease-default);
}

.pdp-gallery__thumbnail:focus-visible {
  outline: 2px solid var(--color-primary, #000);
  outline-offset: 2px;
}

.pdp-gallery__thumbnail--active,
.pdp-gallery__thumbnail[aria-selected="true"] {
  border-color: var(--color-foreground, #1a1a2e);
  box-shadow: 0 0 0 1px var(--color-foreground, #1a1a2e);
}

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

.pdp-gallery__lightbox {
  width: 100%;
  max-width: 100vw;
  height: 100dvh;
  max-height: 100dvh;
  margin: 0;
  padding: 0;
  border: none;
  background: rgb(0 0 0 / 0.95);
}

.pdp-gallery__lightbox::backdrop {
  background: rgb(0 0 0 / 0.8);
}

.pdp-gallery__lightbox-header {
  position: absolute;
  inset-block-start: 0;
  inset-inline-end: 0;
  z-index: 10;
  padding: var(--space-md, 1rem);
}

.pdp-gallery__lightbox-close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: rgb(255 255 255 / 0.1);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  color: #fff;
}

.pdp-gallery__lightbox-close:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 2px;
}

.pdp-gallery__lightbox-content {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  padding: var(--space-lg, 2rem);
}

.pdp-gallery__lightbox-content img {
  max-width: 100%;
  max-height: 90dvh;
  object-fit: contain;
}

@media (min-width: 768px) {
  .pdp-gallery__main {
    aspect-ratio: 4 / 3;
  }

  .pdp-gallery__thumbnail {
    width: 64px;
    height: 64px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .pdp-gallery * {
    transition: none !important;
  }
}
/* END_SECTION:pdp-gallery */

/* START_SECTION:pdp-hero (INDEX:235) */
/* ========================================
   PDP Hero — 2-column product detail
   ======================================== */

.pdp-hero {
  display: block;
  padding-block-start: 0;
  padding-block-end: var(--space-lg, 2rem);
}
/* Top padding handled by pdp-breadcrumb bottom padding for equal spacing */

.pdp-hero__grid {
  display: grid;
  grid-template-columns: 1fr;
  column-gap: 1rem;
  row-gap: 0.5rem;
}

/* ---- Gallery ---- */

.pdp-hero__gallery-sticky {
  position: relative;
}

.pdp-hero__main-image {
  position: relative;
  aspect-ratio: 1 / 1;
  background-color: var(--gallery-bg, var(--color-background, #f5f5f0));
  overflow: hidden;
}
.pdp-hero__main-image--bordered {
  border: 1px solid var(--color-border, #eee);
  border-radius: var(--radius-image);
  overflow: hidden;
}

.pdp-hero__carousel {
  display: flex;
  overflow-x: scroll;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  height: 100%;
  scrollbar-width: none;
}

.pdp-hero__carousel::-webkit-scrollbar {
  display: none;
}

.pdp-hero__slide {
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  scroll-snap-align: center;
}

.pdp-hero__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  user-select: none;
  cursor: zoom-in;
}

/* Video in gallery */
.pdp-hero__slide video,
.pdp-hero__slide iframe {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.pdp-hero__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 2.75rem;
  height: 2.75rem;
  border-radius: var(--radius-full, 9999px);
  background-color: rgba(255, 255, 255, 0.9);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
  z-index: 2;
  padding: 0;
  color: var(--color-foreground, #1a1a2e);
  transition: opacity 0.2s ease;
}

.pdp-hero__arrow:hover {
  background-color: #fff;
}
.pdp-hero__arrow.is-disabled {
  opacity: 0.3;
  cursor: default;
  pointer-events: none;
}

.pdp-hero__arrow--prev {
  inset-inline-start: 0.5rem;
}

.pdp-hero__arrow--next {
  inset-inline-end: 0.5rem;
}

.pdp-hero__thumbnails {
  display: flex;
  gap: 0.375rem;
  margin-block-start: 0.5rem;
  overflow-x: auto;
  padding-block-end: 0.375rem;
  scrollbar-width: none;
}

.pdp-hero__thumbnails::-webkit-scrollbar {
  display: none;
}

.pdp-hero__thumb {
  position: relative;
  flex-shrink: 0;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 0.5rem;
  border: 2px solid var(--color-border, #eee);
  overflow: hidden;
  cursor: pointer;
  padding: 0;
  background: var(--color-background, #f5f5f0);
  transition: border-color 0.2s ease;
}

.pdp-hero__thumb:hover {
  border-color: var(--color-text-muted, #aaa);
}

.pdp-hero__thumb--active,
.pdp-hero__thumb--active:hover {
  border-color: var(--color-foreground, #1a1a2e);
}

.pdp-hero__thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  user-select: none;
}

.pdp-hero__thumb-video-icon {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.3);
  z-index: 1;
  color: #fff;
  pointer-events: none;
}

/* ---- Product Info ---- */

.pdp-hero__info {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding-inline: 0;
  min-width: 0;
  overflow: visible;
}

/* Rating — reserve fixed height to prevent layout shift, fades in */
.pdp-hero__rating {
  display: flex;
  flex-direction: row;
  gap: 0.375rem;
  align-items: center;
  text-decoration: none;
  cursor: pointer;
  opacity: 1 !important;
  height: 15px;
  min-height: 15px;
}
.pdp-hero__rating.is-visible {
  opacity: 1;
}

.pdp-hero__rating:hover {
  opacity: 1;
  text-decoration: none;
}
.pdp-hero__rating:hover .pdp-hero__rating-count,
.pdp-hero__rating:hover .pdp-hero__rating-score {
  text-decoration: none;
}
a.pdp-hero__rating,
a.pdp-hero__rating:hover,
a.pdp-hero__rating:focus,
a.pdp-hero__rating:visited {
  text-decoration: none !important;
}

/* Rating Trustpilot stars image — renders instantly, no fade */
.pdp-hero__rating-tp-stars {
  width: 80px;
  height: 15px;
  flex-shrink: 0;
  opacity: 1 !important;
}

/* Review text fades in once Judge.me injects it */
.pdp-hero__rating-text {
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--color-text-secondary, #71717a);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.pdp-hero__rating-text:not(:empty) {
  opacity: 1;
}

.pdp-hero__rating-score {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--color-text-secondary, #1a1a2e);
}

.pdp-hero__rating-count {
  font-size: 0.8125rem;
  font-weight: 400;
  color: var(--color-text-secondary, #71717a);
}

/* Title */
.pdp-hero__title {
  font-size: 1.875rem;
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.15;
  margin: 0;
  color: var(--color-foreground, #1a1a2e);
}

/* Price */
.pdp-hero__price {
  display: flex;
  flex-direction: row;
  align-items: baseline;
  gap: 0.5rem;
  margin-block-start: -0.25rem;
}

.pdp-hero__price-current {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-foreground, #1a1a2e);
}

.pdp-hero__price-compare {
  font-size: 1rem;
  color: var(--color-text-muted, #999);
  text-decoration: line-through;
}

.pdp-hero__price-save {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 3px 10px;
  font-size: 0.75rem;
  font-weight: 600;
  color: #51BD7A;
  background: rgba(34, 197, 94, 0.12);
  border: 1px solid rgba(34, 197, 94, 0.2);
  border-radius: 9999px;
  letter-spacing: 0.01em;
  line-height: 1.2;
}


/* Subheadline */
.pdp-hero__subheadline {
  margin: 0;
  color: var(--color-text-secondary, #666);
  line-height: 1.625;
  font-size: 1rem;
}

/* Tags — hidden mobile, flex desktop — positioned above description */
.pdp-hero__tags {
  display: none;
  margin-bottom: 6px;
}

.pdp-hero__tag {
  font-size: var(--font-size-xs, 0.75rem);
  padding: 0.25rem 0.625rem;
  border-radius: var(--radius-full, 9999px);
  background-color: rgba(0, 0, 0, 0.04);
  color: var(--color-foreground, #1a1a2e);
  white-space: nowrap;
}

/* USP Cards */
.pdp-hero__usps {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-top: 4px;
  margin-bottom: 4px;
}

.pdp-hero__usp {
  display: flex;
  flex-direction: row;
  gap: 0.75rem;
  align-items: flex-start;
}

.pdp-hero__usp-icon {
  width: 2rem;
  height: 2rem;
  min-width: 2rem;
  border-radius: var(--radius-full, 9999px);
  background-color: var(--color-secondary, #eae9e4);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-foreground, #1a1a2e);
  overflow: hidden;
}
.pdp-hero__usp-icon img {
  width: 16px;
  height: 16px;
  object-fit: contain;
}

.pdp-hero__usp-text {
  display: flex;
  flex-direction: column;
}

.pdp-hero__usp-title {
  font-weight: 500;
  font-size: var(--font-size-sm, 0.875rem);
  color: var(--color-foreground, #1a1a2e);
}

.pdp-hero__usp-desc {
  font-size: var(--font-size-xs, 0.75rem);
  color: var(--color-text-muted, #999);
}

/* ---- Linked Options (sibling products) ---- */
.pdp-hero__linked-options {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-block-end: 1.25rem;
  padding-block-end: 1.25rem;
  border-bottom: 1px solid var(--color-border, #deddd8);
}

.pdp-hero__linked-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.pdp-hero__linked-label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-foreground, #1a1a2e);
}

.pdp-hero__linked-selected {
  font-weight: 400;
  color: var(--color-text-secondary, #666);
}

/* Linked swatches */
.pdp-hero__linked-swatches {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.pdp-hero__linked-swatch {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 9999px;
  border: 2px solid transparent;
  transition: border-color 200ms ease;
  text-decoration: none;
}

.pdp-hero__linked-swatch:hover {
  border-color: var(--color-foreground, #1a1a2e);
}

.pdp-hero__linked-swatch--active {
  border-color: var(--color-foreground, #1a1a2e);
  cursor: default;
}

/* Linked pills */
.pdp-hero__linked-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.pdp-hero__linked-pill {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  border: 1.5px solid var(--color-border, #deddd8);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--color-foreground, #1a1a2e);
  background: transparent;
  transition: all 200ms ease;
  white-space: nowrap;
  text-decoration: none;
  cursor: pointer;
}

.pdp-hero__linked-pill:hover {
  border-color: var(--color-foreground, #1a1a2e);
}

.pdp-hero__linked-pill--active {
  background-color: var(--color-foreground, #1a1a2e);
  border-color: var(--color-foreground, #1a1a2e);
  color: #fff;
  cursor: default;
  pointer-events: none;
}

/* ---- Variant Selectors ---- */
.pdp-hero__variants {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.pdp-hero__option {
  border: none;
  padding: 0;
  margin: 0;
}

.pdp-hero__option-label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-foreground, #1a1a2e);
  margin-block-end: 0.5rem;
  display: block;
}

.pdp-hero__option-selected {
  font-weight: 400;
  color: var(--color-text-secondary, #666);
}

/* Color swatches */
.pdp-hero__swatches {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.pdp-hero__swatch {
  position: relative;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 9999px;
  border: 2px solid transparent;
  transition: border-color 200ms ease;
}

.pdp-hero__swatch--active,
.pdp-hero__swatch:hover {
  border-color: var(--color-foreground, #1a1a2e);
}

.pdp-hero__swatch-dot {
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 9999px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  overflow: hidden;
}
.pdp-hero__swatch-dot--image {
  display: flex;
  align-items: center;
  justify-content: center;
}
.pdp-hero__swatch-dot--image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 9999px;
}

/* Pill buttons */
.pdp-hero__pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.pdp-hero__pill {
  cursor: pointer;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  border: 1.5px solid var(--color-border, #deddd8);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--color-foreground, #1a1a2e);
  background: transparent;
  transition: all 200ms ease;
  white-space: nowrap;
}

.pdp-hero__pill:hover {
  border-color: var(--color-foreground, #1a1a2e);
}

.pdp-hero__pill--active {
  background-color: var(--color-foreground, #1a1a2e);
  border-color: var(--color-foreground, #1a1a2e);
  color: #fff;
}

.pdp-hero__pill--unavailable {
  opacity: 0.4;
  cursor: not-allowed;
  text-decoration: line-through;
}

/* ── Quantity + CTA Row ── */
.pdp-hero__cta-row {
  display: flex;
  gap: 8px;
  align-items: stretch;
}

.pdp-hero__qty {
  display: flex;
  align-items: center;
  border: 1.5px solid var(--color-border, #deddd8);
  border-radius: var(--radius-full, 9999px);
  background: #fff;
  overflow: hidden;
  flex-shrink: 0;
}
.pdp-hero__qty-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 100%;
  border: none;
  background: transparent;
  cursor: pointer;
  color: var(--color-foreground, #1a1a2e);
  transition: background 0.25s ease, color 0.25s ease;
  padding: 0;
}
.pdp-hero__qty-btn:hover {
  background: rgba(45, 138, 35, 0.07);
  color: #51BD7A;
}
.pdp-hero__qty-btn:active {
  background: rgba(45, 138, 35, 0.13);
  color: #51BD7A;
}
.pdp-hero__qty-input {
  width: 32px;
  text-align: center;
  border: none;
  background: transparent;
  font-size: 15px;
  font-weight: 600;
  font-family: inherit;
  color: var(--color-foreground, #1a1a2e);
  -moz-appearance: textfield;
  padding: 0;
  line-height: 1;
}
.pdp-hero__qty-input::-webkit-outer-spin-button,
.pdp-hero__qty-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.pdp-hero__qty-input:focus {
  outline: none;
}

/* CTA Button */
.pdp-hero__cta {
  position: relative;
  flex: 1;
  min-width: 0;
  height: 52px;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: var(--radius-button);
  background-color: #51BD7A;
  color: #fff;
  font-size: 0.9375rem;
  font-weight: 600;
  font-family: inherit;
  letter-spacing: 0.01em;
  cursor: pointer;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(45, 138, 35, 0.25);
  transition: box-shadow 0.25s ease, transform 0.2s ease, background-color 0.2s ease;
}

.pdp-hero__cta:hover {
  box-shadow: 0 4px 16px rgba(45, 138, 35, 0.4);
  transform: translateY(-1px);
}

.pdp-hero__cta:active {
  transform: translateY(0);
  box-shadow: 0 2px 8px rgba(45, 138, 35, 0.25);
}

/* CTA disabled / sold out state */
.pdp-hero__cta:disabled,
.pdp-hero__cta--sold-out {
  opacity: 1;
  cursor: not-allowed;
  background: #e4e4e7;
  color: #999;
  box-shadow: none;
  pointer-events: none;
  border: none;
  font-size: 0.875rem;
}
.pdp-hero__cta--sold-out::before { display: none; }

.pdp-hero__cta:disabled:hover {
  transform: none;
  box-shadow: none;
}

.pdp-hero__cta-text {
  position: relative;
  z-index: 1;
  transition: opacity 0.2s;
}
.pdp-hero__cta-loader,
.pdp-hero__cta-check {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  z-index: 2;
  font-weight: 600;
  font-size: 0.9375rem;
  opacity: 0;
  transition: opacity 0.2s;
}
.pdp-hero__cta-loader[hidden],
.pdp-hero__cta-check[hidden] { display: none; }
/* When visible (hidden removed), show as flex but don't block clicks when at opacity 0 */
.pdp-hero__cta-loader,
.pdp-hero__cta-check { pointer-events: none; }
.pdp-hero__cta.is-adding .pdp-hero__cta-text { opacity: 0; }
.pdp-hero__cta.is-adding .pdp-hero__cta-loader { opacity: 1; }
.pdp-hero__cta.is-adding { background-color: #51BD7A; box-shadow: 0 2px 12px rgba(30, 107, 23, 0.35); }
.pdp-hero__cta.is-added .pdp-hero__cta-text { opacity: 0; }
.pdp-hero__cta.is-added .pdp-hero__cta-check { opacity: 1; }
.pdp-hero__cta-loader svg { animation: spin 0.7s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }

/* ── Sticky Add to Cart Bar ── */
.pdp-sticky-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: #fff;
  border-top: 1px solid rgba(0,0,0,0.08);
  box-shadow: 0 -4px 20px rgba(0,0,0,0.08);
  transform: translateY(100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}
.pdp-sticky-bar[hidden] { display: block; }
.pdp-sticky-bar.is-visible { transform: translateY(0); }

.pdp-sticky-bar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 0;
  gap: 1rem;
}

.pdp-sticky-bar__info {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.pdp-sticky-bar__title {
  font-size: 0.875rem;
  font-weight: 600;
  color: #1a1a2e;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.pdp-sticky-bar__pricing {
  display: flex;
  align-items: center;
  gap: 0.375rem;
}

.pdp-sticky-bar__price {
  font-size: 0.75rem;
  font-weight: 600;
  color: #1a1a2e;
}

.pdp-sticky-bar__compare {
  font-size: 0.75rem;
  color: #999;
  text-decoration: line-through;
}

.pdp-sticky-bar__save {
  font-size: 0.6875rem;
  font-weight: 600;
  color: #51BD7A;
  background: rgba(22,163,74,0.08);
  padding: 1px 6px;
  border-radius: 9999px;
}

.pdp-sticky-bar__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.625rem 1.5rem;
  min-width: 140px;
  background: #51BD7A;
  color: #fff;
  border: none;
  border-radius: var(--radius-button);
  font-size: 0.875rem;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  white-space: nowrap;
  flex-shrink: 0;
  transition: background 0.2s, transform 0.2s;
}
.pdp-sticky-bar__btn.is-adding {
  pointer-events: none;
}
.pdp-sticky-bar__btn.is-added {
  background: #51BD7A;
}
.pdp-sticky-bar__btn:hover {
  background: #51BD7A;
  box-shadow: 0 4px 16px rgba(74, 175, 71, 0.4);
  transform: translateY(-1px);
}
.pdp-sticky-bar__btn:disabled {
  background: #e4e4e7;
  color: #999;
  box-shadow: none;
  cursor: not-allowed;
}

/* Dark mode */
.theme-dark .pdp-sticky-bar {
  background: rgba(30, 30, 50, 0.95);
  border-color: rgba(255,255,255,0.1);
  box-shadow: 0 -4px 20px rgba(0,0,0,0.4);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
}
.theme-dark .pdp-sticky-bar__title { color: #f5f5f5; }
.theme-dark .pdp-sticky-bar__price { color: #f5f5f5; }
.theme-dark .pdp-sticky-bar__compare { color: rgba(255,255,255,0.4); }
.theme-dark .pdp-sticky-bar__btn { background: #51BD7A; color: #fff; }

/* Shimmer pseudo-element */
.pdp-hero__cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255, 255, 255, 0.08) 25%,
    rgba(255, 255, 255, 0.15) 50%,
    rgba(255, 255, 255, 0.08) 75%,
    transparent 100%
  );
  background-size: 200% 100%;
  animation: ctaShimmer 4s ease-in-out infinite;
  pointer-events: none;
  border-radius: inherit;
}

@keyframes ctaShimmer {
  0% {
    background-position: 200% center;
  }
  100% {
    background-position: -200% center;
  }
}

/* Dynamic Checkout Button — match main CTA dimensions */
.pdp-hero__dynamic-checkout {
  margin-top: 0;
  position: relative;
  min-height: 52px;
  width: 100%;
}

/* Skeleton loader while Shopify JS loads the real button */
.pdp-hero__dynamic-checkout-skeleton {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  transition: opacity 0.3s;
}
.pdp-hero__dynamic-checkout-skeleton-btn {
  width: 100%;
  height: 52px;
  border-radius: var(--radius-button);
  background: linear-gradient(90deg, #eae9e4 25%, #f5f4f0 50%, #eae9e4 75%);
  background-size: 200% 100%;
  animation: skeletonPulse 1.5s ease-in-out infinite;
}
@keyframes skeletonPulse {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}
/* Hide skeleton once JS marks it loaded */
.pdp-hero__dynamic-checkout.is-loaded .pdp-hero__dynamic-checkout-skeleton {
  opacity: 0;
  pointer-events: none;
}
.pdp-hero__dynamic-checkout .shopify-payment-button {
  margin: 0;
  width: 100%;
  min-height: 52px;
}
.pdp-hero__dynamic-checkout .shopify-payment-button__button {
  width: 100%;
  min-height: 52px !important;
  height: 52px !important;
  max-height: 52px !important;
  padding: 0 2rem !important;
  box-sizing: border-box;
  border-radius: var(--radius-button) !important;
  font-size: 0.9375rem !important;
  font-weight: 600 !important;
  font-family: inherit !important;
  letter-spacing: 0.01em;
  transition: box-shadow 0.25s ease, transform 0.2s ease;
  line-height: 1.2 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  overflow: hidden !important;
}
/* Target all nested elements Shopify injects */
.pdp-hero__dynamic-checkout .shopify-payment-button__button--unbranded,
.pdp-hero__dynamic-checkout .shopify-payment-button__button--branded {
  border-radius: var(--radius-button) !important;
  height: 52px !important;
  min-height: 52px !important;
  max-height: 52px !important;
}
/* Force iframe inside dynamic checkout to match */
.pdp-hero__dynamic-checkout .shopify-payment-button__button iframe {
  min-height: 52px !important;
  max-height: 52px !important;
  border-radius: var(--radius-button) !important;
}
/* Target the div wrapper Shopify adds around the button */
.pdp-hero__dynamic-checkout .shopify-payment-button__button > div {
  border-radius: var(--radius-button) !important;
  overflow: hidden !important;
  height: 52px !important;
}
.pdp-hero__dynamic-checkout .shopify-payment-button__button:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}
.pdp-hero__dynamic-checkout .shopify-payment-button__button--unbranded {
  background-color: #1a1a2e !important;
  color: #fff !important;
}
.pdp-hero__dynamic-checkout .shopify-payment-button__button--unbranded:hover {
  background-color: #111122 !important;
}
.pdp-hero__dynamic-checkout .shopify-payment-button__more-options {
  display: none;
}
/* CMS editor preview — force rounded corners on all possible wrappers */
.pdp-hero__dynamic-checkout .shopify-payment-button__button *,
.pdp-hero__dynamic-checkout .shopify-payment-button__button *::before,
.pdp-hero__dynamic-checkout .shopify-payment-button__button *::after {
  border-radius: 999px !important;
}

/* Product form gap */
.pdp-hero__info form[data-product-form] {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

/* Accordions */
.pdp-hero__accordions {
  border-block-start: 1px solid var(--color-border, #deddd8);
  padding-block-start: 0;
  margin-top: 0;
}

.pdp-hero__accordion {
  border-block-end: 1px solid var(--color-border, #deddd8);
}

.pdp-hero__accordion-trigger {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-block: 0.75rem;
  background: none;
  border: none;
  cursor: pointer;
  font-size: var(--font-size-sm, 0.875rem);
  font-weight: 500;
  color: var(--color-foreground, #1a1a2e);
  text-align: start;
  font-family: inherit;
}

.pdp-hero__accordion-chevron {
  transition: transform 0.25s ease;
  flex-shrink: 0;
}

.pdp-hero__accordion-trigger[aria-expanded="true"] .pdp-hero__accordion-chevron {
  transform: rotate(180deg);
}

.pdp-hero__accordion-content {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.25s ease;
}

.pdp-hero__accordion-trigger[aria-expanded="true"] + .pdp-hero__accordion-content {
  grid-template-rows: 1fr;
}

.pdp-hero__accordion-body {
  overflow: hidden;
}

.pdp-hero__accordion-text {
  margin: 0;
  padding-block-end: 0.75rem;
  font-size: var(--font-size-sm, 0.875rem);
  color: var(--color-text-secondary, #666);
  line-height: 1.5;
}


/* ─── 4D Gallery Trigger — matches arrow style ─── */
.pdp-hero__4d-trigger {
  position: absolute;
  top: 12px; left: 12px;
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 6px 10px;
  background-color: rgba(255, 255, 255, 0.9);
  color: var(--color-foreground, #1a1a2e);
  border: none;
  border-radius: var(--radius-full, 9999px);
  cursor: pointer;
  font-family: inherit;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
  transition: background-color 0.2s;
}
.pdp-hero__4d-trigger:hover { background-color: #fff; }
.pdp-hero__4d-trigger[hidden] { display: none; }
.pdp-hero__4d-trigger svg { width: 16px; height: 16px; }
.pdp-hero__4d-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

/* ─── Discount Timer ─── */
.pdp-hero__discount-timer { }
.pdp-hero__discount-timer[hidden] { display: none; }
.pdp-hero__discount-timer-inner {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  background: var(--color-secondary, #f5f4f0);
  border: 1px solid var(--color-border, #deddd8);
  border-radius: 10px;
  font-size: 12px;
  color: var(--color-text-secondary, #666);
}
.pdp-hero__discount-timer-inner svg { color: #888; flex-shrink: 0; }
.pdp-hero__discount-timer-label { font-weight: 500; }
.pdp-hero__discount-timer-digits {
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  margin-left: auto;
  font-size: 13px;
  color: var(--color-foreground, #1a1a2e);
}

/* ─── Compatible With — inside accordion, logo grid ─── */
.pdp-hero__compat-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.pdp-hero__compat-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 72px;
  height: 40px;
  background: #fff;
  border: 1px solid var(--color-border, #deddd8);
  border-radius: 8px;
  padding: 6px 10px;
}
.pdp-hero__compat-logo span {
  font-size: 10px;
  font-weight: 600;
  color: #555;
  text-align: center;
  line-height: 1.2;
  white-space: nowrap;
}
.pdp-hero__compat-logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}


/* ─── Feature Prompts (App / Bundle / Student) ─── */
/* Unified single-line prompt — follows trust badge visual language */
.pdp-hero__feature-prompt { }
.pdp-hero__feature-prompt[hidden] { display: none; }
.pdp-hero__feature-prompt-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  background: var(--color-secondary, #f5f4f0);
  border: 1px solid var(--color-border, #deddd8);
  border-radius: var(--radius-card);
  text-decoration: none;
  color: inherit;
  transition: border-color 0.15s, background 0.15s;
}
.pdp-hero__feature-prompt-link:hover {
  border-color: var(--color-foreground, #1a1a2e);
  text-decoration: none;
}
.pdp-hero__feature-prompt-link > svg:first-child {
  flex-shrink: 0;
  color: var(--color-foreground, #1a1a2e);
}
.pdp-hero__feature-prompt-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1px;
  min-width: 0;
}
.pdp-hero__feature-prompt-title {
  font-size: 13px;
  font-weight: 600;
  color: var(--color-foreground, #1a1a2e);
}
.pdp-hero__feature-prompt-desc {
  font-size: 11px;
  color: var(--color-text-muted, #999);
}
.pdp-hero__feature-prompt-arrow {
  flex-shrink: 0;
  color: #bbb;
  transition: transform 0.15s;
}
.pdp-hero__feature-prompt-link:hover .pdp-hero__feature-prompt-arrow {
  transform: translateX(2px);
  color: var(--color-foreground, #1a1a2e);
}

/* ---- Desktop ---- */

@media (min-width: 768px) {
  .pdp-hero {
    padding-block: 0 3rem;
  }

  .pdp-hero__grid {
    grid-template-columns: 1fr 1fr;
    column-gap: 1.5rem;
    row-gap: 0.5rem;
  }

  .pdp-hero__gallery-sticky {
    position: sticky;
    top: 12px;
    align-self: start;
  }

  .pdp-hero__main-image {
    border-radius: 0.5rem;
  }

  .pdp-hero__arrow {
    width: 2.5rem;
    height: 2.5rem;
  }

  .pdp-hero__thumb {
    width: 4rem;
    height: 4rem;
  }

  .pdp-hero__info {
    padding-inline: 0;
  }

  .pdp-hero__title {
    font-size: 2.25rem;
  }

  .pdp-hero__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 0;
    margin-bottom: 6px;
  }

}

@media (min-width: 1024px) {
  .pdp-hero__grid {
    column-gap: 3rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .pdp-hero__cta::before {
    animation: none;
  }
  .pdp-hero__carousel {
    scroll-behavior: auto;
  }
  .pdp-hero__accordion-content {
    transition: none;
  }
  .pdp-hero__accordion-chevron {
    transition: none;
  }
}

/* ─── Back In Stock Notify Form ─── */
.pdp-hero__notify {
  margin-top: 12px;
  border-radius: 1rem;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(0,0,0,0.08);
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}
.pdp-hero__notify[hidden] { display: none; }
.pdp-hero__notify-inner {
  padding: 1.25rem;
  text-align: left;
}
.pdp-hero__notify-icon {
  margin-block-end: 0.5rem;
  color: #999;
}
.pdp-hero__notify-heading {
  font-size: 15px;
  font-weight: 700;
  color: #1a1a2e;
  margin: 0 0 0.75rem;
}
.pdp-hero__notify-input-wrap {
  display: flex;
  gap: 8px;
}
.pdp-hero__notify-input {
  flex: 1;
  padding: 0.625rem 0.875rem;
  font-size: 13px;
  font-family: inherit;
  border: 1.5px solid rgba(0,0,0,0.12);
  border-radius: 8px;
  background: #f9f9f7;
  color: #1a1a2e;
  outline: none;
  transition: border-color 0.2s ease, background 0.2s ease;
}
.pdp-hero__notify-input:focus {
  border-color: #51BD7A;
  background: #fff;
}
.pdp-hero__notify-input::placeholder { color: #999; }
.pdp-hero__notify-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-width: 120px;
  padding: 0.625rem 1.25rem;
  font-size: 13px;
  font-weight: 600;
  font-family: inherit;
  color: #fff;
  background: #51BD7A;
  border: none;
  border-radius: var(--radius-button);
  cursor: pointer;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(45,138,35,0.25);
  transition: box-shadow 0.25s ease, transform 0.2s ease, background 0.2s ease;
}
.pdp-hero__notify-btn:hover { background: #51BD7A; box-shadow: 0 4px 16px rgba(45,138,35,0.4); transform: translateY(-1px); }
.pdp-hero__notify-btn:active { transform: translateY(0); box-shadow: 0 2px 8px rgba(45,138,35,0.25); }
.pdp-hero__notify-btn:disabled { opacity: 0.8; cursor: not-allowed; transform: none; }
.pdp-hero__notify-btn.is-loading [data-notify-btn-text] { opacity: 0; }
.pdp-hero__notify-btn.is-loading .pdp-hero__notify-spinner { opacity: 1; }
.pdp-hero__notify-spinner {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.2s;
  pointer-events: none;
}
.pdp-hero__notify-spinner svg { animation: spin 0.6s linear infinite; }
.pdp-hero__notify-spinner[hidden] { display: none !important; }
.pdp-hero__notify-input--error { border-color: #ef4444 !important; background: #fef2f2 !important; }
.pdp-hero__notify-input--error::placeholder { color: #ef4444; }
.theme-dark .pdp-hero__notify-input--error { background: rgba(239,68,68,0.1) !important; }
.pdp-hero__notify-disclaimer {
  font-size: 10px;
  color: #999;
  margin: 6px 0 0;
}
/* Dark mode notify */
.theme-dark .pdp-hero__notify {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.1);
  box-shadow: none;
}
.theme-dark .pdp-hero__notify-icon { color: rgba(255,255,255,0.5); }
.theme-dark .pdp-hero__notify-heading { color: #f5f5f5; }
.theme-dark .pdp-hero__notify-input {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.15);
  color: #f5f5f5;
}
.theme-dark .pdp-hero__notify-input::placeholder { color: rgba(255,255,255,0.4); }
.theme-dark .pdp-hero__notify-input:focus { border-color: rgba(255,255,255,0.4); background: rgba(255,255,255,0.12); }
.theme-dark .pdp-hero__notify-btn { background: #f5f5f5; color: #1a1a2e; }
.theme-dark .pdp-hero__notify-btn:hover { background: #e0e0e0; }
.theme-dark .pdp-hero__notify-disclaimer { color: rgba(255,255,255,0.4); }
.theme-dark .pdp-hero__notify-success-title { color: #f5f5f5; }
.theme-dark .pdp-hero__notify-success-desc { color: rgba(255,255,255,0.6); }
.theme-dark .pdp-hero__notify-btn { background: #51BD7A; color: #fff; }
.theme-dark .pdp-hero__notify-btn:hover { background: #51BD7A; }
.pdp-hero__notify-success {
  text-align: center;
}
.pdp-hero__notify-success[hidden] { display: none; }
.pdp-hero__notify-success-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem;
  animation: notifySuccessIn 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}
@keyframes notifySuccessIn {
  from { transform: scale(0.8); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}
.pdp-hero__notify-success-icon {
  margin-bottom: 0.25rem;
}
.pdp-hero__notify-success-title {
  font-size: 16px;
  font-weight: 700;
  color: #1a1a2e;
  margin: 0;
}
.pdp-hero__notify-success-desc {
  font-size: 12px;
  color: #666;
  margin: 0;
  max-width: 20rem;
}

/* Urgency Module (inventory wrapper) */
.pdp-hero__urgency-module {
  margin-top: 4px;
}

/* Stock Inventory */
.pdp-hero__inventory { }
.pdp-hero__inventory-info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
  color: #888;
}
.pdp-hero__inventory-left {
  display: flex;
  align-items: center;
  gap: 6px;
}
.pdp-hero__inventory-dot {
  --dot-color: #51BD7A;
  position: relative;
  width: 6px;
  height: 6px;
}
.pdp-hero__inventory-dot::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: var(--dot-color);
}
.pdp-hero__inventory-dot::after {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: 50%;
  background: var(--dot-color);
  opacity: 0.5;
  animation: ping 1.5s cubic-bezier(0, 0, 0.2, 1) infinite;
}
.pdp-hero__inventory-dot.is-out::after { animation: none; opacity: 0; }
@keyframes ping {
  75%, 100% { transform: scale(2); opacity: 0; }
}
.pdp-hero__inventory-status { color: #51BD7A; font-weight: 500; }

/* Inventory progress bar */
.pdp-hero__inventory-bar {
  width: 100%;
  height: 4px;
  background: #eee;
  border-radius: 9999px;
  margin-top: 8px;
  overflow: hidden;
}
.pdp-hero__inventory-fill {
  height: 100%;
  background: linear-gradient(90deg, #51BD7A 0%, #51BD7A 100%);
  border-radius: 9999px;
  width: 68%;
  transition: width 0.6s ease;
}
.pdp-hero__inventory-right {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: #888;
}
.pdp-hero__inventory-sep {
  color: rgba(0,0,0,0.15);
}
.pdp-hero__inventory-country {
  display: flex;
  align-items: center;
  gap: 4px;
}
.pdp-hero__inventory-timer {
  display: flex;
  align-items: center;
  gap: 4px;
  font-variant-numeric: tabular-nums;
  color: #888;
}
.pdp-hero__inventory-timer svg { flex-shrink: 0; }
.pdp-hero__inventory-timer[hidden] { display: none; }

/* Shipping line — sits under inventory bar */
.pdp-hero__shipping {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  color: #888;
  margin-top: 6px;
}
.pdp-hero__shipping svg { flex-shrink: 0; color: #888; }
.pdp-hero__shipping strong { color: #888; font-weight: 600; }

/* Trust Badges */
.pdp-hero__trust-badges {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: #666;
  margin-top: 4px;
}
.pdp-hero__trust-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}
.pdp-hero__trust-badge svg { color: #51BD7A; flex-shrink: 0; }
.pdp-hero__trust-sep { color: rgba(0,0,0,0.15); }

/* Included Items */
.pdp-hero__included-list p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--color-foreground, #1a1a2e);
  margin: 0;
}
.pdp-hero__included-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-size: 14px;
  line-height: 1.6;
  color: var(--color-foreground, #1a1a2e);
  padding: 0.125rem 0;
}
.pdp-hero__included-qty {
  color: var(--color-text-secondary, #666);
  font-size: 13px;
  flex-shrink: 0;
  margin-left: 1rem;
}
/* Rich text variant for What's Included */
.pdp-hero__included-richtext {
  font-size: 14px;
  line-height: 1.6;
  color: var(--color-foreground, #1a1a2e);
}
.pdp-hero__included-richtext ul,
.pdp-hero__included-richtext ol {
  padding-left: 1.25rem;
  margin: 0;
}
.pdp-hero__included-richtext li {
  padding: 0.125rem 0;
}
.pdp-hero__included-richtext p {
  margin: 0 0 0.25rem;
}

/* Certification Logos */
.pdp-hero__cert-logos {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 24px;
  padding: 12px 0;
}
.pdp-hero__cert-logos img {
  height: 40px;
  width: auto;
  object-fit: contain;
  opacity: 0.8;
}
.theme-dark .pdp-hero__cert-logos img {
  filter: invert(1) brightness(2);
  opacity: 0.9;
}
.pdp-hero__accordion-answer p { font-size: 14px; color: #666; margin-bottom: 8px; }

/* Doc Buttons */
.pdp-hero__doc-row {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
  padding-top: 4px;
  margin-top: 0;
}
.pdp-hero__doc-buttons {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.pdp-hero__doc-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  font-size: 12px;
  font-weight: 500;
  color: #1a1a2e;
  background: transparent;
  border: 1px solid rgba(0,0,0,0.15);
  border-radius: 9999px;
  cursor: pointer;
  text-decoration: none;
  transition: background-color 0.2s, color 0.2s, border-color 0.2s;
  font-family: inherit;
  line-height: 1;
}
.pdp-hero__doc-btn:hover {
  background: #1a1a2e;
  color: #fff;
  border-color: #1a1a2e;
  text-decoration: none;
}
.pdp-hero__sku {
  font-size: 11px;
  font-family: ui-monospace, SFMono-Regular, 'SF Mono', Menlo, Consolas, monospace;
  color: #999;
  white-space: nowrap;
  flex-shrink: 0;
}

/* Tech Specs Modal */
.pdp-hero__modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 70;
  display: none;
  align-items: center;
  justify-content: center;
}
.pdp-hero__modal-overlay.is-open {
  display: flex;
}
.pdp-hero__modal-overlay::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.5);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
.pdp-hero__modal {
  position: relative;
  background: var(--color-background, #faf9f6);
  border-radius: var(--radius-card);
  box-shadow: 0 25px 50px -12px rgba(0,0,0,0.25);
  max-width: 32rem;
  width: calc(100% - 2rem);
  max-height: 85vh;
  display: flex;
  flex-direction: column;
  animation: fadeSlideIn 0.3s ease-out;
}
@keyframes fadeSlideIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}
.pdp-hero__modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  border-bottom: 1px solid var(--color-border, #deddd8);
  flex-shrink: 0;
}
.pdp-hero__modal-title {
  font-size: 18px;
  font-weight: 600;
  margin: 0;
  color: var(--color-foreground, #1a1a2e);
}
.pdp-hero__modal-close {
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  border-radius: 8px;
  color: #888;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.2s, background 0.2s;
}
.pdp-hero__modal-close:hover {
  color: var(--color-foreground, #1a1a2e);
  background: var(--color-secondary, #eae9e4);
}
.pdp-hero__modal-body {
  overflow-y: auto;
  padding: 16px 24px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.pdp-hero__specs-section { }
.pdp-hero__specs-section--last { padding-bottom: 8px; }
.pdp-hero__specs-heading {
  font-size: 14px;
  font-weight: 600;
  margin: 0 0 12px 0;
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--color-foreground, #1a1a2e);
}
.pdp-hero__specs-bar {
  width: 4px;
  height: 16px;
  border-radius: 100px;
  flex-shrink: 0;
}
.pdp-hero__specs-rows {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.pdp-hero__specs-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  padding: 6px 0;
  border-bottom: 1px solid rgba(0,0,0,0.04);
}
.pdp-hero__specs-row:last-child { border-bottom: none; }
.pdp-hero__specs-row span:first-child {
  font-size: 12px;
  color: #888;
}
.pdp-hero__specs-row span:last-child {
  font-size: 12px;
  font-weight: 500;
  text-align: right;
  color: var(--color-foreground, #1a1a2e);
}
.pdp-hero__specs-modes {
  margin-top: 12px;
  background: rgba(0,0,0,0.02);
  border-radius: 8px;
  padding: 12px;
}
.pdp-hero__specs-modes-label {
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #888;
  margin-bottom: 8px;
}
.pdp-hero__specs-mode {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  padding: 3px 0;
}
.pdp-hero__specs-mode-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
}
.pdp-hero__specs-mode-name {
  font-weight: 500;
  min-width: 70px;
}
.pdp-hero__specs-mode-wave {
  color: #888;
  flex: 1;
}
.pdp-hero__specs-mode-density {
  color: #888;
  font-family: ui-monospace, SFMono-Regular, "SF Mono", Menlo, monospace;
  font-size: 10px;
}
.pdp-hero__specs-certs {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  padding: 8px 0;
}
.pdp-hero__specs-certs img {
  height: 32px;
  width: auto;
  object-fit: contain;
  opacity: 0.7;
}

/* ── Pairs Well With — vertical stacked, boxed white ── */
.pdp-hero__cross-sell {
  margin-top: 8px;
}
.pdp-hero__cross-sell-box {
  background: #fff;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: var(--radius-card);
  padding: 1rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06), 0 0 0 1px rgba(0,0,0,0.02);
}
.pdp-hero__cross-sell-title {
  display: block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #999;
  margin-bottom: 0.75rem;
}
/* ── Skeleton loader ── */
.pdp-hero__cross-sell-skeleton {
  display: flex;
  gap: 10px;
}
.pdp-hero__cross-sell-skeleton-card {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border-radius: var(--radius-card);
  border: 1px solid #eee;
  background: #fff;
}
.pdp-hero__cross-sell-skeleton-img {
  flex-shrink: 0;
  width: 64px;
  height: 64px;
  border-radius: var(--radius-image);
  background: #f0eeea;
  animation: crossSellPulse 1.5s ease-in-out infinite;
}
.pdp-hero__cross-sell-skeleton-lines {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.pdp-hero__cross-sell-skeleton-line {
  height: 10px;
  border-radius: 4px;
  background: #f0eeea;
  animation: crossSellPulse 1.5s ease-in-out infinite;
}
.pdp-hero__cross-sell-skeleton-line:nth-child(2) { animation-delay: 0.15s; }
.pdp-hero__cross-sell-skeleton-line:nth-child(3) { animation-delay: 0.3s; }
.pdp-hero__cross-sell-skeleton-btn {
  flex-shrink: 0;
  width: 52px;
  height: 30px;
  border-radius: 6px;
  background: #f0eeea;
  animation: crossSellPulse 1.5s ease-in-out infinite;
  animation-delay: 0.2s;
}
@keyframes crossSellPulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}
.pdp-hero__cross-sell-skeleton[hidden] { display: none; }

/* ── Stack: vertical list inside the white box ── */
.pdp-hero__cross-sell-stack {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.pdp-hero__cross-sell-stack:empty { display: none; }
.pdp-hero__cross-sell-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  text-decoration: none;
  color: inherit;
  border-bottom: 1px solid #f0f0f0;
}
.pdp-hero__cross-sell-card:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.pdp-hero__cross-sell-card:first-child {
  padding-top: 0;
}
.pdp-hero__cross-sell-img {
  position: relative;
  flex-shrink: 0;
  width: 64px;
  height: 64px;
  border-radius: var(--radius-image);
  overflow: hidden;
  background: #f5f4f0;
  border: 1px solid #eee;
}
.pdp-hero__cross-sell-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.pdp-hero__cross-sell-card:hover .pdp-hero__cross-sell-img img {
  transform: scale(1.04);
}
/* Badge removed — no discount label on cross-sell images */
.pdp-hero__cross-sell-body {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.pdp-hero__cross-sell-name {
  font-size: 13px;
  font-weight: 600;
  line-height: 1.3;
  color: var(--color-foreground, #1a1a2e);
  text-decoration: none;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.pdp-hero__cross-sell-desc {
  font-size: 11px;
  line-height: 1.35;
  color: var(--color-text-secondary, #666);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.pdp-hero__cross-sell-pricing {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 1px;
}
.pdp-hero__cross-sell-price {
  font-size: 13px;
  font-weight: 700;
  color: var(--color-foreground, #1a1a2e);
}
.pdp-hero__cross-sell-compare {
  font-size: 11px;
  color: var(--color-text-muted, #999);
  text-decoration: line-through;
}
.pdp-hero__cross-sell-add {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 0.5rem 1rem;
  background: #1a1a2e;
  color: #fff;
  border: none;
  border-radius: var(--radius-button);
  font-size: 0.8125rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s cubic-bezier(0.22, 1, 0.36, 1);
  font-family: inherit;
  white-space: nowrap;
  overflow: hidden;
  line-height: 1;
}
.pdp-hero__cross-sell-add-plus {
  display: inline-block;
  max-width: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-width 0.5s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.3s ease, margin 0.5s cubic-bezier(0.22, 1, 0.36, 1);
  margin-right: 0;
}
@media (hover: hover) {
  .pdp-hero__cross-sell-add:hover .pdp-hero__cross-sell-add-plus {
    max-width: 1rem;
    opacity: 1;
    margin-right: 0.2rem;
  }
}
.pdp-hero__cross-sell-add:hover {
  opacity: 0.8;
}
.pdp-hero__cross-sell-add.is-adding {
  pointer-events: none;
  opacity: 0.7;
}
.pdp-hero__cross-sell-add.is-added {
  background: #51BD7A;
  pointer-events: none;
}

/* ---- Lightbox ---- */

.pdp-hero__lightbox {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: none;
  align-items: center;
  justify-content: center;
}

.pdp-hero__lightbox.is-open {
  display: flex;
}

.pdp-hero__lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.95);
}

.pdp-hero__lightbox-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 10;
  width: 3rem;
  height: 3rem;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 200ms ease;
}

.pdp-hero__lightbox-close:hover {
  background: rgba(255, 255, 255, 0.2);
}

.pdp-hero__lightbox-counter {
  position: absolute;
  top: 1.25rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.875rem;
  font-weight: 500;
}

.pdp-hero__lightbox-stage {
  position: relative;
  z-index: 5;
  max-width: 56rem;
  max-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pdp-hero__lightbox-img {
  max-width: 100%;
  max-height: 80vh;
  object-fit: contain;
  border-radius: 0.5rem;
  user-select: none;
}

.pdp-hero__lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 200ms ease;
}

.pdp-hero__lightbox-nav:hover {
  background: rgba(255, 255, 255, 0.2);
}

.pdp-hero__lightbox-nav--prev {
  left: 1rem;
}

.pdp-hero__lightbox-nav--next {
  right: 1rem;
}

.pdp-hero__lightbox-thumbs {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  z-index: 10;
  display: flex;
  gap: 0.5rem;
}

.pdp-hero__lightbox-thumb {
  width: 4rem;
  height: 4rem;
  border-radius: 0.5rem;
  overflow: hidden;
  border: 2px solid rgba(255, 255, 255, 0.2);
  opacity: 0.6;
  cursor: pointer;
  padding: 0;
  background: none;
  transition: opacity 200ms ease, border-color 200ms ease;
  flex-shrink: 0;
}

.pdp-hero__lightbox-thumb--active {
  border-color: #fff;
  opacity: 1;
}

.pdp-hero__lightbox-thumb:hover {
  opacity: 0.9;
}

.pdp-hero__lightbox-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Breadcrumb moved to standalone pdp-breadcrumb.liquid section */

/* ─── Description Read More ─── */
.pdp-hero__desc-wrap {
  position: relative;
}
.pdp-hero__desc-content {
  max-height: calc(1.625em * 4);
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.pdp-hero__desc-wrap.is-expanded .pdp-hero__desc-content {
  max-height: 60em;
}
.pdp-hero__desc-fade {
  position: absolute;
  bottom: 2.1rem;
  left: 0;
  right: 0;
  height: 1.8em;
  background: linear-gradient(to bottom, transparent, var(--section-bg, var(--color-background, #f5f5f0)));
  pointer-events: none;
  transition: opacity 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.pdp-hero__desc-wrap.is-expanded .pdp-hero__desc-fade {
  opacity: 0;
}

/* Full-width divider with centered pill button */
.pdp-hero__desc-divider {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 8px;
  width: 100%;
}
.pdp-hero__desc-divider-line {
  flex: 1;
  height: 1px;
  background: var(--color-border, #e4e4e7);
}
.pdp-hero__desc-toggle {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: #e4e4e7;
  color: #1a1a2e;
  border: none;
  border-radius: 9999px;
  padding: 4px 13px;
  font-family: inherit;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.01em;
  cursor: pointer;
  white-space: nowrap;
  flex-shrink: 0;
  transition: background 0.2s ease, transform 0.15s ease;
}
.pdp-hero__desc-toggle:hover {
  background: #d4d4d8;
}
.pdp-hero__desc-toggle:active {
  transform: scale(0.97);
}
.pdp-hero__desc-toggle-icon {
  transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  flex-shrink: 0;
}
.pdp-hero__desc-wrap.is-expanded .pdp-hero__desc-toggle-icon {
  transform: rotate(180deg);
}
/* Expanded = same bg, same color — unified look */
.pdp-hero__desc-wrap.is-expanded .pdp-hero__desc-toggle {
  background: #e4e4e7;
  color: #1a1a2e;
}
.pdp-hero__desc-wrap.is-expanded .pdp-hero__desc-toggle:hover {
  background: #d4d4d8;
}

/* ─── Installments ─── */
.pdp-hero__installments {
  margin-top: -0.5rem;
}
.pdp-hero__installments form {
  margin: 0;
  padding: 0;
}
.pdp-hero__installments shopify-payment-terms {
  font-size: 12px;
  font-family: inherit;
  color: #888;
}
.pdp-hero__installments .shopify-installments {
  font-size: 12px;
  color: #888;
  margin: 0;
  padding: 0;
}
.pdp-hero__installments .shopify-installments__content {
  font-size: 12px;
  color: #888;
}
/* Hide "Check your purchasing power" button */
.pdp-hero__installments .shopify-installments__learn-more,
.pdp-hero__installments shopify-payment-terms button,
.pdp-hero__installments .shopify-installments button {
  display: none !important;
}

/* Title sizes */
.pdp-hero__title--sm { font-size: 1.5rem; }
.pdp-hero__title--md { font-size: 2rem; }
.pdp-hero__title--lg { font-size: 2.5rem; }
@media (min-width: 750px) {
  .pdp-hero__title--sm { font-size: 1.75rem; }
  .pdp-hero__title--md { font-size: 2.25rem; }
  .pdp-hero__title--lg { font-size: 3rem; }
}

/* ── Mobile Sticky Add-to-Cart ── */
.pdp-hero__mobile-sticky {
  display: none;
}
@media (max-width: 749px) {
  .pdp-hero__mobile-sticky {
    display: block;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 90;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  }
  .pdp-hero__mobile-sticky.is-visible {
    transform: translateY(0);
  }
  .pdp-hero__mobile-sticky[hidden] { display: none; }
  .pdp-hero__mobile-sticky-fade {
    height: 2rem;
    background: linear-gradient(to bottom, transparent, var(--section-bg, var(--color-background, #f5f5f0)));
    pointer-events: none;
  }
  .theme-dark .pdp-hero__mobile-sticky-fade {
    background: linear-gradient(to bottom, transparent, var(--section-bg, #141416));
  }
  .pdp-hero__mobile-sticky-bar {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.625rem 1rem;
    background: #fff;
    border-top: 1px solid #eee;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.06);
  }
  .pdp-hero__mobile-sticky-qty {
    display: flex;
    align-items: center;
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
  }
  .pdp-hero__mobile-sticky-qty button {
    width: 2rem;
    height: 2.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    font-size: 1rem;
    font-family: inherit;
    cursor: pointer;
    color: #1a1a2e;
  }
  .pdp-hero__mobile-sticky-qty span {
    width: 1.5rem;
    text-align: center;
    font-size: 0.8125rem;
    font-weight: 600;
    color: #1a1a2e;
  }
  .pdp-hero__mobile-sticky-add {
    flex: 1;
    padding: 0.625rem 0;
    background: #1a1a2e;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 0.8125rem;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    transition: background 0.2s;
  }
  .pdp-hero__mobile-sticky-add:hover { background: #2a2a2d; }
  .pdp-hero__mobile-sticky-add.is-added { background: #51BD7A; }
  .pdp-hero__mobile-sticky-checkout {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.25rem;
    padding: 0.625rem 0.75rem;
    background: #5a31f4;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 0.75rem;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    flex-shrink: 0;
    transition: background 0.2s;
  }
  .pdp-hero__mobile-sticky-checkout:hover { background: #4a28c4; }
}

/* ── Dark scheme overrides ── */
.theme-dark .pdp-hero__doc-btn {
  color: #f5f5f5;
  border-color: rgba(255,255,255,0.25);
}
.theme-dark .pdp-hero__doc-btn svg { stroke: #f5f5f5; }
.theme-dark .pdp-hero__doc-btn:hover {
  background: #fff;
  color: #1a1a2e !important;
  border-color: #fff;
}
.theme-dark .pdp-hero__doc-btn:hover svg { stroke: #1a1a2e !important; }
.theme-dark .pdp-hero__specs-heading {
  color: #f5f5f5;
}
.theme-dark .pdp-hero__specs-row span:last-child {
  color: #f5f5f5;
}
.theme-dark .pdp-hero__specs-row {
  border-bottom-color: rgba(255,255,255,0.06);
}
.theme-dark .pdp-hero__modal-title {
  color: #f5f5f5;
}
.theme-dark .pdp-hero__modal-body {
  color: rgba(255,255,255,0.8);
}
.theme-dark .pdp-hero__modal {
  background: #1a1a2e;
}
.theme-dark .pdp-hero__modal-close {
  color: rgba(255,255,255,0.5);
}
.theme-dark .pdp-hero__modal-close:hover {
  color: #f5f5f5;
  background: rgba(255,255,255,0.1);
}
.theme-dark .pdp-hero__specs-modes {
  background: rgba(255,255,255,0.05);
}
/* END_SECTION:pdp-hero */

/* START_SECTION:pdp-how-to-use (INDEX:236) */
.how-to-use {
    display: block;
    padding-block: 4rem;
  }

  .how-to-use__container {
    max-width: 72rem;
    padding-inline: 1rem;
  }

  .how-to-use__header {
    text-align: center;
    margin-block-end: 2.5rem;
  }

  .how-to-use__title {
    font-size: var(--font-size-3xl);
    font-weight: 600;
    letter-spacing: var(--tracking-tight);
    color: var(--color-foreground);
  }

  .how-to-use__subtitle {
    color: var(--color-text-muted);
    margin-block-start: 0.5rem;
  }

  /* Slider wrapper — positions arrows and fades */
  .how-to-use__slider-wrap {
    position: relative;
  }

  /* Scroll container */
  .how-to-use__scroll {
    display: flex;
    gap: 1rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-block-end: 1rem;
    scrollbar-width: none;
    scroll-behavior: smooth;
  }

  .how-to-use__scroll::-webkit-scrollbar {
    display: none;
  }

  .how-to-use__card {
    flex: 0 0 65vw;
    scroll-snap-align: center;
  }

  .how-to-use__card-inner {
    border-radius: var(--radius-xl);
    overflow: hidden;
    background: #f0ede8;
    height: 100%;
  }

  .how-to-use__media-wrapper {
    aspect-ratio: 4 / 5;
    overflow: hidden;
    position: relative;
  }

  .how-to-use__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .how-to-use__video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border: none;
    position: absolute;
    inset: 0;
  }

  .how-to-use__placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #e8e5e0;
    padding: 2rem;
  }

  .how-to-use__placeholder svg {
    width: 100%;
    height: auto;
    opacity: 0.4;
  }

  .how-to-use__text {
    padding: 1rem;
  }

  .how-to-use__step-label {
    font-size: var(--font-size-sm);
    font-weight: 600;
    color: var(--color-foreground);
    display: block;
  }

  .how-to-use__step-title {
    font-size: var(--font-size-sm);
    font-weight: 600;
    color: var(--color-foreground);
    margin-block-start: 0.25rem;
  }

  .how-to-use__step-desc {
    font-size: var(--font-size-sm);
    color: var(--color-text-muted);
    margin-block-start: 0.125rem;
    line-height: var(--line-height-base);
  }

  /* ── Arrows (gallery style) ── */
  .how-to-use__arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1a1a2e;
    transition: opacity 200ms ease, transform 200ms ease, box-shadow 200ms ease;
    padding: 0;
  }

  .how-to-use__arrow:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.18);
    transform: translateY(-50%) scale(1.05);
  }

  .how-to-use__arrow--prev {
    left: -0.5rem;
  }

  .how-to-use__arrow--next {
    right: -0.5rem;
  }

  .how-to-use__arrow[disabled] {
    opacity: 0;
    pointer-events: none;
  }

  /* ── Gradient fades (same as "You Might Like") ── */
  .how-to-use__fade {
    position: absolute;
    top: 0;
    bottom: 1rem;
    width: 3rem;
    z-index: 2;
    pointer-events: none;
    opacity: 0;
    transition: opacity 300ms ease;
  }

  .how-to-use__fade--left {
    left: 0;
    background: linear-gradient(to right, var(--section-bg, var(--color-background, #fff)) 0%, transparent 100%);
  }

  .how-to-use__fade--right {
    right: 0;
    background: linear-gradient(to left, var(--section-bg, var(--color-background, #fff)) 0%, transparent 100%);
  }

  .how-to-use__fade--visible {
    opacity: 1;
  }

  /* ── Page-view dots (fewer dots = groups of cards) ── */
  .how-to-use__pager {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-block-start: 1rem;
  }

  .how-to-use__page-dot {
    width: 0.5rem;
    height: 0.5rem;
    border-radius: var(--radius-full);
    background: var(--color-border);
    border: none;
    padding: 0;
    cursor: pointer;
    transition: width 200ms ease, background-color 200ms ease;
  }

  .how-to-use__page-dot--active {
    width: 1.5rem;
    height: 0.5rem;
    background: var(--color-foreground);
  }

  /* Tablet: 3 visible */
  @media screen and (min-width: 750px) {
    .how-to-use {
      padding-block: 5rem;
    }

    .how-to-use__container {
      padding-inline: 1.5rem;
    }

    .how-to-use__title {
      font-size: var(--font-size-4xl);
    }

    .how-to-use__card {
      flex: 0 0 calc(33.333% - 0.67rem);
    }

    .how-to-use__arrow--prev {
      left: 0.5rem;
    }

    .how-to-use__arrow--next {
      right: 0.5rem;
    }

    .how-to-use__arrow {
      width: 40px;
      height: 40px;
    }
  }

  /* Desktop: grid for ≤5 items, slider for 6+ */
  @media screen and (min-width: 990px) {
    .how-to-use--grid .how-to-use__scroll {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
      gap: 1rem;
      overflow-x: visible;
      scroll-snap-type: none;
      padding-block-end: 0;
    }

    .how-to-use--grid .how-to-use__pager,
    .how-to-use--grid .how-to-use__arrow,
    .how-to-use--grid .how-to-use__fade {
      display: none;
    }

    .how-to-use--slider .how-to-use__card {
      flex: 0 0 calc(20% - 0.8rem);
    }
  }

  @media (prefers-reduced-motion: reduce) {
    .how-to-use__page-dot,
    .how-to-use__arrow {
      transition: none;
    }
  }
/* END_SECTION:pdp-how-to-use */

/* START_SECTION:pdp-image-grid (INDEX:237) */
.pdp-image-grid {
    padding: 4rem 0;
  }

  @media screen and (min-width: 750px) {
    .pdp-image-grid {
      padding: 5rem 0;
    }
  }

  .pdp-image-grid__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.25rem;
  }

  /* Header */
  .pdp-image-grid__header {
    text-align: center;
    margin-bottom: 2.5rem;
  }

  .pdp-image-grid__title {
    font-size: 2rem;
    font-weight: 600;
    letter-spacing: -0.02em;
    color: #1a1a2e;
    margin: 0 0 0.5rem;
  }

  @media screen and (min-width: 750px) {
    .pdp-image-grid__title {
      font-size: 2.25rem;
    }
  }

  .pdp-image-grid__subtitle {
    font-size: 0.9375rem;
    color: rgba(26, 26, 46, 0.55);
    margin: 0 auto;
    max-width: 560px;
    line-height: 1.6;
  }

  /* Grid layouts */
  .pdp-image-grid__grid {
    display: grid;
    gap: var(--grid-gap, 1rem);
  }

  /* 1 block: full width */
  .pdp-image-grid--count-1 .pdp-image-grid__grid {
    grid-template-columns: 1fr;
  }

  /* 2 blocks: 2 equal columns */
  .pdp-image-grid--count-2 .pdp-image-grid__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* 3 blocks: 3 equal columns */
  .pdp-image-grid--count-3 .pdp-image-grid__grid {
    grid-template-columns: repeat(3, 1fr);
  }

  /* 4 blocks: 2x2 grid */
  .pdp-image-grid--count-4 .pdp-image-grid__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* 5+ blocks: auto-fit */
  .pdp-image-grid--count-5 .pdp-image-grid__grid,
  .pdp-image-grid--count-6 .pdp-image-grid__grid,
  .pdp-image-grid--count-7 .pdp-image-grid__grid,
  .pdp-image-grid--count-8 .pdp-image-grid__grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }

  /* Item */
  .pdp-image-grid__item {
    position: relative;
  }

  .pdp-image-grid__link {
    display: block;
    text-decoration: none;
    color: inherit;
  }

  /* Media container */
  .pdp-image-grid__media {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-xl, 1rem);
    background: #f0efea;
  }

  .pdp-image-grid__img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: var(--image-ratio, auto);
    transition: transform 400ms cubic-bezier(0.22, 1, 0.36, 1);
  }

  .pdp-image-grid__media--zoomable:hover .pdp-image-grid__img {
    transform: scale(1.03);
  }

  /* Video */
  .pdp-image-grid__video {
    display: block;
    width: 100%;
    aspect-ratio: var(--image-ratio, 16 / 9);
    border: 0;
    border-radius: var(--radius-xl, 1rem);
  }

  /* Placeholder */
  .pdp-image-grid__placeholder {
    aspect-ratio: var(--image-ratio, 1 / 1);
    display: flex;
    align-items: center;
    justify-content: center;
    background: #e8e7e3;
  }

  .pdp-image-grid__placeholder-svg {
    width: 60%;
    height: 60%;
    opacity: 0.3;
  }

  /* Caption overlay */
  .pdp-image-grid__caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2.5rem 1.25rem 1.25rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0) 100%);
    border-radius: 0 0 var(--radius-xl, 1rem) var(--radius-xl, 1rem);
  }

  .pdp-image-grid__caption-text {
    font-size: 0.875rem;
    font-weight: 600;
    color: #fff;
    letter-spacing: 0.01em;
  }

  /* Mobile responsive */
  @media screen and (max-width: 749px) {
    .pdp-image-grid__title {
      font-size: 1.5rem;
    }

    .pdp-image-grid__header {
      margin-bottom: 1.5rem;
    }

    /* 1-2 blocks stay single column on mobile */
    .pdp-image-grid--count-1 .pdp-image-grid__grid,
    .pdp-image-grid--count-2 .pdp-image-grid__grid {
      grid-template-columns: 1fr;
    }

    /* 3+ blocks: 2 columns on mobile */
    .pdp-image-grid--count-3 .pdp-image-grid__grid,
    .pdp-image-grid--count-4 .pdp-image-grid__grid,
    .pdp-image-grid--count-5 .pdp-image-grid__grid,
    .pdp-image-grid--count-6 .pdp-image-grid__grid,
    .pdp-image-grid--count-7 .pdp-image-grid__grid,
    .pdp-image-grid--count-8 .pdp-image-grid__grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }
/* END_SECTION:pdp-image-grid */

/* START_SECTION:pdp-recommendations (INDEX:238) */
.pdp-recommendations {
    display: block;
    padding: 3rem 0;
    background: transparent;
  }
  .pdp-recommendations--dark {
    background: transparent;
  }
  .pdp-recommendations--dark .pdp-recommendations__tab {
    color: rgba(255,255,255,0.5);
  }
  .pdp-recommendations--dark .pdp-recommendations__tab--active {
    color: #f5f5f5;
  }
  .pdp-recommendations--dark .pdp-recommendations__tab::after {
    background: #f5f5f5;
  }
  .pdp-recommendations--dark .pdp-recommendations__arrow {
    background: #1e1e21;
    border-color: rgba(255,255,255,0.1);
    color: #f5f5f5;
  }
  .pdp-recommendations--dark .pdp-recommendations__dot,
  .pdp-recommendations--dark .pdp-recommendations__page-dot {
    background: rgba(255,255,255,0.2);
  }
  .pdp-recommendations--dark .pdp-recommendations__dot--active,
  .pdp-recommendations--dark .pdp-recommendations__page-dot--active {
    background: #f5f5f5;
  }
  .pdp-recommendations--dark .pdp-recommendations__empty {
    color: rgba(255,255,255,0.4);
  }
  /* Hide add-to-cart + quick view buttons inside recommendations */
  .pdp-recommendations .nf-card__actions { display: none; }
  .pdp-recommendations .nf-card__add-btn { display: none; }
  .pdp-recommendations .nf-card__quick-view { display: none; }

  .pdp-recommendations__section-title {
    font-size: 1.125rem;
    font-weight: 600;
    letter-spacing: -0.01em;
    color: var(--color-foreground, #1a1a2e);
    margin: 0;
    padding: 0.375rem 0;
  }
  .pdp-recommendations--dark .pdp-recommendations__section-title { color: #f5f5f5; }
  .pdp-recommendations--dark .pdp-recommendations__tab-container {
    background: rgba(255,255,255,0.08);
  }
  .pdp-recommendations--dark .pdp-recommendations__tab-container:has(.pdp-recommendations__section-title) {
    background: transparent;
    padding: 0;
  }
  .pdp-recommendations--dark .pdp-recommendations__tab--active {
    background: #f5f5f5;
    color: #1a1a2e;
  }
  .pdp-recommendations--dark .pdp-recommendations__tab--active:hover {
    color: #1a1a2e;
  }
  .pdp-recommendations--dark .pdp-recommendations__browse-link {
    color: rgba(255,255,255,0.5);
  }
  .pdp-recommendations--dark .pdp-recommendations__browse-link:hover {
    color: #f5f5f5;
  }
  .pdp-recommendations--dark .pdp-recommendations__fade--left {
    background: linear-gradient(to right, #141416 0%, transparent 100%);
  }
  .pdp-recommendations--dark .pdp-recommendations__fade--right {
    background: linear-gradient(to left, #141416 0%, transparent 100%);
  }
  .pdp-recommendations--dark .nf-card__title { color: #f5f5f5; }
  .pdp-recommendations--dark .nf-card__price { color: #f5f5f5; }
  .pdp-recommendations--dark .nf-card__review-count { color: rgba(255,255,255,0.5); }
  .pdp-recommendations--dark .nf-card__star { color: #f5f5f5; }
  .pdp-recommendations--dark .nf-card__compare { color: rgba(255,255,255,0.4); }
  .pdp-recommendations--dark .nf-card__desc { color: rgba(255,255,255,0.45); }
  .pdp-recommendations--dark .nf-card__tag { background: rgba(255,255,255,0.08); color: rgba(255,255,255,0.55); }
  .pdp-recommendations--dark .nf-card__add-btn { background: #f5f5f5; color: #1a1a2e; }
  .pdp-recommendations--dark .nf-card__add-btn:hover { background: #e0e0e0; }

  @media screen and (min-width: 750px) {
    .pdp-recommendations {
      padding: 4rem 0;
    }
  }

  .pdp-recommendations__inner {
    max-width: 72rem;
    margin: 0 auto;
    padding: 0 1rem;
  }

  .pdp-recommendations__header {
    margin-bottom: 1.5rem;
  }

  .pdp-recommendations__tabs-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
  }

  .pdp-recommendations__tab-container {
    display: inline-flex;
    gap: 0.25rem;
    background: rgba(0, 0, 0, 0.05);
    border-radius: var(--radius-button);
    padding: 0.25rem;
  }
  /* When only a section title is inside (collection context), strip pill bg */
  .pdp-recommendations__tab-container:has(.pdp-recommendations__section-title) {
    background: transparent;
    padding: 0;
  }

  .pdp-recommendations__tab {
    padding: 0.375rem 1rem;
    border: none;
    border-radius: var(--radius-button);
    font-size: 0.875rem;
    font-weight: 500;
    font-family: inherit;
    cursor: pointer;
    transition: background 200ms ease, color 200ms ease, box-shadow 200ms ease;
    background: transparent;
    color: #71717a;
    white-space: nowrap;
  }

  .pdp-recommendations__tab:hover {
    color: #1a1a2e;
  }

  .pdp-recommendations__tab--active {
    background: #1a1a2e;
    color: #fff;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  }

  .pdp-recommendations__tab--active:hover {
    color: #fff;
  }

  .pdp-recommendations__browse-link,
  .pdp-recommendations__browse-link:hover {
    font-size: 0.75rem;
    font-weight: 400;
    text-decoration: none;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
  }

  .pdp-recommendations__browse-link {
    color: #71717a;
    transition: color 200ms ease;
  }

  .pdp-recommendations__browse-link:hover {
    color: #1a1a2e;
  }

  .pdp-recommendations__browse-arrow {
    font-size: 0.6875rem;
  }

  .pdp-recommendations__browse-link--desktop {
    display: none;
  }

  .pdp-recommendations__browse-link--mobile {
    display: flex;
    justify-content: center;
    margin-top: 1rem;
  }

  .pdp-recommendations__panel {
    display: none;
  }

  .pdp-recommendations__panel--active {
    display: block;
  }

  .pdp-recommendations__slider-wrap {
    position: relative;
  }

  .pdp-recommendations__slider {
    display: flex;
    gap: 1rem;
    overflow-x: auto;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-bottom: 0.5rem;
  }

  .pdp-recommendations__slider::-webkit-scrollbar {
    display: none;
  }

  .pdp-recommendations__fade {
    position: absolute;
    top: 0;
    bottom: 0.5rem;
    width: 3rem;
    z-index: 2;
    pointer-events: none;
    opacity: 0;
    transition: opacity 300ms ease;
  }

  .pdp-recommendations__fade--left {
    left: 0;
    background: linear-gradient(to right, var(--section-bg, var(--color-background, #f0efea)) 0%, transparent 100%);
  }

  .pdp-recommendations__fade--right {
    right: 0;
    background: linear-gradient(to left, var(--section-bg, var(--color-background, #f0efea)) 0%, transparent 100%);
  }

  .pdp-recommendations__fade--visible {
    opacity: 1;
  }

  .pdp-recommendations__card {
    flex: 0 0 200px;
    min-width: 200px;
  }

  .pdp-recommendations__card .nf-card {
    width: 100%;
  }

  .pdp-recommendations__card-link,
  .pdp-recommendations__card-link:hover {
    display: block;
    text-decoration: none;
    color: inherit;
  }

  .pdp-recommendations__card-image-wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    border-radius: 0.75rem;
    overflow: hidden;
    background: #f5f5f7;
    margin-bottom: 0.625rem;
    border: 1px solid #e5e5e5;
    transition: border-color 200ms ease;
  }

  .pdp-recommendations__card-link:hover .pdp-recommendations__card-image-wrap {
    border-color: rgba(26, 26, 46, 0.2);
  }

  .pdp-recommendations__card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 300ms ease;
  }

  .pdp-recommendations__card-link:hover .pdp-recommendations__card-image {
    transform: scale(1.05);
  }

  .pdp-recommendations__badge {
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    padding: 0.125rem 0.5rem;
    border-radius: var(--radius-button);
    font-size: 9px;
    font-weight: 700;
    text-transform: uppercase;
    color: #fff;
    line-height: 1.4;
  }

  .pdp-recommendations__badge--bestseller {
    background: #3b82f6;
  }

  .pdp-recommendations__badge--new {
    background: #8b5cf6;
  }

  .pdp-recommendations__badge--limited {
    background: #ef4444;
  }


  .pdp-recommendations__card-info {
    padding: 0 0.125rem;
  }

  .pdp-recommendations__card-title {
    font-size: 13px;
    font-weight: 600;
    margin: 0;
    color: #1a1a2e;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.4;
  }

  .pdp-recommendations__card-rating {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    margin-bottom: 0.375rem;
  }

  .pdp-recommendations__stars {
    color: #f59e0b;
    font-size: 0.8125rem;
    line-height: 1;
    letter-spacing: 0.05em;
  }

  .pdp-recommendations__review-count {
    font-size: 0.75rem;
    color: #71717a;
  }

  .pdp-recommendations__card-price {
    font-size: 15px;
    font-weight: 700;
    color: #1a1a2e;
    margin: 0.125rem 0 0;
  }

  .pdp-recommendations__empty {
    text-align: center;
    padding: 3rem 1rem;
    color: #71717a;
    font-size: 0.9375rem;
  }

  .pdp-recommendations__loading {
    text-align: center;
    padding: 3rem 1rem;
    color: #71717a;
    font-size: 0.9375rem;
    width: 100%;
  }

  /* ── Arrows (gallery style) ── */
  .pdp-recommendations__arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1a1a2e;
    transition: opacity 200ms ease, transform 200ms ease, box-shadow 200ms ease;
    padding: 0;
  }

  .pdp-recommendations__arrow:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.18);
    transform: translateY(-50%) scale(1.05);
  }

  .pdp-recommendations__arrow--prev { left: 0.5rem; }
  .pdp-recommendations__arrow--next { right: 0.5rem; }

  .pdp-recommendations__arrow[disabled] {
    opacity: 0;
    pointer-events: none;
  }

  /* ── Page dots ── */
  .pdp-recommendations__pager {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
  }

  .pdp-recommendations__page-dot {
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 9999px;
    background: var(--color-border, #deddd8);
    border: none;
    padding: 0;
    cursor: pointer;
    transition: width 200ms ease, background-color 200ms ease;
  }

  .pdp-recommendations__page-dot--active {
    width: 1.5rem;
    background: var(--color-foreground, #1a1a2e);
  }

  @media screen and (min-width: 750px) {
    .pdp-recommendations__browse-link--desktop {
      display: inline-flex;
    }

    .pdp-recommendations__browse-link--mobile {
      display: none;
    }

    .pdp-recommendations__card {
      flex: 0 0 200px;
      min-width: 200px;
    }

    .pdp-recommendations__arrow {
      width: 40px;
      height: 40px;
    }
    .pdp-recommendations__arrow--prev { left: 0.5rem; }
    .pdp-recommendations__arrow--next { right: 0.5rem; }
  }
/* END_SECTION:pdp-recommendations */

/* START_SECTION:pdp-reviews (INDEX:239) */
/* -- Section wrapper -- */
  .pdp-reviews {
    display: block;
    padding: 3.5rem 0 3rem;
  }

  @media screen and (min-width: 750px) {
    .pdp-reviews {
      padding: 4rem 0;
    }
  }

  .pdp-reviews__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.25rem;
  }

  /* -- Header -- */
  .pdp-reviews__header {
    text-align: center;
    margin-bottom: 2rem;
  }

  .pdp-reviews__title {
    font-size: 2rem;
    font-weight: 600;
    letter-spacing: -0.02em;
    color: #1a1a2e;
    margin: 0 0 0.5rem;
  }

  @media screen and (min-width: 750px) {
    .pdp-reviews__title {
      font-size: 2.25rem;
    }
  }

  .pdp-reviews__subtitle {
    font-size: 0.9375rem;
    color: rgba(26, 26, 46, 0.55);
    margin: 0 auto 1rem;
    max-width: 480px;
    line-height: 1.5;
  }

  .pdp-reviews__trust-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.625rem;
    margin-bottom: 0.75rem;
  }

  .pdp-reviews__tp-stars-img {
    height: 20px;
    width: auto;
    flex-shrink: 0;
  }

  .pdp-reviews__trust-text {
    font-size: 0.8125rem;
    font-weight: 600;
    color: #1a1a2e;
    letter-spacing: 0.01em;
  }

  /* -- Loading -- */
  .pdp-reviews__loading {
    text-align: center;
    padding: 2rem 0;
    color: rgba(26, 26, 46, 0.45);
    font-size: 0.875rem;
  }

  /* -- Toolbar: star filter left, sort dropdown right -- */
  .pdp-reviews__toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
  }

  /* -- Star rating filter -- */
  .pdp-reviews__star-filter {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    flex-wrap: wrap;
  }

  .pdp-reviews__star-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0.375rem 0.75rem;
    font-size: 0.8125rem;
    font-weight: 500;
    color: #5c5f6e;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 2rem;
    cursor: pointer;
    transition: all 200ms ease;
    font-family: inherit;
    line-height: 1.4;
  }

  .pdp-reviews__star-btn:hover:not(:disabled):not(.pdp-reviews__star-btn--active) {
    border-color: #00b67a;
    color: #1a1a2e;
  }

  .pdp-reviews__star-btn--active,
  .pdp-reviews__star-btn--active:hover {
    background: #00b67a;
    color: #fff !important;
    border-color: #00b67a;
  }

  .pdp-reviews__star-btn--active:hover {
    background: #51BD7A;
  }

  .pdp-reviews__star-btn--active svg polygon {
    fill: #fff;
  }

  .pdp-reviews__star-btn--disabled {
    opacity: 0.35;
    cursor: not-allowed;
    pointer-events: none;
  }

  .pdp-reviews__star-btn-count {
    font-size: 0.6875rem;
    opacity: 0.7;
  }

  /* -- Sort dropdown -- */
  .pdp-reviews__sort-wrap {
    flex-shrink: 0;
  }

  .pdp-reviews__sort-select {
    appearance: none;
    -webkit-appearance: none;
    background: #fff url("data:image/svg+xml,%3Csvg width='10' height='6' viewBox='0 0 10 6' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%235c5f6e' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") no-repeat right 0.75rem center;
    border: 1px solid #e5e7eb;
    border-radius: 2rem;
    padding: 0.4375rem 2.25rem 0.4375rem 1rem;
    font-size: 0.8125rem;
    font-weight: 500;
    color: #5c5f6e;
    font-family: inherit;
    line-height: 1.4;
    cursor: pointer;
    transition: border-color 200ms ease;
  }

  .pdp-reviews__sort-select:hover {
    border-color: #51BD7A;
  }

  .pdp-reviews__sort-select:focus {
    outline: none;
    border-color: #51BD7A;
    box-shadow: 0 0 0 2px rgba(45, 138, 35, 0.15);
  }

  /* -- Masonry grid -- */
  .pdp-reviews__masonry-wrap {
    position: relative;
  }

  .pdp-reviews__masonry {
    columns: 3;
    column-gap: 1rem;
  }

  .pdp-reviews__blur-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 120px;
    background: linear-gradient(to bottom, var(--section-bg-transparent, rgba(255,255,255,0)) 0%, var(--section-bg-semi, rgba(255,255,255,0.7)) 40%, var(--section-bg, #fff) 100%);
    pointer-events: none;
    z-index: 2;
  }

  /* -- Review card -- */
  .pdp-reviews__card {
    break-inside: avoid;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 0.75rem;
    padding: 1.25rem;
    margin-bottom: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
  }

  .pdp-reviews__card-stars {
    display: flex;
    align-items: center;
    line-height: 1;
  }

  .pdp-reviews__card-title {
    font-size: 0.875rem;
    font-weight: 600;
    color: #1a1a2e;
    margin: 0;
    line-height: 1.4;
  }

  .pdp-reviews__card-quote {
    font-size: 0.8125rem;
    line-height: 1.65;
    color: #444;
    margin: 0;
  }

  /* -- Card photos -- */
  .pdp-reviews__card-photos {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
  }

  .pdp-reviews__card-photo-btn {
    display: block;
    border: 1px solid #eee;
    border-radius: 0.5rem;
    overflow: hidden;
    cursor: pointer;
    background: #f5f5f0;
    padding: 0;
    transition: border-color 200ms ease, transform 200ms ease;
  }

  .pdp-reviews__card-photo-btn:hover {
    border-color: #1a1a2e;
    transform: scale(1.04);
  }

  .pdp-reviews__card-photo {
    display: block;
    width: 64px;
    height: 64px;
    object-fit: cover;
    border-radius: 0.375rem;
  }

  /* -- Card footer -- */
  .pdp-reviews__card-footer {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    padding-top: 0.625rem;
    border-top: 1px solid #f0f0f0;
    margin-top: auto;
  }

  .pdp-reviews__card-avatar {
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 0.6875rem;
    font-weight: 700;
    flex-shrink: 0;
    letter-spacing: 0.02em;
  }

  .pdp-reviews__card-author-info {
    display: flex;
    flex-direction: column;
    gap: 1px;
  }

  .pdp-reviews__card-author-name {
    font-size: 0.8125rem;
    font-weight: 600;
    color: #1a1a2e;
  }

  .pdp-reviews__card-verified {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.6875rem;
    color: #111;
    font-weight: 500;
  }

  .pdp-reviews__card-date {
    font-size: 0.6875rem;
    color: #999;
  }

  /* -- Section footer -- */
  .pdp-reviews__footer {
    text-align: center;
    margin-top: 1.5rem;
    position: relative;
    z-index: 3;
  }

  .pdp-reviews__show-more {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: 1.5px solid #1a1a2e;
    color: #1a1a2e;
    font-family: inherit;
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    padding: 0.75rem 2.25rem;
    border-radius: var(--radius-button);
    cursor: pointer;
    transition: all 250ms ease;
  }

  .pdp-reviews__show-more:hover {
    background: #1a1a2e;
    color: #fff;
  }

  /* -- Photo gallery grid -- */
  .pdp-reviews__photo-gallery {
    margin-bottom: 1.5rem;
  }

  .pdp-reviews__photo-gallery-grid {
    display: flex;
    gap: 0.5rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 4px;
    scrollbar-width: none;
  }

  .pdp-reviews__photo-gallery-grid::-webkit-scrollbar { display: none; }

  .pdp-reviews__gallery-thumb {
    flex: 0 0 72px;
    width: 72px;
    height: 72px;
    border-radius: 0.5rem;
    overflow: hidden;
    border: 1px solid #eee;
    cursor: pointer;
    background: none;
    padding: 0;
    scroll-snap-align: start;
    transition: border-color 200ms ease, transform 200ms ease, box-shadow 200ms ease;
    position: relative;
  }

  .pdp-reviews__gallery-thumb:hover {
    border-color: #51BD7A;
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    z-index: 2;
  }

  .pdp-reviews__gallery-thumb img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  /* -- Desktop hover preview popup -- */
  .pdp-reviews__photo-preview {
    display: none;
    position: fixed;
    z-index: 100;
    width: 320px;
    height: 320px;
    border-radius: 0.75rem;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.25), 0 0 0 1px rgba(0,0,0,0.05);
    pointer-events: none;
    opacity: 0;
    transform: scale(0.92);
    transition: opacity 200ms ease, transform 200ms ease;
  }

  .pdp-reviews__photo-preview.is-visible {
    display: block;
    opacity: 1;
    transform: scale(1);
  }

  .pdp-reviews__photo-preview-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  /* Hide hover preview on touch devices */
  @media (hover: none) {
    .pdp-reviews__photo-preview { display: none !important; }
  }

  /* -- Lightbox with navigation -- */
  .pdp-reviews__lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    background: rgba(0, 0, 0, 0.92);
    align-items: center;
    justify-content: center;
    padding: 2rem;
  }

  .pdp-reviews__lightbox--open {
    display: flex;
  }

  .pdp-reviews__lightbox-close {
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    background: none;
    border: none;
    color: #fff;
    font-size: 2rem;
    cursor: pointer;
    z-index: 10;
    line-height: 1;
    padding: 0.5rem;
    transition: opacity 200ms ease;
  }

  .pdp-reviews__lightbox-close:hover { opacity: 0.7; }

  .pdp-reviews__lightbox-img {
    max-width: 85vw;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 0.5rem;
    user-select: none;
    -webkit-user-drag: none;
  }

  .pdp-reviews__lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.12);
    border: none;
    color: #fff;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 200ms ease;
    z-index: 10;
  }

  .pdp-reviews__lightbox-nav:hover {
    background: rgba(255,255,255,0.25);
  }

  .pdp-reviews__lightbox-nav--prev { left: 1rem; }
  .pdp-reviews__lightbox-nav--next { right: 1rem; }

  .pdp-reviews__lightbox-counter {
    position: absolute;
    bottom: 1.25rem;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255,255,255,0.7);
    font-size: 0.8125rem;
    font-weight: 500;
    letter-spacing: 0.05em;
  }

  /* -- Hidden Judge.me source -- */
  .pdp-reviews__jdgm-source {
    position: absolute;
    left: -9999px;
    top: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
  }

  .pdp-reviews__jdgm-source .jdgm-rev-widg,
  .pdp-reviews__jdgm-source .jdgm-rev-widg__body,
  .pdp-reviews__jdgm-source .jdgm-rev-widg__reviews,
  .pdp-reviews__jdgm-source .jdgm-rev,
  .pdp-reviews__jdgm-source .jdgm-rev__header,
  .pdp-reviews__jdgm-source .jdgm-rev__content {
    display: block !important;
    visibility: visible !important;
  }

  .pdp-reviews__jdgm-source .jdgm-temp-hiding-style {
    display: none !important;
  }

  /* -- Responsive -- */
  @media screen and (max-width: 1024px) {
    .pdp-reviews__masonry {
      columns: 2;
    }
  }

  @media screen and (max-width: 749px) {
    .pdp-reviews {
      padding: 2.5rem 0 2rem;
    }
    .pdp-reviews__title {
      font-size: 1.5rem;
    }
    .pdp-reviews__masonry {
      columns: 2;
      column-gap: 0.75rem;
    }
    .pdp-reviews__card {
      padding: 1rem;
      border-radius: 0.5rem;
    }
    .pdp-reviews__card-quote {
      font-size: 0.75rem;
    }
    .pdp-reviews__card-avatar {
      width: 1.75rem;
      height: 1.75rem;
      font-size: 0.625rem;
    }
    /* Show only 2 cards on mobile, rest hidden until expanded */
    .pdp-reviews__masonry .pdp-reviews__card:nth-child(n+3) {
      display: none;
    }
    .pdp-reviews__masonry.pdp-reviews__masonry--expanded .pdp-reviews__card {
      display: flex !important;
    }
    .pdp-reviews__blur-overlay {
      height: 90px;
    }
    .pdp-reviews__card-photo {
      width: 48px;
      height: 48px;
    }
    .pdp-reviews__gallery-thumb {
      flex: 0 0 60px;
      width: 60px;
      height: 60px;
    }
    .pdp-reviews__lightbox-nav {
      width: 36px;
      height: 36px;
    }
    .pdp-reviews__lightbox-nav svg {
      width: 18px;
      height: 18px;
    }
  }

  @media screen and (max-width: 480px) {
    .pdp-reviews__masonry {
      columns: 1;
    }
  }
/* END_SECTION:pdp-reviews */

/* START_SECTION:pdp-text-media (INDEX:240) */
.pdp-text-media {
    padding-block: 4rem;
  }

  .pdp-text-media--light {
    background: #ffffff;
    color: var(--color-foreground);
  }

  .pdp-text-media--dark {
    background: #1a1a2e;
    color: #ffffff;
  }

  .pdp-text-media__container {
    max-width: 72rem;
    padding-inline: 1rem;
  }

  /* ---- Mobile: always stacked ---- */
  .pdp-text-media__container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
  }

  /* ---- Media ---- */
  .pdp-text-media__image--split-left,
  .pdp-text-media__image--split-right {
    aspect-ratio: 1 / 1;
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: var(--radius-xl);
    display: block;
  }

  .pdp-text-media__image--stacked {
    aspect-ratio: 16 / 9;
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: var(--radius-xl);
    display: block;
  }

  .pdp-text-media__video-wrap {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-xl);
  }

  .pdp-text-media__video-wrap--split-left,
  .pdp-text-media__video-wrap--split-right {
    aspect-ratio: 1 / 1;
  }

  .pdp-text-media__video-wrap--stacked {
    aspect-ratio: 16 / 9;
  }

  .pdp-text-media__video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: none;
  }

  .pdp-text-media__placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f0ede8;
    border-radius: var(--radius-xl);
    padding: 3rem;
  }

  .pdp-text-media__placeholder--split-left,
  .pdp-text-media__placeholder--split-right {
    aspect-ratio: 1 / 1;
  }

  .pdp-text-media__placeholder--stacked {
    aspect-ratio: 16 / 9;
  }

  .pdp-text-media__placeholder svg {
    width: 60%;
    height: auto;
    opacity: 0.35;
  }

  /* ---- Content ---- */
  .pdp-text-media__content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0.75rem;
  }

  .pdp-text-media__eyebrow {
    font-size: var(--font-size-xs, 0.75rem);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 600;
    opacity: 0.6;
  }

  .pdp-text-media__heading {
    font-size: var(--font-size-3xl);
    font-weight: 600;
    letter-spacing: var(--tracking-tight);
    line-height: 1.15;
  }

  .pdp-text-media__body {
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    max-width: 32rem;
    opacity: 0.75;
  }

  .pdp-text-media--dark .pdp-text-media__body {
    opacity: 0.7;
  }

  .pdp-text-media__button {
    display: inline-block;
    margin-block-start: 0.5rem;
    padding: 0.75rem 1.75rem;
    font-size: var(--font-size-sm);
    font-weight: 600;
    text-decoration: none;
    border-radius: var(--radius-full, 9999px);
    transition: opacity var(--duration-base) var(--ease-default);
    align-self: flex-start;
  }

  .pdp-text-media--light .pdp-text-media__button {
    background: var(--color-foreground);
    color: #ffffff;
  }

  .pdp-text-media--light .pdp-text-media__button:hover {
    opacity: 0.85;
  }

  .pdp-text-media--dark .pdp-text-media__button {
    background: #ffffff;
    color: #1a1a2e;
  }

  .pdp-text-media--dark .pdp-text-media__button:hover {
    opacity: 0.85;
  }

  /* ---- Stacked layout: center content ---- */
  .pdp-text-media--stacked .pdp-text-media__content {
    align-items: center;
    text-align: center;
  }

  .pdp-text-media--stacked .pdp-text-media__button {
    align-self: center;
  }

  /* ---- Tablet ---- */
  @media screen and (min-width: 750px) {
    .pdp-text-media {
      padding-block: 5rem;
    }

    .pdp-text-media__container {
      padding-inline: 1.5rem;
    }

    .pdp-text-media__heading {
      font-size: var(--font-size-4xl);
    }
  }

  /* ---- Desktop: side-by-side for split layouts ---- */
  @media screen and (min-width: 990px) {
    .pdp-text-media--split-left .pdp-text-media__container,
    .pdp-text-media--split-right .pdp-text-media__container {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 3rem;
      align-items: center;
    }

    /* split-right: swap visual order so text is left, media is right */
    .pdp-text-media--split-right .pdp-text-media__media {
      order: 2;
    }

    .pdp-text-media--split-right .pdp-text-media__content {
      order: 1;
    }

    .pdp-text-media__image--split-left,
    .pdp-text-media__image--split-right {
      aspect-ratio: 1 / 1;
    }

    .pdp-text-media__video-wrap--split-left,
    .pdp-text-media__video-wrap--split-right {
      aspect-ratio: 1 / 1;
    }

    .pdp-text-media__placeholder--split-left,
    .pdp-text-media__placeholder--split-right {
      aspect-ratio: 1 / 1;
    }

    /* Stacked stays single column on desktop */
    .pdp-text-media--stacked .pdp-text-media__container {
      flex-direction: column;
      gap: 2.5rem;
    }
  }
/* END_SECTION:pdp-text-media */

/* START_SECTION:pdp-treatment-modes (INDEX:241) */
.treatment-modes {
    display: block;
    position: relative;
    min-height: 600px;
    overflow: hidden;
    color: #fff;
  }

  .treatment-modes__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
  }

  .treatment-modes__bg-img,
  .treatment-modes__bg-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: opacity 0.7s ease;
  }

  .treatment-modes__bg-video {
    position: absolute;
    inset: 0;
  }

  .treatment-modes__overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.70), rgba(0, 0, 0, 0.40), rgba(0, 0, 0, 0.20));
  }

  .treatment-modes__content {
    position: relative;
    z-index: 2;
    max-width: 72rem;
    margin-inline: auto;
    padding: 4rem 1rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 600px;
  }

  .treatment-modes__header {
    margin-block-end: 2rem;
  }

  .treatment-modes__eyebrow {
    font-size: 0.875rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.6);
    display: block;
    margin-block-end: 0.5rem;
  }

  .treatment-modes__title {
    font-size: 1.875rem;
    font-weight: 600;
    letter-spacing: -0.025em;
    color: #fff;
    line-height: 1.2;
  }

  .treatment-modes__body {
    display: flex;
    flex-direction: column;
    gap: 2rem;
  }

  /* --- Tab list --- */
  .treatment-modes__list {
    display: flex;
    flex-direction: column;
  }

  .treatment-modes__item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.625rem 0;
    text-align: start;
    font-family: inherit;
    position: relative;
  }

  .treatment-modes__item-row {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    transition: transform 0.3s ease;
  }

  .treatment-modes__item .treatment-modes__item-row {
    transform: translateX(-0.625rem);
  }

  .treatment-modes__item:hover .treatment-modes__item-row {
    transform: translateX(0);
  }

  .treatment-modes__item--active .treatment-modes__item-row {
    transform: translateX(0);
  }

  .treatment-modes__indicator {
    width: 2px;
    height: 1.25rem;
    border-radius: 9999px;
    flex-shrink: 0;
    opacity: 0;
    transition: opacity 0.3s ease;
  }

  .treatment-modes__item--active .treatment-modes__indicator {
    opacity: 1;
  }

  .treatment-modes__concern {
    font-size: 1rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.4);
    transition: color 0.3s ease;
  }

  .treatment-modes__item:hover .treatment-modes__concern {
    color: rgba(255, 255, 255, 0.7);
  }

  .treatment-modes__item--active .treatment-modes__concern {
    color: #fff;
  }

  /* Progress bar — under concern text, fixed width */
  .treatment-modes__progress {
    display: block;
    width: 100%;
    height: 2px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 9999px;
    overflow: hidden;
    margin-top: 0.375rem;
    opacity: 0;
    transition: opacity 0.3s ease;
  }

  .treatment-modes__item--active .treatment-modes__progress {
    opacity: 1;
  }

  .treatment-modes__progress-fill {
    display: block;
    height: 100%;
    width: 0%;
    border-radius: 9999px;
    /* will-change: width removed — width transitions cannot be GPU-composited */
  }

  /* --- Info card --- */
  .treatment-modes__panels {
    position: relative;
  }

  .treatment-modes__card {
    max-width: 24rem;
    background: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 1rem;
    padding: 1.25rem 1.5rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
    color: #1a1a2e !important;
    animation: treatmentCardIn 0.3s ease;
  }

  /* hidden attribute is natively handled by browsers — no CSS needed */
  .treatment-modes__card--hidden {
    display: none;
  }

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

  .treatment-modes__card-title {
    font-size: 1.125rem;
    font-weight: 600;
    margin-block-end: 0.25rem;
    color: #1a1a2e !important;
  }

  .treatment-modes__card-desc {
    font-size: 0.875rem;
    color: #6b7280 !important;
    line-height: 1.625;
    margin-block-end: 0.75rem;
  }

  .treatment-modes__card-desc strong {
    font-weight: 500;
  }

  .treatment-modes__wavelength {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.75rem;
    font-family: ui-monospace, SFMono-Regular, 'SF Mono', Menlo, Consolas, monospace;
    color: #888;
    margin-top: 0.5rem;
  }
  .treatment-modes__wavelength-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    flex-shrink: 0;
  }

  /* Nav inside card */
  .treatment-modes__nav {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-block-start: 1rem;
    padding-block-start: 0.75rem;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
  }

  .treatment-modes__nav-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    border: 1px solid rgba(0, 0, 0, 0.15);
    background: none;
    color: #1a1a2e;
    cursor: pointer;
    transition: background-color 0.2s ease;
  }

  .treatment-modes__nav-btn:hover {
    background: rgba(0, 0, 0, 0.05);
  }

  .treatment-modes__counter {
    font-size: 0.75rem;
    color: #6b7280;
  }

  .treatment-modes__counter-current {
    color: #1a1a2e;
    font-weight: 600;
  }

  /* --- Desktop --- */
  @media screen and (min-width: 750px) {
    .treatment-modes {
      min-height: 700px;
    }

    .treatment-modes__content {
      padding: 5rem 1.5rem;
      min-height: 700px;
    }

    .treatment-modes__header {
      margin-block-end: 3rem;
    }

    .treatment-modes__title {
      font-size: 2.25rem;
    }

    .treatment-modes__body {
      flex-direction: row;
      align-items: flex-end;
      justify-content: space-between;
      gap: 4rem;
    }

    .treatment-modes__list {
      flex-shrink: 0;
      min-width: 180px;
    }

    .treatment-modes__item {
      padding: 0.75rem 0;
    }

    .treatment-modes__concern {
      font-size: 1.125rem;
    }

    .treatment-modes__card {
      padding: 1.5rem;
    }
  }

  @media screen and (min-width: 990px) {
    .treatment-modes__title {
      font-size: 3rem;
    }
  }

  @media (prefers-reduced-motion: reduce) {
    .treatment-modes__card {
      animation: none;
    }

    .treatment-modes__progress-fill {
      transition: none;
    }

    .treatment-modes__bg-img {
      transition: none;
    }

    .treatment-modes__item-row,
    .treatment-modes__concern,
    .treatment-modes__indicator {
      transition: none;
    }
  }
/* END_SECTION:pdp-treatment-modes */

/* START_SECTION:pdp-video-testimonials (INDEX:242) */
/* ── Section wrapper ── */
  .pdp-video-testimonials {
    display: block;
    padding: 4rem 0;
  }

  @media screen and (min-width: 750px) {
    .pdp-video-testimonials {
      padding: 5rem 0;
    }
  }

  .pdp-video-testimonials__inner {
    max-width: 72rem;
    margin: 0 auto;
    padding: 0 1rem;
  }

  /* ── Header ── */
  .pdp-video-testimonials__header {
    text-align: center;
    margin-bottom: 2rem;
  }

  .pdp-video-testimonials__title {
    font-size: 1.875rem;
    font-weight: 600;
    letter-spacing: -0.02em;
    color: var(--color-foreground, #1a1a2e);
    margin: 0 0 0.5rem;
  }

  @media screen and (min-width: 750px) {
    .pdp-video-testimonials__title {
      font-size: 2.25rem;
    }
  }

  .pdp-video-testimonials__subtitle {
    font-size: 0.9375rem;
    color: var(--color-text-muted, rgba(26, 26, 46, 0.55));
    margin: 0 auto;
    max-width: 480px;
    line-height: 1.6;
  }

  /* ── Slider wrapper ── */
  .pdp-video-testimonials__slider-wrap {
    position: relative;
  }

  .pdp-video-testimonials__slider {
    display: flex;
    gap: 1rem;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 0.5rem;
    scrollbar-width: none;
  }

  .pdp-video-testimonials__slider::-webkit-scrollbar {
    display: none;
  }

  /* ── Card sizing ── */
  .pdp-video-testimonials__card {
    flex: 0 0 45vw;
    max-width: 200px;
    scroll-snap-align: start;
  }

  @media screen and (min-width: 750px) {
    .pdp-video-testimonials__card {
      flex: 0 0 calc(25% - 0.75rem);
      max-width: 240px;
    }
  }

  @media screen and (min-width: 990px) {
    .pdp-video-testimonials__card {
      flex: 0 0 calc(20% - 0.8rem);
      max-width: 220px;
    }
  }

  /* ── Video area — 9:16 portrait ── */
  .pdp-video-testimonials__video-wrap {
    position: relative;
    aspect-ratio: 9 / 16;
    border-radius: var(--radius-xl, 1rem);
    overflow: hidden;
    background: #1a1a2e;
    cursor: pointer;
  }

  .pdp-video-testimonials__thumb {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .pdp-video-testimonials__thumb[hidden] { display: none; }

  /* ── Play button — matches collection-video design ── */
  .pdp-video-testimonials__play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: none;
    border: none;
    cursor: pointer;
    z-index: 3;
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.2s ease;
    padding: 0;
    opacity: 0.85;
  }

  .pdp-video-testimonials__play-btn svg circle {
    transition: fill 0.25s ease, stroke 0.25s ease;
  }

  .pdp-video-testimonials__play-btn:hover {
    transform: translate(-50%, -50%) scale(1.15);
    opacity: 1;
  }

  .pdp-video-testimonials__play-btn:hover svg circle {
    fill: rgba(0,0,0,0.55);
    stroke: rgba(255,255,255,0.5);
  }

  .pdp-video-testimonials__play-btn:active {
    transform: translate(-50%, -50%) scale(0.95);
  }

  .pdp-video-testimonials__play-btn[hidden] { display: none; }

  /* ── Inline player controls — adapted for vertical cards ── */
  .pdp-video-testimonials__controls {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 4;
    background: linear-gradient(to top, rgba(0,0,0,0.65) 0%, transparent 100%);
    padding: 1.5rem 0.5rem 0.375rem;
  }
  .pdp-video-testimonials__controls[hidden] { display: none; }

  .pdp-video-testimonials__progress {
    width: 100%;
    height: 3px;
    background: rgba(255,255,255,0.25);
    border-radius: 2px;
    cursor: pointer;
    margin-bottom: 0.375rem;
  }
  .pdp-video-testimonials__progress-bar {
    height: 100%;
    background: #fff;
    width: 0%;
    border-radius: 2px;
    transition: width 0.15s linear;
  }
  .pdp-video-testimonials__controls-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.375rem;
  }
  .pdp-video-testimonials__playpause {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 22px;
    padding: 0;
    background: rgba(26, 26, 46, 0.65);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    border: none;
    border-radius: var(--radius-button, 9999px);
    color: #fff;
    cursor: pointer;
    transition: background 0.2s, opacity 0.25s;
    flex-shrink: 0;
  }
  .pdp-video-testimonials__playpause:hover {
    background: rgba(26, 26, 46, 0.85);
  }
  .pdp-video-testimonials__icon-play[hidden],
  .pdp-video-testimonials__icon-pause[hidden] { display: none; }
  .pdp-video-testimonials__time {
    font-size: 0.625rem;
    color: rgba(255,255,255,0.8);
    font-variant-numeric: tabular-nums;
  }
  .pdp-video-testimonials__controls-right {
    display: flex;
    align-items: center;
    gap: 0.25rem;
  }
  .pdp-video-testimonials__mute,
  .pdp-video-testimonials__fullscreen {
    background: rgba(255,255,255,0.15);
    border: none;
    border-radius: 0.25rem;
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
  }
  .pdp-video-testimonials__mute,
  .pdp-video-testimonials__fullscreen {
    width: 24px;
    height: 24px;
    padding: 0;
  }
  .pdp-video-testimonials__mute:hover,
  .pdp-video-testimonials__fullscreen:hover { background: rgba(255,255,255,0.3); }

  /* ── Inline iframe wrap (YouTube/Vimeo) ── */
  .pdp-video-testimonials__iframe-wrap {
    position: absolute;
    inset: 0;
    z-index: 2;
  }
  .pdp-video-testimonials__iframe-wrap[hidden] { display: none; }
  .pdp-video-testimonials__iframe-wrap iframe {
    width: 100%;
    height: 100%;
    border: none;
  }

  /* ── Inline native video ── */
  .pdp-video-testimonials__native-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    background: #111;
    z-index: 2;
  }

  /* ── Arrows (gallery style) ── */
  /* Arrows removed — infinite marquee scroll */
  .pdp-video-testimonials__arrow { display: none; }

  /* ── Gradient fades ── */
  .pdp-video-testimonials__fade {
    position: absolute;
    top: 0;
    bottom: 0.5rem;
    width: 3rem;
    z-index: 2;
    pointer-events: none;
    opacity: 0;
    transition: opacity 300ms ease;
  }

  .pdp-video-testimonials__fade--left {
    left: 0;
    background: linear-gradient(to right, var(--section-bg, var(--color-background, #fff)) 0%, transparent 100%);
  }

  .pdp-video-testimonials__fade--right {
    right: 0;
    background: linear-gradient(to left, var(--section-bg, var(--color-background, #fff)) 0%, transparent 100%);
  }

  .pdp-video-testimonials__fade--visible {
    opacity: 1;
  }

  /* ── Page dots ── */
  .pdp-video-testimonials__pager {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
  }

  .pdp-video-testimonials__page-dot {
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 9999px;
    background: var(--color-border, #deddd8);
    border: none;
    padding: 0;
    cursor: pointer;
    transition: width 200ms ease, background-color 200ms ease;
  }

  .pdp-video-testimonials__page-dot--active {
    width: 1.5rem;
    background: var(--color-foreground, #1a1a2e);
  }

  /* ── Responsive play button ── */
  @media (max-width: 749px) {
    .pdp-video-testimonials__play-btn svg { width: 40px; height: 40px; }
  }

  /* ── Reduced motion ── */
  @media (prefers-reduced-motion: reduce) {
    .pdp-video-testimonials__play-btn,
    .pdp-video-testimonials__arrow,
    .pdp-video-testimonials__page-dot {
      transition: none;
    }
  }
/* END_SECTION:pdp-video-testimonials */

/* START_SECTION:pdp-works-with (INDEX:243) */
/* Breaker section — blends with preceding section bg */
  .pdp-works-with-section {
    margin-top: 0 !important;
    padding-top: 0;
  }
  .pdp-works-with {
    display: block;
    padding-block: 1.5rem 2rem;
  }

  .pdp-works-with__inner {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1rem 1.5rem;
    border-radius: var(--radius-xl, 1rem);
    min-height: 80px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
  }

  /* Background variants */
  .pdp-works-with--light .pdp-works-with__inner {
    background-color: #f8f7f4;
    color: #1a1a2e;
  }

  .pdp-works-with--dark .pdp-works-with__inner {
    background-color: #1a1a2e;
    color: #f8f7f4;
    border-color: rgba(255, 255, 255, 0.1);
  }

  .pdp-works-with--accent .pdp-works-with__inner {
    background-color: #51BD7A;
    color: #fff;
    border-color: rgba(255, 255, 255, 0.15);
  }

  .pdp-works-with__title {
    font-size: 0.8125rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    white-space: nowrap;
    margin: 0;
    flex-shrink: 0;
  }

  /* Logos area — overflow hidden for marquee */
  .pdp-works-with__logos-area {
    flex: 1;
    min-width: 0;
    overflow: hidden;
  }

  /* Track — holds all logo groups, animated via JS */
  .pdp-works-with__track {
    display: flex;
    width: max-content;
    will-change: transform;
  }

  /* Animation is now driven by JS via element.animate() — no CSS keyframes needed */

  /* Logo groups */
  .pdp-works-with__logos {
    display: flex;
    align-items: center;
    flex-shrink: 0;
  }

  .pdp-works-with__logo-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    padding-inline: 1.25rem;
  }

  .pdp-works-with__logo-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0;
    text-decoration: none;
    color: inherit;
    width: 100%;
    height: 100%;
  }

  .pdp-works-with__logo-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.25rem;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.04);
    flex-shrink: 0;
    overflow: hidden;
    position: relative;
  }

  .pdp-works-with--dark .pdp-works-with__logo-wrap {
    background: rgba(255, 255, 255, 0.08);
  }

  .pdp-works-with--accent .pdp-works-with__logo-wrap {
    background: rgba(255, 255, 255, 0.15);
  }

  .pdp-works-with__logo-img {
    height: 24px;
    width: auto;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: filter 0.2s ease, opacity 0.2s ease;
  }

  .pdp-works-with__logo-wrap:hover .pdp-works-with__logo-img {
    filter: grayscale(0%);
    opacity: 1;
  }

  .pdp-works-with--dark .pdp-works-with__logo-img {
    filter: grayscale(100%) brightness(2);
  }

  .pdp-works-with--dark .pdp-works-with__logo-wrap:hover .pdp-works-with__logo-img {
    filter: grayscale(0%) brightness(1.5);
    opacity: 1;
  }

  .pdp-works-with__logo-text {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
  }

  .pdp-works-with__cta {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    font-size: 0.8125rem;
    font-weight: 500;
    text-decoration: none;
    white-space: nowrap;
    flex-shrink: 0;
    transition: opacity 0.2s ease;
  }

  .pdp-works-with--light .pdp-works-with__cta { color: #1a1a2e; }
  .pdp-works-with--dark .pdp-works-with__cta { color: #f8f7f4; }
  .pdp-works-with--accent .pdp-works-with__cta { color: #fff; }

  .pdp-works-with__cta:hover { opacity: 0.7; }

  @media screen and (max-width: 749px) {
    .pdp-works-with__inner {
      flex-wrap: wrap;
      gap: 0.75rem;
      padding: 1rem;
    }

    .pdp-works-with__title {
      width: 100%;
      text-align: center;
    }

    .pdp-works-with__logos-area { width: 100%; }
    .pdp-works-with__logo-img { height: 18px; }
    .pdp-works-with__logo-wrap { padding-inline: 0.5rem; width: 44px; height: 44px; }
    .pdp-works-with__cta { width: 100%; justify-content: center; }
  }

  /* prefers-reduced-motion handled in JS */
/* END_SECTION:pdp-works-with */

/* START_SECTION:popup-modal (INDEX:245) */
/* ── Popup Modal ── */
.popup-modal {
  position: fixed;
  z-index: 999;
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
}

.popup-modal[aria-hidden="false"] {
  pointer-events: auto;
  opacity: 1;
  visibility: visible;
}

/* ── Centered mode ── */
.popup-modal--centered {
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.popup-modal--centered .popup-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.popup-modal--centered[aria-hidden="false"] .popup-modal__backdrop {
  opacity: 1;
}

.popup-modal--centered .popup-modal__card {
  position: relative;
  max-width: 480px;
  width: 100%;
  transform: scale(0.9);
  opacity: 0;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease;
}

.popup-modal--centered[aria-hidden="false"] .popup-modal__card {
  transform: scale(1);
  opacity: 1;
}

/* ── Corner mode ── */
.popup-modal--corner {
  bottom: 1.5rem;
  right: 1.5rem;
}

.popup-modal--corner .popup-modal__card {
  width: 360px;
  max-width: calc(100vw - 2rem);
  transform: translateY(1.5rem);
  opacity: 0;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease;
}

.popup-modal--corner[aria-hidden="false"] .popup-modal__card {
  transform: translateY(0);
  opacity: 1;
}

/* ── Card ── */
.popup-modal__card {
  background: #fff;
  border-radius: 1.25rem;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15), 0 4px 16px rgba(0, 0, 0, 0.08);
  overflow: hidden;
}

@media (prefers-color-scheme: dark) {
  .popup-modal__card {
    background: #1e1e2e;
    color: #f0f0f5;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4), 0 4px 16px rgba(0, 0, 0, 0.2);
  }
  .popup-modal__input {
    background: rgba(255, 255, 255, 0.08) !important;
    border-color: rgba(255, 255, 255, 0.15) !important;
    color: #f0f0f5 !important;
  }
  .popup-modal__input::placeholder { color: rgba(255, 255, 255, 0.4) !important; }
  .popup-modal__disclaimer { color: rgba(255, 255, 255, 0.4) !important; }
  .popup-modal__desc { color: rgba(255, 255, 255, 0.6) !important; }
  .popup-modal__close { color: rgba(255, 255, 255, 0.5) !important; }
  .popup-modal__close:hover { color: #fff !important; background: rgba(255, 255, 255, 0.1) !important; }
}

/* ── Close button ── */
.popup-modal__close {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  z-index: 2;
  background: transparent;
  border: none;
  padding: 0.375rem;
  border-radius: 50%;
  cursor: pointer;
  color: #666;
  transition: color 0.2s ease, background 0.2s ease;
  line-height: 0;
}

.popup-modal__close:hover {
  color: #111;
  background: rgba(0, 0, 0, 0.06);
}

/* ── Image ── */
.popup-modal__image-wrap {
  width: 100%;
  overflow: hidden;
}

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

/* ── Body ── */
.popup-modal__body {
  padding: 1.5rem;
}

.popup-modal__title {
  font-family: var(--font-heading, inherit);
  font-size: 1.375rem;
  font-weight: 700;
  line-height: 1.2;
  margin: 0 0 0.5rem;
  color: inherit;
}

.popup-modal__desc {
  font-size: 0.875rem;
  line-height: 1.5;
  color: #555;
  margin: 0 0 1.25rem;
}

/* ── Form ── */
.popup-modal__fields {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.popup-modal__input {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid #ddd;
  border-radius: 0.625rem;
  font-size: 0.9375rem;
  font-family: inherit;
  background: #fafafa;
  color: #111;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  -webkit-appearance: none;
  appearance: none;
}

.popup-modal__input:focus {
  outline: none;
  border-color: #1a1a2e;
  box-shadow: 0 0 0 3px rgba(26, 26, 46, 0.1);
}

.popup-modal__input::placeholder {
  color: #999;
}

.popup-modal__submit {
  display: block;
  width: 100%;
  margin-top: 0.75rem;
  padding: 0.8rem;
  background: #1a1a2e;
  color: #fff;
  border: none;
  border-radius: 0.625rem;
  font-size: 0.9375rem;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.15s ease;
}

.popup-modal__submit:hover {
  background: #111122;
}

.popup-modal__submit:active {
  transform: scale(0.98);
}

.popup-modal__submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

/* ── Success ── */
.popup-modal__success {
  text-align: center;
  padding: 1rem 0;
}

.popup-modal__success svg {
  margin-bottom: 0.75rem;
}

.popup-modal__success-text {
  font-size: 0.9375rem;
  font-weight: 500;
  color: inherit;
  margin: 0;
  line-height: 1.4;
}

/* ── Disclaimer ── */
.popup-modal__disclaimer {
  font-size: 0.6875rem;
  color: #888;
  line-height: 1.4;
  margin: 1rem 0 0;
}

/* ── Hide form on success ── */
.popup-modal__form[hidden] { display: none; }

/* ── Mobile corner mode becomes full-width ── */
@media (max-width: 480px) {
  .popup-modal--corner {
    bottom: 0;
    right: 0;
    left: 0;
  }
  .popup-modal--corner .popup-modal__card {
    width: 100%;
    max-width: 100%;
    border-radius: 1.25rem 1.25rem 0 0;
  }
}
/* END_SECTION:popup-modal */

/* START_SECTION:press-bar (INDEX:248) */
.press-bar {
    display: block;
    background-color: #f0efea;
    padding-block: 3rem;
  }

  .press-bar__rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-block-end: 1.5rem;
    flex-wrap: wrap;
  }

  .press-bar__stars {
    display: flex;
    align-items: center;
    gap: 0.125rem;
  }

  .press-bar__stars svg {
    width: 1rem;
    height: 1rem;
  }

  .press-bar__secondary {
    font-size: 0.875rem;
    font-weight: 400;
    color: var(--color-text-muted, #71717a);
  }

  .press-bar__separator {
    font-size: 0.875rem;
    color: var(--color-text-muted, #71717a);
  }

  .press-bar__available {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-foreground, #1a1a2e);
  }

  /* Marquee */
  .press-bar__marquee {
    position: relative;
    overflow: hidden;
    padding-block: 1.5rem;
  }

  /* Gradient fades */
  .press-bar__fade {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 5rem;
    z-index: 2;
    pointer-events: none;
  }

  .press-bar__fade--left {
    left: 0;
    background: linear-gradient(to right, var(--section-bg, var(--color-background, #f5f5f0)), transparent);
  }

  .press-bar__fade--right {
    right: 0;
    background: linear-gradient(to left, var(--section-bg, var(--color-background, #f5f5f0)), transparent);
  }

  /* Track — holds all logo groups, animated via JS */
  .press-bar__track {
    display: flex;
    width: max-content;
    will-change: transform;
  }

  /* Animation is now driven by JS via element.animate() — no CSS keyframes needed */

  .press-bar__logos {
    display: flex;
    align-items: center;
    flex-shrink: 0;
  }

  .press-bar__logo-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    padding-inline: 2rem;
  }

  .press-bar__logo-img {
    width: auto;
    object-fit: contain;
    pointer-events: none;
    user-select: none;
  }

  /* Size variants */
  .press-bar__logo-img--lg {
    height: 2.25rem;
  }

  .press-bar__logo-img--md {
    height: 1.75rem;
  }

  .press-bar__logo-img--sm {
    height: 1.5rem;
  }

  .press-bar__logo-text {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-foreground, #1a1a2e);
    white-space: nowrap;
  }

  @media screen and (min-width: 750px) {
    .press-bar {
      padding-block: 4rem;
    }

    .press-bar__fade {
      width: 8rem;
    }

    .press-bar__logo-wrap {
      padding-inline: 3rem;
    }

    .press-bar__logo-img--lg {
      height: 2.75rem;
    }

    .press-bar__logo-img--md {
      height: 2.25rem;
    }

    .press-bar__logo-img--sm {
      height: 2rem;
    }

    .press-bar__marquee {
      padding-block: 2rem;
    }
  }

  /* prefers-reduced-motion handled in JS */
/* END_SECTION:press-bar */

/* START_SECTION:product-spotlight (INDEX:273) */
/* ── HP Product Spotlight ── */
.spotlight {
  position: relative;
  width: 100%;
  min-height: 480px;
  display: flex;
  flex-direction: column;
  justify-content: var(--sp-align, flex-end);
  background: var(--hp-spotlight-bg, var(--color-primary));
  color: #fff;
  overflow: hidden;
}

.spotlight--dark { color: #fff; }
.spotlight--light { color: var(--color-text); }

.spotlight__media {
  position: absolute;
  top: -10%;
  left: 0;
  right: 0;
  height: 120%;
  z-index: 0;
  will-change: transform;
}

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

.spotlight__color-bg {
  position: absolute;
  inset: 0;
  background: var(--hp-spotlight-bg, #1a1a2e);
}

.spotlight__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(to top, rgb(0 0 0 / var(--sp-overlay, 0.25)) 0%, transparent 60%);
  pointer-events: none;
}

.spotlight__inner {
  position: relative;
  z-index: 2;
  max-width: 72rem;
  width: 100%;
  margin: 0 auto;
  padding: var(--space-2xl) var(--space-xl) var(--space-3xl);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--space-lg);
}

.spotlight__content {
  max-width: 600px;
}

.spotlight__badge {
  display: inline-block;
  font-size: var(--font-size-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.3em 0.9em;
  border-radius: var(--radius-full);
  background: var(--color-accent);
  color: #fff;
  margin-bottom: var(--space-md);
}

.spotlight__heading {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  letter-spacing: var(--tracking-tight);
  line-height: var(--line-height-tight);
  margin-bottom: var(--space-sm);
}

.spotlight__desc {
  font-size: clamp(0.95rem, 1.5vw, 1.125rem);
  opacity: 0.85;
  line-height: var(--line-height-base);
  margin-bottom: var(--space-md);
  max-width: 480px;
}

.spotlight__btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4em;
  padding: 0.85em 2em;
  border-radius: var(--radius-full);
  font-size: var(--font-size-sm);
  font-weight: 600;
  letter-spacing: 0.02em;
  text-decoration: none;
  transition: opacity var(--duration-base) var(--ease-default), box-shadow var(--duration-base) var(--ease-default);
}

.spotlight--dark .spotlight__btn {
  background: #fff;
  color: var(--color-text);
}

.spotlight--light .spotlight__btn {
  background: var(--color-primary);
  color: #fff;
}

.spotlight__btn:hover {
  opacity: 0.88;
  box-shadow: var(--shadow-lg);
}

/* ── Product card overlay ── */
.spotlight__product-card {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  border-radius: 1rem;
  padding: 0.75rem;
  text-decoration: none;
  color: var(--color-text);
  box-shadow: 0 4px 20px rgba(0,0,0,0.12);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
  max-width: 320px;
  align-self: flex-end;
}

.spotlight__product-card:hover {
  box-shadow: 0 8px 32px rgba(0,0,0,0.18);
  transform: translateY(-2px);
}

.spotlight__product-img {
  width: 64px;
  height: 64px;
  border-radius: 0.5rem;
  object-fit: cover;
  flex-shrink: 0;
  background: #f5f4f0;
}

.spotlight__product-info {
  display: flex;
  flex-direction: column;
  gap: 0.125rem;
  min-width: 0;
}

.spotlight__product-title {
  font-size: 13px;
  font-weight: 600;
  color: #1a1a2e;
  margin: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.spotlight__product-price {
  font-size: 14px;
  font-weight: 700;
  color: #1a1a2e;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 0.375rem;
}

.spotlight__product-compare {
  font-size: 11px;
  color: #999;
  font-weight: 400;
}

.spotlight__product-discount {
  font-size: 10px;
  font-weight: 700;
  color: #e53e3e;
  background: rgba(229, 62, 62, 0.08);
  padding: 1px 5px;
  border-radius: 4px;
}

.spotlight__product-cta {
  font-size: 11px;
  font-weight: 600;
  color: var(--color-accent, #3b82f6);
  margin-top: 0.125rem;
}

@media (min-width: 768px) {
  .spotlight__inner {
    padding: var(--space-3xl) var(--space-3xl) var(--space-4xl);
    flex-direction: row;
    align-items: var(--sp-align, flex-end);
    justify-content: space-between;
  }
}

@media (max-width: 749px) {
  .spotlight { justify-content: var(--mobile-sp-align, var(--sp-align, flex-end)); padding-top: 2rem; }
  .spotlight__product-card {
    align-self: flex-start;
  }
}
/* END_SECTION:product-spotlight */

/* START_SECTION:psu-calculator (INDEX:279) */
/* ── PSU Calculator — Nanoleaf Brand Redesign ── */
.psu-calc {
  --psu-green: #51BD7A;
  --psu-green-hover: #51BD7A;
  --psu-dark: #1a1a2e;
  --psu-surface: #f5f4f0;
  --psu-card-bg: #ffffff;
  --psu-border: #e5e5e5;
  --psu-radius: 12px;
  --psu-pill: 999px;
  --psu-text: #1a1a2e;
  --psu-text-secondary: #6b6b7b;
  --psu-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
  --psu-shadow-hover: 0 4px 16px rgba(0, 0, 0, 0.08);
  --psu-transition: 0.2s cubic-bezier(0.4, 0, 0.2, 1);

  padding: 72px 24px;
  background: var(--psu-surface);
  color: var(--psu-text);
  font-family: inherit;
}

.psu-calc *,
.psu-calc *::before,
.psu-calc *::after {
  box-sizing: border-box;
}

.psu-calc__inner {
  max-width: 1120px;
  margin: 0 auto;
}

/* ── Header ── */
.psu-calc__heading {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  margin: 0 0 12px;
  text-align: center;
  letter-spacing: -0.02em;
  color: var(--psu-dark);
}

.psu-calc__description {
  font-size: 1.05rem;
  text-align: center;
  margin: 0 auto 48px;
  max-width: 560px;
  color: var(--psu-text-secondary);
  line-height: 1.6;
}

/* ── Two-Column Layout ── */
.psu-calc__columns {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 32px;
  align-items: start;
}

@media (max-width: 840px) {
  .psu-calc__columns {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

/* ── Form Card ── */
.psu-calc__form {
  background: var(--psu-card-bg);
  border: 1px solid var(--psu-border);
  border-radius: var(--psu-radius);
  padding: 32px;
  box-shadow: var(--psu-shadow);
  transition: box-shadow var(--psu-transition);
}

.psu-calc__form:hover {
  box-shadow: var(--psu-shadow-hover);
}

.psu-calc__form-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--psu-border);
}

.psu-calc__form-icon {
  color: var(--psu-green);
  flex-shrink: 0;
}

.psu-calc__form-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--psu-dark);
  letter-spacing: -0.01em;
}

.psu-calc__instruction {
  font-size: 0.9rem;
  margin: 20px 0 24px;
  color: var(--psu-text-secondary);
  line-height: 1.5;
}

/* ── Fields ── */
.psu-calc__field {
  margin-bottom: 20px;
}

.psu-calc__label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--psu-text-secondary);
}

/* ── Select ── */
.psu-calc__select-wrap {
  position: relative;
}

.psu-calc__select {
  width: 100%;
  padding: 12px 40px 12px 16px;
  font-size: 0.95rem;
  font-weight: 500;
  font-family: inherit;
  border: 1px solid var(--psu-border);
  border-radius: var(--psu-radius);
  background: var(--psu-card-bg);
  color: var(--psu-text);
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  transition: border-color var(--psu-transition), box-shadow var(--psu-transition);
}

.psu-calc__select:focus {
  outline: none;
  border-color: var(--psu-green);
  box-shadow: 0 0 0 3px rgba(74, 175, 71, 0.12);
}

.psu-calc__select-chevron {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--psu-text-secondary);
  pointer-events: none;
}

/* ── Number inputs ── */
.psu-calc__input {
  width: 100%;
  padding: 12px 16px;
  font-size: 0.95rem;
  font-weight: 500;
  font-family: inherit;
  border: 1px solid var(--psu-border);
  border-radius: var(--psu-radius);
  background: var(--psu-card-bg);
  color: var(--psu-text);
  transition: border-color var(--psu-transition), box-shadow var(--psu-transition);
}

.psu-calc__input:focus {
  outline: none;
  border-color: var(--psu-green);
  box-shadow: 0 0 0 3px rgba(74, 175, 71, 0.12);
}

.psu-calc__input::placeholder {
  color: #c0c0c8;
}

/* Remove number spinners */
.psu-calc__input[type="number"] {
  -moz-appearance: textfield;
}
.psu-calc__input[type="number"]::-webkit-outer-spin-button,
.psu-calc__input[type="number"]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* ── Wattage Toggle (Pill Style) ── */
.psu-calc__toggle {
  display: inline-flex;
  gap: 8px;
}

.psu-calc__toggle-btn {
  padding: 8px 22px;
  font-size: 0.85rem;
  font-weight: 600;
  font-family: inherit;
  border: 1.5px solid var(--psu-border);
  border-radius: var(--psu-pill);
  background: transparent;
  color: var(--psu-text-secondary);
  cursor: pointer;
  transition: all var(--psu-transition);
}

.psu-calc__toggle-btn.is-active {
  background: var(--psu-dark);
  border-color: var(--psu-dark);
  color: #fff;
}

.psu-calc__toggle-btn:not(.is-active):hover {
  border-color: var(--psu-dark);
  color: var(--psu-dark);
}

/* ── Calculate Button (Pill, Dark) ── */
.psu-calc__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 14px 24px;
  margin-top: 28px;
  font-size: 0.95rem;
  font-weight: 700;
  font-family: inherit;
  border: none;
  border-radius: var(--psu-pill);
  background: var(--psu-dark);
  color: #fff;
  cursor: pointer;
  transition: background var(--psu-transition), transform var(--psu-transition);
}

.psu-calc__btn:hover {
  background: #2a2a44;
}

.psu-calc__btn:active {
  transform: scale(0.98);
}

.psu-calc__btn svg {
  flex-shrink: 0;
}

.psu-calc__error {
  color: #d32f2f;
  font-size: 0.85rem;
  margin: 12px 0 0;
  font-weight: 500;
}

/* ── Right Column Wrapper ── */
.psu-calc__results-wrapper {
  position: sticky;
  top: 24px;
}

/* ── Placeholder State ── */
.psu-calc__placeholder {
  background: var(--psu-card-bg);
  border: 1px solid var(--psu-border);
  border-radius: var(--psu-radius);
  padding: 48px 32px;
  text-align: center;
  box-shadow: var(--psu-shadow);
  min-height: 320px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.psu-calc__placeholder-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--psu-surface);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: var(--psu-green);
}

.psu-calc__placeholder-title {
  font-size: 1.05rem;
  font-weight: 700;
  margin: 0 0 8px;
  color: var(--psu-dark);
}

.psu-calc__placeholder-text {
  font-size: 0.88rem;
  margin: 0;
  color: var(--psu-text-secondary);
  line-height: 1.6;
  max-width: 280px;
}

/* ── Results Card ── */
.psu-calc__results {
  background: var(--psu-card-bg);
  border: 1px solid var(--psu-border);
  border-radius: var(--psu-radius);
  padding: 32px;
  text-align: center;
  box-shadow: var(--psu-shadow);
  animation: psuFadeIn 0.3s ease;
}

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

.psu-calc__result-count {
  margin-bottom: 28px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--psu-border);
}

.psu-calc__result-label {
  display: block;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
  margin-bottom: 4px;
  color: var(--psu-text-secondary);
}

.psu-calc__result-number {
  display: block;
  font-size: 4rem;
  font-weight: 800;
  line-height: 1.1;
  color: var(--psu-green);
  letter-spacing: -0.03em;
}

.psu-calc__result-unit {
  display: block;
  font-size: 1rem;
  font-weight: 600;
  margin-top: 2px;
  color: var(--psu-dark);
}

/* ── Product Card (inside results) ── */
.psu-calc__product-card {
  border: 1px solid var(--psu-border);
  border-radius: var(--psu-radius);
  overflow: hidden;
  text-align: left;
}

.psu-calc__product-img-wrap {
  background: var(--psu-surface);
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.psu-calc__product-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  mix-blend-mode: multiply;
}

.psu-calc__product-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  color: #ccc;
}

.psu-calc__product-info {
  padding: 20px;
}

.psu-calc__product-title {
  font-size: 0.95rem;
  font-weight: 600;
  margin: 0 0 4px;
  color: var(--psu-dark);
}

.psu-calc__product-price {
  font-size: 0.9rem;
  margin: 0 0 16px;
  color: var(--psu-text-secondary);
}

.psu-calc__add-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 28px;
  font-size: 0.88rem;
  font-weight: 700;
  font-family: inherit;
  border-radius: var(--psu-pill);
  background: var(--psu-green);
  color: #fff;
  text-decoration: none;
  transition: background var(--psu-transition), transform var(--psu-transition);
}

.psu-calc__add-btn:hover {
  background: var(--psu-green-hover);
}

.psu-calc__add-btn:active {
  transform: scale(0.97);
}

/* ── Support Section ── */
.psu-calc__support {
  margin-top: 64px;
}

.psu-calc__support-heading {
  font-size: 1.35rem;
  font-weight: 700;
  margin: 0 0 24px;
  text-align: center;
  color: var(--psu-dark);
  letter-spacing: -0.01em;
}

.psu-calc__support-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

@media (max-width: 640px) {
  .psu-calc__support-grid {
    grid-template-columns: 1fr;
  }
}

.psu-calc__support-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 20px 24px;
  background: var(--psu-card-bg);
  border: 1px solid var(--psu-border);
  border-radius: var(--psu-radius);
  text-decoration: none;
  color: var(--psu-dark);
  box-shadow: var(--psu-shadow);
  transition: border-color var(--psu-transition), box-shadow var(--psu-transition), transform var(--psu-transition);
}

.psu-calc__support-card:hover {
  border-color: var(--psu-green);
  box-shadow: var(--psu-shadow-hover);
  transform: translateY(-2px);
}

.psu-calc__support-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-card);
  background: rgba(74, 175, 71, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--psu-green);
}

.psu-calc__support-title {
  flex: 1;
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--psu-dark);
}

.psu-calc__support-arrow {
  flex-shrink: 0;
  color: var(--psu-text-secondary);
  opacity: 0;
  transform: translateX(-4px);
  transition: opacity var(--psu-transition), transform var(--psu-transition);
}

.psu-calc__support-card:hover .psu-calc__support-arrow {
  opacity: 1;
  transform: translateX(0);
}
/* END_SECTION:psu-calculator */

/* START_SECTION:quick-view (INDEX:281) */
/* ═══════════════════════════════════════
   QUICK VIEW SECTION — compact mini-PDP
   ═══════════════════════════════════════ */

.qv-section {
  font-family: inherit;
}

/* ── Gallery ── */
.qv-gallery {
  display: flex;
  gap: 0.5rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  margin-bottom: 1rem;
  scrollbar-width: none;
}
.qv-gallery::-webkit-scrollbar { display: none; }

.qv-gallery__img {
  width: 240px;
  height: 240px;
  object-fit: cover;
  border-radius: 0.625rem;
  flex-shrink: 0;
  scroll-snap-align: start;
}

/* ── Title ── */
.qv-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: #1a1a2e;
  margin: 0 0 0.375rem;
  line-height: 1.3;
}

/* ── Price row ── */
.qv-price-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.qv-price {
  font-size: 1.125rem;
  font-weight: 700;
  color: #1a1a2e;
}

.qv-compare {
  font-size: 0.8125rem;
  color: #999;
  text-decoration: line-through;
}

.qv-save-badge {
  font-size: 0.6875rem;
  font-weight: 600;
  color: #e63946;
  background: #fef2f2;
  padding: 0.125rem 0.5rem;
  border-radius: var(--radius-button);
}

/* ── Variant selectors ── */
.qv-variants {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.qv-option {
  border: none;
  padding: 0;
  margin: 0;
}

.qv-option__label {
  font-size: 0.75rem;
  font-weight: 600;
  color: #1a1a2e;
  margin-bottom: 0.375rem;
  display: block;
}

.qv-option__selected {
  font-weight: 400;
  color: #71717a;
}

/* Color swatches */
.qv-swatches {
  display: flex;
  gap: 0.375rem;
  flex-wrap: wrap;
}

.qv-swatch {
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid transparent;
  border-radius: 50%;
  padding: 2px;
  transition: border-color 0.2s;
}

.qv-swatch--active {
  border-color: #1a1a2e;
}

.qv-swatch__dot {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: block;
}

.qv-swatch__dot--image {
  overflow: hidden;
}

.qv-swatch__dot--image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  display: block;
}

/* Pill buttons */
.qv-pills {
  display: flex;
  gap: 0.375rem;
  flex-wrap: wrap;
}

.qv-pill {
  cursor: pointer;
  padding: 0.3125rem 0.75rem;
  border: 1px solid #e5e5e5;
  border-radius: var(--radius-button);
  font-size: 0.75rem;
  font-weight: 500;
  color: #555;
  transition: border-color 0.2s, background 0.2s;
}

.qv-pill--active {
  border-color: #1a1a2e;
  background: #1a1a2e;
  color: #fff;
}

/* ── Description ── */
.qv-desc {
  font-size: 0.8125rem;
  line-height: 1.5;
  color: #71717a;
  margin: 0 0 1rem;
}

/* ── Quantity row ── */
.qv-form {
  margin-bottom: 0.75rem;
}

.qv-qty-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.qv-qty-label {
  font-size: 0.75rem;
  font-weight: 600;
  color: #1a1a2e;
}

.qv-qty-input {
  width: 3.5rem;
  padding: 0.3125rem 0.5rem;
  border: 1px solid #e5e5e5;
  border-radius: 0.375rem;
  font-size: 0.8125rem;
  text-align: center;
  font-family: inherit;
}

.qv-qty-input:focus {
  outline: none;
  border-color: #1a1a2e;
}

/* ── Availability ── */
.qv-availability {
  font-size: 0.75rem;
  color: #71717a;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 0.375rem;
}

.qv-availability__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  display: inline-block;
}

.qv-availability__dot--in { background: #51BD7A; }
.qv-availability__dot--out { background: #ef4444; }

/* ── Utility ── */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
/* END_SECTION:quick-view */

/* START_SECTION:retailer-grid (INDEX:283) */
/* ═══════════════════════════════════════
   RETAILER GRID — where to buy
   ═══════════════════════════════════════ */
.retailer-grid {
  padding: var(--space-3xl) 0;
}

.retailer-grid__header {
  text-align: center;
  margin-bottom: var(--space-2xl);
  max-width: 36rem;
  margin-inline: auto;
}

.retailer-grid__heading {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 700;
  letter-spacing: var(--tracking-tight);
  line-height: var(--line-height-tight);
  color: var(--color-foreground, #1a1a2e);
  margin: 0 0 0.75rem;
}

.retailer-grid__desc {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--color-body-text, #555);
  margin: 0;
}

/* ── Grid ── */
.retailer-grid__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

/* ── Card ── */
.retailer-grid__card {
  background: #fff;
  border: 1px solid var(--color-border, #e5e5e5);
  border-radius: 1rem;
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  text-align: center;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.retailer-grid__card:hover {
  box-shadow: 0 8px 32px rgba(0,0,0,0.08);
  transform: translateY(-2px);
}

/* ── Logo ── */
.retailer-grid__logo-wrap {
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.retailer-grid__logo {
  max-width: 120px;
  max-height: 60px;
  width: auto;
  height: auto;
  object-fit: contain;
}

.retailer-grid__logo-placeholder {
  width: 120px;
  background: var(--color-secondary, #f5f4f0);
  border-radius: 0.5rem;
  padding: 0.5rem 1rem;
}

.retailer-grid__logo-text {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--color-text-muted, #71717a);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.retailer-grid__name {
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-foreground, #1a1a2e);
  margin: 0;
}

.retailer-grid__link {
  display: inline-flex;
  align-items: center;
  gap: 0.35em;
  font-size: var(--font-size-sm, 0.875rem);
  font-weight: 600;
  color: var(--color-accent, #2563eb);
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.retailer-grid__link:hover {
  opacity: 0.7;
}

/* ── Desktop: 3 columns ── */
@media (min-width: 768px) {
  .retailer-grid__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
  }
  .retailer-grid__card {
    padding: 2.5rem 2rem;
  }
}

/* ── Mobile ── */
@media (max-width: 749px) {
  .retailer-grid { padding: var(--space-2xl) 0; }
  .retailer-grid__card { padding: 1.5rem 1rem; }
}
/* END_SECTION:retailer-grid */

/* START_SECTION:sale-banner (INDEX:289) */
/* ── Sale Banner ── */
.sale-banner {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: var(--sale-bg, #000);
  color: var(--sale-fg, #fff);
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateY(-100%);
  animation: saleBannerSlideDown 0.4s ease forwards;
  will-change: transform;
}

.sale-banner[hidden] { display: none; }

.sale-banner.sale-banner--closing {
  animation: saleBannerSlideUp 0.3s ease forwards;
}

@keyframes saleBannerSlideDown {
  from { transform: translateY(-100%); }
  to   { transform: translateY(0); }
}
@keyframes saleBannerSlideUp {
  from { transform: translateY(0); }
  to   { transform: translateY(-100%); }
}

.sale-banner__inner {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 0 48px;
  max-width: 1400px;
  width: 100%;
  justify-content: center;
}

.sale-banner__headline {
  margin: 0;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Countdown */
.sale-banner__countdown {
  display: flex;
  align-items: center;
  gap: 2px;
}

.sale-banner__digit {
  font-family: 'SF Mono', 'Fira Code', 'Cascadia Code', 'Consolas', monospace;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.02em;
  background: rgba(255,255,255,0.12);
  padding: 3px 6px;
  border-radius: 4px;
  min-width: 28px;
  text-align: center;
  color: var(--sale-accent);
}

.sale-banner__sep {
  font-family: 'SF Mono', monospace;
  font-weight: 700;
  font-size: 13px;
  opacity: 0.5;
  margin: 0 1px;
}

/* CTA */
.sale-banner__cta {
  display: inline-flex;
  align-items: center;
  padding: 5px 16px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  background: var(--sale-accent);
  color: var(--sale-bg, #000);
  border-radius: 4px;
  text-decoration: none;
  white-space: nowrap;
  transition: opacity 0.2s ease;
}
.sale-banner__cta:hover { opacity: 0.85; }

/* Close */
.sale-banner__close {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: var(--sale-fg);
  opacity: 0.5;
  cursor: pointer;
  padding: 6px;
  line-height: 0;
  transition: opacity 0.2s ease;
}
.sale-banner__close:hover { opacity: 1; }

/* ── Body offset when banner is visible ── */
html.has-sale-banner {
  --sale-banner-height: 52px;
}
html.has-sale-banner body {
  padding-top: var(--sale-banner-height);
}

/* ── Responsive ── */
@media (max-width: 749px) {
  .sale-banner { height: 44px; }
  html.has-sale-banner { --sale-banner-height: 44px; }

  .sale-banner__inner {
    gap: 10px;
    padding: 0 40px 0 12px;
    flex-wrap: nowrap;
  }

  .sale-banner__headline {
    font-size: 11px;
    flex: 1;
    min-width: 0;
  }

  .sale-banner__digit {
    font-size: 11px;
    padding: 2px 4px;
    min-width: 22px;
  }

  .sale-banner__sep { font-size: 11px; }

  .sale-banner__cta {
    font-size: 10px;
    padding: 4px 10px;
  }

  .sale-banner__close { right: 8px; }
}

/* Stack on very small screens */
@media (max-width: 479px) {
  .sale-banner__cta { display: none; }
}
/* END_SECTION:sale-banner */

/* START_SECTION:split-panel (INDEX:300) */
/* ── HP Split Panel ── */
.split-panel {
  width: 100%;
  max-width: 72rem;
  margin: 0 auto;
  padding: var(--space-xl) var(--space-md);
}

.split-panel__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.split-panel__panel {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: var(--sp-justify, flex-end);
  aspect-ratio: var(--sp-ratio, 3 / 4);
  background: var(--hp-panel-bg, var(--color-surface));
  color: var(--color-text);
  overflow: hidden;
  border-radius: 1.5rem;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}

.split-panel__panel--dark { color: #fff; }

.split-panel__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.split-panel__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.split-panel__content {
  position: relative;
  z-index: 2;
  padding: var(--space-xl) var(--space-xl) var(--space-2xl);
  text-align: center;
  background: linear-gradient(to top, rgb(0 0 0 / var(--sp-overlay, 0.3)) 0%, rgb(0 0 0 / calc(var(--sp-overlay, 0.3) * 0.5)) 50%, transparent 100%);
}

.split-panel__panel--dark .split-panel__content {
  background: linear-gradient(to top, rgb(0 0 0 / calc(var(--sp-overlay, 0.3) + 0.15)) 0%, rgb(0 0 0 / calc(var(--sp-overlay, 0.3) * 0.4)) 55%, transparent 100%);
}

.split-panel__heading {
  font-family: var(--font-heading);
  font-weight: 700;
  letter-spacing: var(--tracking-tight);
  line-height: var(--line-height-tight);
  margin-bottom: var(--space-xs);
  color: #fff;
}

/* Text sizes */
.split-panel--text-small .split-panel__heading { font-size: clamp(1.125rem, 2vw, 1.5rem); }
.split-panel--text-medium .split-panel__heading { font-size: clamp(1.5rem, 3vw, 2.25rem); }
.split-panel--text-large .split-panel__heading { font-size: clamp(1.75rem, 4vw, 3rem); }

.split-panel--text-small .split-panel__desc { font-size: var(--font-size-xs); }
.split-panel--text-medium .split-panel__desc { font-size: var(--font-size-sm); }
.split-panel--text-large .split-panel__desc { font-size: var(--font-size-base, 1rem); }

.split-panel__desc {
  opacity: 0.9;
  margin-bottom: var(--space-md);
  line-height: var(--line-height-base);
  color: #fff;
}

.split-panel__link {
  display: inline-flex;
  align-items: center;
  gap: 0.35em;
  font-size: var(--font-size-sm);
  font-weight: 600;
  text-decoration: none;
  color: #fff;
  transition: opacity var(--duration-base) var(--ease-default);
}

/* Linked panel — full card clickable */
.split-panel__panel--linked {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.split-panel__panel--linked:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.15);
}
.split-panel__panel--linked:hover .split-panel__img {
  transform: scale(1.04);
}
.split-panel__panel--linked:hover .split-panel__link {
  opacity: 1;
}
.split-panel__panel--linked:hover .split-panel__link svg {
  transform: translateX(4px);
  transition: transform 0.2s ease;
}
.split-panel__link { transition: opacity 0.2s; }
.split-panel__link:hover { opacity: 0.7; }

/* No-image fallback — remove gradient, use bg_color text contrast */
.split-panel__content--no-image {
  background: none;
}
.split-panel__panel:not(.split-panel__panel--dark) .split-panel__content--no-image .split-panel__heading,
.split-panel__panel:not(.split-panel__panel--dark) .split-panel__content--no-image .split-panel__desc,
.split-panel__panel:not(.split-panel__panel--dark) .split-panel__content--no-image .split-panel__link {
  color: var(--color-text, #1a1a2e);
}

@media (min-width: 768px) {
  .split-panel__grid {
    grid-template-columns: 1fr 1fr;
  }
  .split-panel__content {
    padding: var(--space-2xl) var(--space-2xl) var(--space-3xl);
  }
}

/* ── Mobile overrides ── */
@media (max-width: 749px) {
  .split-panel__panel { aspect-ratio: var(--mobile-sp-ratio, auto); }

  /* Mobile text sizes */
  .split-panel--m-text-small .split-panel__heading { font-size: clamp(1rem, 4vw, 1.25rem); }
  .split-panel--m-text-medium .split-panel__heading { font-size: clamp(1.25rem, 5vw, 1.75rem); }
  .split-panel--m-text-large .split-panel__heading { font-size: clamp(1.5rem, 6vw, 2.25rem); }
  .split-panel--m-text-auto .split-panel__heading { font-size: unset; }

  .split-panel--m-text-small .split-panel__desc { font-size: var(--font-size-xs); }
  .split-panel--m-text-medium .split-panel__desc { font-size: var(--font-size-sm); }
  .split-panel--m-text-large .split-panel__desc { font-size: var(--font-size-base, 1rem); }
  .split-panel--m-text-auto .split-panel__desc { font-size: unset; }
}
/* END_SECTION:split-panel */

/* START_SECTION:star-wars-banner (INDEX:301) */
.sw-banner {
  position: relative;
  width: 100%;
  min-height: var(--sw-banner-min-h, 720px);
  overflow: hidden;
  display: flex;
  isolation: isolate;
}
.sw-banner::after {  
    position: absolute;
    content: "";
    left: 0;
    right: 0;
    bottom: 0;
    height: clamp(32px, 7vw, 100px);
    background: linear-gradient(0deg, #0a0b14, transparent);
}
.sw-banner__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.sw-banner__picture { display: block; width: 100%; height: 100%; }
.sw-banner__img,
.sw-banner__video,
.sw-banner__placeholder {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.sw-banner__picture .sw-banner__img { position: static; }

/* Video / image breakpoint visibility — desktop default */
.sw-banner__video--desktop,
.sw-banner__img--desktop { display: block; }
.sw-banner__video--tablet,
.sw-banner__img--tablet,
.sw-banner__video--mobile,
.sw-banner__img--mobile { display: none; }

@media (max-width: 1199px) and (min-width: 750px) {
  .sw-banner__video--desktop,
  .sw-banner__img--desktop { display: none; }
  .sw-banner__video--tablet,
  .sw-banner__img--tablet { display: block; }
  .sw-banner::after {  
    display: none;
  }
}
@media (max-width: 749px) {
  .sw-banner__video--desktop,
  .sw-banner__img--desktop,
  .sw-banner__video--tablet,
  .sw-banner__img--tablet { display: none; }
  .sw-banner__video--mobile,
  .sw-banner__img--mobile { display: block; }
}
.sw-banner__placeholder { background: linear-gradient(180deg, #060c1a 0%, #0c1838 60%, #050a1a 100%); }

.sw-banner__content {
  position: relative;
  z-index: 1;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  padding: 1rem 0;
}
/* Vertical position (desktop) */
.sw-banner--top-center    .sw-banner__content { justify-content: flex-start; }
.sw-banner--center-center .sw-banner__content { justify-content: center; min-height: var(--sw-banner-min-h, 720px); }
.sw-banner--bottom-center .sw-banner__content { justify-content: flex-end; min-height: var(--sw-banner-min-h, 720px); }

.sw-banner__title {
  display: flex;
  justify-content: center;
  width: 100%;
  max-width: var(--sw-banner-title-max, 800px);
  margin: 0 auto;
}
.sw-banner__title-img {
  width: 100%;
  height: auto;
  display: block;
}

.sw-banner__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--sw-banner-cta-bg, #FFD93D);
  color: var(--sw-banner-cta-text, #000);
  font-family: var(--font-heading-family);
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 0.75rem 1.5rem;
  border-radius: 4px;
  transition: transform 0.15s ease, filter 0.2s ease;
  min-width: 140px;
}
.sw-banner__cta:hover {
  transform: translateY(-1px);
  filter: brightness(1.05);
}

@media (max-width: 1199px) and (min-width: 750px) {
  .sw-banner--mobile-top-center    .sw-banner__content { justify-content: flex-end; padding: 60px 0; }
}

@media (max-width: 749px) {
  .sw-banner {
    min-height: var(--sw-banner-min-h-mobile, 700px);
  }
  .sw-banner--mobile-top-center    .sw-banner__content { justify-content: flex-end; padding: 60px 0; }
  .sw-banner--mobile-center-center .sw-banner__content { justify-content: center; min-height: var(--sw-banner-min-h-mobile, 700px); }
  .sw-banner--mobile-bottom-center .sw-banner__content { justify-content: flex-end; min-height: var(--sw-banner-min-h-mobile, 700px); }
  .sw-banner__title  { max-width: var(--sw-banner-title-max-mobile, 320px); }
  .sw-banner__cta {
    width: calc(100% - 3rem);
    max-width: 360px;
    padding: 1rem 1.25rem;
    font-size: 1rem;
    border-radius: 6px;
  }
}
/* END_SECTION:star-wars-banner */

/* START_SECTION:star-wars-products (INDEX:302) */
.sw-prods {
  position: relative;
  background-color: var(--sw-bg, #000);
  color: var(--sw-text, #fff);
  padding: 4rem 0;
  overflow: hidden;
}

.sw-prods__inner { position: relative; z-index: 1; }

.sw-prods__top-banner {
  margin: 0 0 2.5rem;
  border-radius: 1rem;
  overflow: hidden;
}
.sw-prods__top-banner-img {
  display: block;
  width: 100%;
  height: auto;
}

.sw-prods__header {
  text-align: center;
  margin: 0 auto 2.25rem;
  max-width: 42rem;
}
.sw-prods__heading {
  font-family: var(--font-heading-family);
  font-size: clamp(3rem, 4vw, 3.5rem);
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.15;
  margin: 0 0 0.5rem;
  color: var(--sw-text, #fff);
}
.sw-prods__subheading {
  font-size: 1.1rem;
  font-weight: 500;
  line-height: 1.55;
  margin: 0;
}

.sw-prods__grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(var(--sw-cols-d, 3), 1fr);
  gap: 1.25rem;
}

.sw-prods__card {
  background: var(--sw-card-bg, #0f1729);
  border-radius: 1rem;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.sw-prods__media {
  position: relative;
  display: block;
  aspect-ratio: 1 / 1;
  overflow: hidden;
}
.sw-prods__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.sw-prods__card:hover .sw-prods__media img { transform: scale(1.04); }

.sw-prods__badge {
  position: absolute;
  top: -12px;
  left: -12px;
  background: var(--sw-accent, #FFD93D);
  color: var(--sw-accent-text, #000);
  font-family: var(--font-heading-family);
  font-weight: 700;
  font-size: 20px;
  line-height: 1;
  padding: 28px 26px;
  border-radius: 50%;
  width: 88px;
  height: 88px;
  letter-spacing: 0.04em;
  z-index: 1;
}

.sw-prods__body {
  padding: 1rem 1rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.sw-prods__title-link { text-decoration: none; color: inherit; }
.sw-prods__title {
  font-family: var(--font-heading-family);
  font-size: 0.9375rem;
  font-weight: 600;
  line-height: 1.35;
  margin: 0;
  color: var(--sw-text, #fff);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.sw-prods__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
}
.sw-prods__prices {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  flex-wrap: wrap;
}
.sw-prods__price {
  color: var(--sw-price, #51BD7A);
  font-weight: 700;
  font-size: 0.9375rem;
}
.sw-prods__compare {
  color: rgba(255,255,255,0.5);
  text-decoration: line-through;
  font-size: 0.8125rem;
}
.sw-prods__rating {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: rgba(0,0,0,0.4);
  border: 1px solid rgba(255,255,255,0.12);
  padding: 3px 7px;
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 700;
  color: #fff;
}

.sw-prods__form { margin: 0; }
.sw-prods__btn {
  width: 100%;
  background: var(--sw-accent, #FFD93D);
  color: var(--sw-accent-text, #000);
  border: none;
  padding: 0.85rem 1rem;
  font-family: var(--font-heading-family);
  font-weight: 800;
  font-size: 0.875rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 6px;
  cursor: pointer;
  transition: filter 0.2s ease, transform 0.15s ease;
}
.sw-prods__btn:hover:not([disabled]) { filter: brightness(1.05); transform: translateY(-1px); }
.sw-prods__btn[disabled] { opacity: 0.5; cursor: not-allowed; }

.sw-prods__empty {
  text-align: center;
  padding: 3rem 1rem;
  opacity: 0.7;
}

@media (max-width: 990px) {
  .sw-prods__grid { grid-template-columns: repeat(2, 1fr); }  
  .sw-prods__subheading { font-size: 1rem; }
}
@media (max-width: 540px) {
  .sw-prods__grid {
    grid-template-columns: repeat(var(--sw-cols-m, 2), 1fr);
    gap: 0.75rem;
  }
  .sw-prods__heading { font-size: 2.125rem; } 
  .sw-prods__subheading { font-size: 0.875rem; }
  .sw-prods__title { font-size: 0.875rem; }
  .sw-prods__price { font-size: 0.875rem; }
  .sw-prods__badge { width: 56px; height: 56px; font-size: 16px; padding: 13px 12px; left: -4px; top: -4px; }
  .sw-prods__btn { font-size: 0.8125rem; padding: 0.75rem 0.75rem; }
}
/* END_SECTION:star-wars-products */

/* START_SECTION:story-card (INDEX:303) */
/* ── HP Story Card ── */
.story-card {
  position: relative;
  width: 100%;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  color: var(--hp-story-text, #fff);
}

.story-card__color-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: {% if text_color == 'light' %}#1a1a2e{% else %}#f5f4f0{% endif %};
  background: var(--hp-story-bg-fallback, #1a1a2e);
}

.story-card__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.story-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.story-card__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgb(0 0 0 / var(--story-overlay, 0.35));
  pointer-events: none;
}

.story-card__content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: var(--space-3xl) var(--space-xl);
  max-width: 700px;
}

.story-card__category {
  display: inline-block;
  font-size: var(--font-size-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 0.35em 1em;
  border: 1px solid currentColor;
  border-radius: var(--radius-full);
  margin-bottom: var(--space-lg);
  opacity: 0.85;
}

.story-card__heading {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw, 3rem);
  font-weight: 700;
  letter-spacing: var(--tracking-tight);
  line-height: var(--line-height-tight);
  margin-bottom: var(--space-md);
}

.story-card__desc {
  font-size: clamp(0.95rem, 1.5vw, 1.125rem);
  line-height: var(--line-height-base);
  opacity: 0.85;
  margin-bottom: var(--space-xl);
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.story-card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.35em;
  font-size: var(--font-size-sm);
  font-weight: 600;
  color: inherit;
  text-decoration: none;
  transition: opacity var(--duration-base) var(--ease-default);
}

.story-card__link:hover { opacity: 0.7; }

@media (min-width: 768px) {
  .story-card {
    min-height: 480px;
  }
}
/* END_SECTION:story-card */

/* START_SECTION:student-eligible-products (INDEX:305) */
.sd-products { padding: 4rem 0; text-align: center; }
.sd-products__inner { max-width: 42rem; margin: 0 auto; }
.sd-products__heading { font-size: clamp(1.5rem, 3vw, 2rem); font-weight: 700; letter-spacing: -0.02em; margin: 0 0 0.75rem; }
.sd-products__desc { font-size: 0.9375rem; color: #666; margin: 0 0 2rem; line-height: 1.6; }
.sd-products__grid { display: flex; flex-wrap: wrap; justify-content: center; gap: 0.75rem; margin-block-end: 2rem; }
.sd-products__tag {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: 0.875rem; font-weight: 600; padding: 0.625rem 1.25rem;
  background: #fff; border: 1px solid #e5e5e5; border-radius: var(--radius-button, 999px); color: #1a1a2e;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.sd-products__tag:hover { border-color: #51BD7A; box-shadow: 0 0 0 1px #51BD7A30; }
.sd-products__cta {
  display: inline-flex; align-items: center; gap: 0.5rem;
  color: #fff; font-size: 0.9375rem; font-weight: 700;
  padding: 0.875rem 2rem; border-radius: var(--radius-button, 999px);
  text-decoration: none; transition: filter 0.2s, transform 0.15s;
}
.sd-products__cta:hover { filter: brightness(0.9); transform: translateY(-1px); }
@media (max-width: 749px) { .sd-products { padding: 3rem 0; } }
/* END_SECTION:student-eligible-products */

/* START_SECTION:student-how-it-works (INDEX:306) */
.sd-steps { padding: 4rem 0; }
.sd-steps__inner { max-width: 56rem; margin: 0 auto; }
.sd-steps__heading {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700; letter-spacing: -0.02em;
  text-align: center; margin: 0 0 2.5rem;
}
.sd-steps__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 1.5rem; }
.sd-steps__card { border-radius: var(--radius-card, 12px); padding: 2rem 1.5rem; text-align: center; }
.sd-steps__num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 2.5rem; height: 2.5rem; color: #fff;
  font-weight: 800; font-size: 1rem; border-radius: 50%; margin-block-end: 1rem;
}
.sd-steps__title { font-size: 1.0625rem; font-weight: 700; margin: 0 0 0.5rem; }
.sd-steps__desc { font-size: 0.875rem; color: #666; line-height: 1.55; margin: 0; }
@media (max-width: 749px) {
  .sd-steps__grid { grid-template-columns: 1fr; }
  .sd-steps { padding: 3rem 0; }
}
/* END_SECTION:student-how-it-works */

/* CSS from snippet stylesheet tags */
/* START_SNIPPET:brand-gradient (INDEX:324) */
.nf-brand-gradient {
  background:
    radial-gradient(ellipse at 15% 80%, rgba(76,175,80,0.55) 0%, transparent 45%),
    radial-gradient(ellipse at 85% 15%, rgba(56,195,80,0.45) 0%, transparent 40%),
    radial-gradient(ellipse at 50% 50%, rgba(34,197,94,0.25) 0%, transparent 55%),
    radial-gradient(circle at 70% 70%, rgba(22,163,74,0.35) 0%, transparent 35%),
    radial-gradient(circle at 25% 30%, rgba(74,222,128,0.15) 0%, transparent 30%),
    linear-gradient(155deg, #0b3a16 0%, #51BD7A 20%, #51BD7A 40%, #51BD7A 55%, #51BD7A 70%, #0f5a26 85%, #0a3818 100%);
}
/* END_SNIPPET:brand-gradient */

/* START_SNIPPET:breadcrumbs (INDEX:325) */
.breadcrumbs__list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    padding: 0;
    margin: 0;
    list-style: none;
    font-size: var(--font-size-sm, 0.875rem);
    color: var(--color-text-secondary, #666);
  }

  .breadcrumbs__item:not(:last-child)::after {
    content: '/';
    margin-inline-start: 0.5rem;
  }

  .breadcrumbs__item a {
    color: inherit;
    text-decoration: none;
  }

  .breadcrumbs__item a:hover {
    text-decoration: underline;
  }

  .breadcrumbs__item[aria-current="page"] {
    color: var(--color-text, #1a1a1a);
  }
/* END_SNIPPET:breadcrumbs */

/* START_SNIPPET:country-selector (INDEX:332) */
.country-selector select {
    appearance: none;
    padding: 0.5rem 2rem 0.5rem 0.75rem;
    border: 1px solid var(--color-border, #e5e5e5);
    border-radius: var(--radius-sm, 4px);
    background: var(--color-background, #fff);
    font-size: var(--font-size-sm, 0.875rem);
    cursor: pointer;
  }
/* END_SNIPPET:country-selector */

/* START_SNIPPET:price-display (INDEX:380) */
.price {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
  }

  .price__current {
    font-size: var(--font-size-2xl, 1.5rem);
    font-weight: 700;
    color: var(--color-text, #1a1a1a);
  }

  .price--on-sale .price__current {
    color: var(--color-sale, #e74c3c);
  }

  .price__compare {
    font-size: var(--font-size-lg, 1.125rem);
    color: var(--color-text-secondary, #666);
    text-decoration: line-through;
  }

  .price__save-badge {
    display: inline-flex;
    padding: 0.125rem 0.5rem;
    background: var(--color-sale, #e74c3c);
    color: #fff;
    font-size: var(--font-size-sm, 0.875rem);
    font-weight: 600;
    border-radius: var(--radius-sm, 4px);
  }
/* END_SNIPPET:price-display */

/* START_SNIPPET:quick-view-modal (INDEX:409) */
/* ═══════════════════════════════════════════════
   QUICK VIEW MODAL
   ═══════════════════════════════════════════════ */

/* ── Overlay container ── */
.qv-modal {
  position: fixed;
  inset: 0;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.qv-modal[hidden] { display: none; }
.qv-modal.is-open {
  pointer-events: auto;
  opacity: 1;
}

/* ── Backdrop ── */
.qv-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
}

/* ── Panel ── */
.qv-modal__panel {
  --qv-bg: #fff;
  --qv-text: #1a1a2e;
  --qv-text-muted: #71717a;
  --qv-border: rgba(0,0,0,0.08);
  --qv-footer-fade: #fff;

  position: relative;
  width: 56rem;
  max-width: calc(100vw - 2rem);
  max-height: 90vh;
  background: var(--qv-bg);
  border-radius: 1rem;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.22);
  transform: translateY(30px) scale(0.98);
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.qv-modal.is-open .qv-modal__panel {
  transform: translateY(0) scale(1);
}

/* ── Dark theme panel ── */
.theme-dark .qv-modal__panel {
  --qv-bg: #1e1e21;
  --qv-text: #f5f5f5;
  --qv-text-muted: rgba(255,255,255,0.55);
  --qv-border: rgba(255,255,255,0.12);
  --qv-footer-fade: #1e1e21;
  --color-border: rgba(255,255,255,0.12);
  --color-foreground: #f5f5f5;
}
/* Dark QV: all borders/separators inherit --qv-border */
.theme-dark .qv-modal__scroll .pdp-hero__accordion {
  border-color: var(--qv-border) !important;
}
.theme-dark .qv-modal__scroll hr,
.theme-dark .qv-modal__scroll .pdp-hero__desc-divider-line {
  border-color: var(--qv-border) !important;
  background-color: var(--qv-border) !important;
}
/* Catch hardcoded border colors */
.theme-dark .qv-modal__scroll .pdp-hero__inventory-bar {
  background: rgba(255,255,255,0.12) !important;
}
.theme-dark .qv-modal__scroll .pdp-hero__accordion-trigger {
  color: var(--qv-text) !important;
}
.theme-dark .qv-modal__scroll .pdp-hero__accordion-chevron {
  color: var(--qv-text) !important;
}
.theme-dark .qv-modal__scroll .pdp-hero__accordion-answer,
.theme-dark .qv-modal__scroll .pdp-hero__accordion-body {
  color: var(--qv-text-muted) !important;
}
/* Light QV: ensure accordions use proper light border */
.qv-modal__scroll .pdp-hero__accordion {
  border-color: rgba(0,0,0,0.08);
}

/* ── Close button ── */
.qv-modal__close {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  z-index: 10;
  width: 2.75rem;
  height: 2.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--qv-bg);
  border: 1px solid var(--qv-border);
  border-radius: 50%;
  color: var(--qv-text);
  cursor: pointer;
  transition: opacity 0.2s, transform 0.2s;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}
.qv-modal__close:hover {
  opacity: 0.8;
  transform: scale(1.06);
}

/* ── Scrollable content area ── */
.qv-modal__scroll {
  flex: 1;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

/* ═══ PDP HERO OVERRIDES INSIDE MODAL ═══ */

/* Remove page-level padding/width constraints */
.qv-modal__scroll .page-width {
  padding: 0 !important;
  max-width: none !important;
}

/* Hero section padding reset */
.qv-modal__scroll .pdp-hero {
  padding-block: 0.5rem 0.5rem !important;
}

/* Grid: two columns on wide modal, single column on narrow */
.qv-modal__scroll .pdp-hero__grid {
  grid-template-columns: 1fr 1fr !important;
  column-gap: 1.5rem !important;
  row-gap: 0.5rem !important;
  padding: 0 1rem;
}

/* Gallery: sticky so it stays visible while scrolling product details */
.qv-modal__scroll .pdp-hero__gallery-sticky {
  position: sticky !important;
  top: 0 !important;
  align-self: flex-start;
}

/* Gallery image: rounded, normal cursor, block lightbox */
.qv-modal__scroll .pdp-hero__main-image,
.qv-modal__scroll .pdp-hero__slide,
.qv-modal__scroll .pdp-hero__gallery,
.qv-modal__scroll .pdp-hero__carousel {
  cursor: default !important;
}
.qv-modal__scroll .pdp-hero__main-image {
  border-radius: 0.5rem !important;
  border: 1px solid var(--qv-border) !important;
}
/* Block the lightbox overlay and expand icons */
.qv-modal__scroll .pdp-hero__expand-icon,
.qv-modal__scroll .pdp-hero__zoom-icon,
.qv-modal__scroll [data-lightbox-trigger],
.qv-modal__scroll .pdp-hero__lightbox,
.qv-modal__scroll .pdp-hero__4d-trigger {
  display: none !important;
}
/* Slides: default cursor */
.qv-modal__scroll .pdp-hero__slide {
  cursor: default !important;
}

/* Gallery arrows: keep clickable, smaller */
.qv-modal__scroll .pdp-hero__arrow {
  width: 2rem;
  height: 2rem;
}

/* Thumbnails: keep clickable, smaller */
.qv-modal__scroll .pdp-hero__thumbnails {
  padding-inline: 0;
  gap: 0.25rem;
}
.qv-modal__scroll .pdp-hero__thumb {
  width: 2.75rem;
  height: 2.75rem;
}

/* ── Info column: tighter spacing, allow pulse overflow ── */
.qv-modal__scroll .pdp-hero__info {
  padding-inline: 0 !important;
  padding-top: 0.25rem;
  overflow: visible !important;
}
.qv-modal__scroll .pdp-hero__inventory,
.qv-modal__scroll .pdp-hero__inventory-info,
.qv-modal__scroll .pdp-hero__inventory-left {
  overflow: visible !important;
}

/* Title: smaller for modal */
.qv-modal__scroll .pdp-hero__title {
  font-size: 1.25rem !important;
  line-height: 1.3 !important;
}

/* Description: smaller */
.qv-modal__scroll .pdp-hero__description,
.qv-modal__scroll [data-desc-content] {
  font-size: 0.8125rem !important;
  line-height: 1.55 !important;
}

/* ── Hide elements that belong on the full PDP only ── */
.qv-modal__scroll [data-qty-selector],
.qv-modal__scroll [data-add-to-cart],
.qv-modal__scroll .pdp-hero__cta-row,
.qv-modal__scroll .pdp-hero__dynamic-checkout,
.qv-modal__scroll .pdp-hero__cross-sell,
.qv-modal__scroll .pdp-hero__mobile-sticky,
.qv-modal__scroll .pdp-hero__feature-prompt,
.qv-modal__scroll .pdp-hero__gallery-sticky::after {
  display: none !important;
}

/* ── Description fade — must use panel bg, not section bg ── */
.qv-modal .qv-modal__scroll .pdp-hero__desc-fade {
  background: linear-gradient(to bottom, transparent, var(--qv-bg, #fff)) !important;
}
.theme-dark .qv-modal .qv-modal__scroll .pdp-hero__desc-fade {
  background: linear-gradient(to bottom, transparent, var(--qv-bg, #1e1e21)) !important;
}

/* ── Price: smaller + thinner in modal to distinguish from title ── */
.qv-modal__scroll .pdp-hero__price-current {
  font-size: 1.125rem !important;
  font-weight: 400 !important;
}
.qv-modal__scroll .pdp-hero__price-row {
  margin-top: 0.125rem !important;
}
.theme-dark .qv-modal__scroll .pdp-hero__price-current {
  color: #f5f5f5 !important;
}
.theme-dark .qv-modal__scroll .pdp-hero__price-compare {
  color: rgba(255,255,255,0.4) !important;
}

/* ── Read More toggle — unified grey, dark mode override in QV ── */
.theme-dark .qv-modal__scroll .pdp-hero__desc-toggle {
  background: rgba(255,255,255,0.12) !important;
  color: #f5f5f5 !important;
}
.theme-dark .qv-modal__scroll .pdp-hero__desc-toggle:hover {
  background: rgba(255,255,255,0.18) !important;
}
.theme-dark .qv-modal__scroll .pdp-hero__desc-wrap.is-expanded .pdp-hero__desc-toggle {
  background: rgba(255,255,255,0.12) !important;
  color: #f5f5f5 !important;
}
.theme-dark .qv-modal__scroll .pdp-hero__desc-divider-line {
  background: rgba(255,255,255,0.12) !important;
}

/* ── Accordion — dark mode text ── */
.theme-dark .qv-modal__scroll .pdp-hero__accordion-trigger {
  color: #f5f5f5 !important;
}
.theme-dark .qv-modal__scroll .pdp-hero__accordion-content {
  color: rgba(255,255,255,0.65) !important;
}
.theme-dark .qv-modal__scroll .pdp-hero__accordion {
  border-color: rgba(255,255,255,0.1) !important;
}

/* ── Keep visible: variant picker, price, reviews, description, accordion, trust, shipping, inventory ── */

/* ── Loading spinner ── */
.qv-modal__loading {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6rem;
}
.qv-modal__spinner {
  width: 24px;
  height: 24px;
  border: 2px solid var(--qv-border);
  border-top-color: var(--qv-text);
  border-radius: 50%;
  animation: qvSpin 0.6s linear infinite;
}
@keyframes qvSpin {
  to { transform: rotate(360deg); }
}

/* ── Footer: Add to Cart + View Full ── */
.qv-modal__footer {
  flex-shrink: 0;
  position: relative;
  padding: 0.75rem 1rem 1rem;
  border-top: 1px solid var(--qv-border);
  background: var(--qv-bg);
}
.qv-modal__footer-row {
  display: flex;
  gap: 0.5rem;
  align-items: stretch;
}

/* Add to Cart button */
.qv-modal__add-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.25rem;
  background: #51BD7A;
  color: #fff;
  border: none;
  border-radius: var(--radius-button);
  font-size: 0.875rem;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  white-space: nowrap;
  box-shadow: 0 2px 8px rgba(45, 138, 35, 0.25);
  transition: box-shadow 0.2s, transform 0.2s;
}
.qv-modal__add-btn:hover {
  box-shadow: 0 4px 16px rgba(45, 138, 35, 0.4);
  transform: translateY(-1px);
}
.qv-modal__add-btn.is-adding {
  pointer-events: none;
  opacity: 0.7;
}
.qv-modal__add-btn.is-added {
  background: #51BD7A;
  box-shadow: none;
}

/* View Full link */
.qv-modal__full-link {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.375rem;
  padding: 0.75rem 1rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--qv-text);
  text-decoration: none;
  border: 1.5px solid var(--qv-border);
  border-radius: var(--radius-button);
  transition: border-color 0.2s, background 0.2s;
}
.qv-modal__full-link:hover {
  border-color: var(--qv-text);
}

/* ── Responsive: single column on narrower viewports ── */
@media (max-width: 899px) {
  .qv-modal__scroll .pdp-hero__grid {
    grid-template-columns: 1fr !important;
  }
}

/* ── Hide on mobile entirely (Quick View buttons are hidden on mobile too) ── */
@media (max-width: 749px) {
  .qv-modal { display: none !important; }
}
/* END_SNIPPET:quick-view-modal */

/* START_SNIPPET:tech-specs-modal (INDEX:425) */
.tech-specs-modal {
    position: fixed;
    inset: 0;
    margin: auto;
    max-width: min(90vw, 600px);
    max-height: 80vh;
    padding: 0;
    border: none;
    border-radius: var(--radius-lg, 12px);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    overflow: hidden;
  }

  .tech-specs-modal::backdrop {
    background: rgba(0, 0, 0, 0.5);
  }

  .tech-specs-modal__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-md, 1.5rem);
    border-block-end: 1px solid var(--color-border, #e5e5e5);
  }

  .tech-specs-modal__title {
    margin: 0;
    font-size: var(--font-size-xl, 1.25rem);
  }

  .tech-specs-modal__close {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    padding: 0;
    border: none;
    background: none;
    cursor: pointer;
    border-radius: 50%;
  }

  .tech-specs-modal__close:hover {
    background: var(--color-background-secondary, #f5f5f5);
  }

  .tech-specs-modal__content {
    padding: var(--space-md, 1.5rem);
    overflow-y: auto;
    max-height: calc(80vh - 5rem);
  }

  .tech-specs-modal__list {
    margin: 0;
  }

  .tech-specs-modal__row {
    display: flex;
    justify-content: space-between;
    padding-block: 0.75rem;
    border-block-end: 1px solid var(--color-border, #e5e5e5);
  }

  .tech-specs-modal__row:last-child {
    border-block-end: none;
  }

  .tech-specs-modal__label {
    font-weight: 600;
    color: var(--color-text, #1a1a1a);
  }

  .tech-specs-modal__value {
    margin: 0;
    color: var(--color-text-secondary, #666);
    text-align: end;
  }
/* END_SNIPPET:tech-specs-modal */