/** Shopify CDN: Minification failed

Line 206:18 Expected identifier but found whitespace
Line 206:21 Unexpected "{"
Line 206:35 Expected ":"

**/
/* SHOPIFY_STYLESHEETS_VERSION: 1.0 */


/* CSS from section stylesheet tags */
/* START_SECTION:annoucement-2 (INDEX:0) */
/* ─── Config ─────────────────────────────────────────────── */
.sch {
  --sch-pad-x:         60px;
  --sch-pad-y:         56px;
  --sch-gap:           40px;
  --sch-heading-font:  var(--font-heading-family, 'Cormorant Garamond', Georgia, serif);
  --sch-body-font:     var(--font-body-family, 'Montserrat', sans-serif);
}

/* ─── Section wrapper ────────────────────────────────────── */
.sch {
  width:      100%;
  box-sizing: border-box;
  display:    flex;
  align-items: stretch;
}

/* ─── Inner grid ─────────────────────────────────────────── */
.sch__inner {
  display:               grid;
  align-items:           center;
  width:                 100%;
  max-width:             1440px;
  margin:                0 auto;
}

/* ════════════════════════════════════════════════════════════
   LEFT CONTENT COLUMN
════════════════════════════════════════════════════════════ */
.sch__left {
  padding: var(--sch-pad-y) var(--sch-gap) var(--sch-pad-y) var(--sch-pad-x);
  display: flex;
  flex-direction: column;
  gap:     20px;
  justify-content: center;
}

/* ─── Eyebrow badge ──────────────────────────────────────── */
.sch__eyebrow {
  display:         inline-flex;
  align-items:     center;
  gap:             6px;
  font-family:     var(--sch-body-font);
  font-size:       10.5px;
  font-weight:     600;
  letter-spacing:  0.12em;
  text-transform:  uppercase;
  padding:         5px 14px;
  border-radius:   20px;
  width:           fit-content;
}

/* ─── Star + rating row ──────────────────────────────────── */
.sch__rating {
  display:     flex;
  align-items: center;
  gap:         8px;
}
.sch__stars {
  display:     flex;
  align-items: center;
  gap:         1px;
  font-size:   14px;
  line-height: 1;
}
.sch__star-fill  { }
.sch__star-empty { color: #D9C4BC; }
.sch__rating-text {
  font-family:  var(--sch-body-font);
  font-size:    12.5px;
  font-weight:  500;
}

/* ─── Headline ───────────────────────────────────────────── */
.sch__heading {
  font-family:  var(--sch-heading-font);
  font-size:    clamp(28px, 3.2vw, 50px);
  line-height:  1.15;
  font-weight:  700;
  margin:       0;
  padding:      0;
}
.sch__heading-regular {
  font-weight: 700;
  font-style:  normal;
  display:     block;
}
.sch__heading-accent {
  font-weight: 300;
  font-style:  italic;
  display:     block;
}

/* ─── Sub-headline ───────────────────────────────────────── */
.sch__sub {
  font-family:  var(--sch-body-font);
  font-size:    15px;
  line-height:  1.7;
  margin:       0;
  max-width:    480px;
}
.sch__sub p { margin: 0; }

/* ─── Feature pills ──────────────────────────────────────── */
.sch__pills {
  display:   flex;
  flex-wrap: wrap;
  gap:       8px;
}
.sch__pill {
  display:         inline-flex;
  align-items:     center;
  gap:             6px;
  font-family:     var(--sch-body-font);
  font-size:       11.5px;
  font-weight:     600;
  padding:         6px 14px;
  border-radius:   20px;
  letter-spacing:  0.03em;
}
.sch__pill svg {
  width:           14px;
  height:          14px;
  stroke:          currentColor;
  fill:            none;
  stroke-width:    2;
  stroke-linecap:  round;
  stroke-linejoin: round;
  flex-shrink:     0;
}

/* ─── CTA row ────────────────────────────────────────────── */
.sch__cta-row {
  display:     flex;
  align-items: center;
  gap:         20px;
  flex-wrap:   wrap;
}
.sch__cta {
  display:         inline-flex;
  align-items:     center;
  justify-content: center;
  gap:             8px;
  padding:         16px 36px;
  font-family:     var(--sch-body-font);
  font-size:       13px;
  font-weight:     700;
  letter-spacing:  0.1em;
  text-transform:  uppercase;
  text-decoration: none;
  border:          none;
  cursor:          pointer;
  transition:      opacity 0.2s, transform 0.15s;
  white-space:     nowrap;
}
.sch__cta:hover {
  opacity:   0.88;
  transform: translateY(-1px);
}
.sch__sub-cta {
  font-family:     var(--sch-body-font);
  font-size:       13px;
  font-weight:     500;
  text-decoration: none;
  border-bottom:   1px solid currentColor;
  padding-bottom:  1px;
  white-space:     nowrap;
}
.sch__sub-cta:hover { opacity: 0.75; }

/* ─── Trust line ─────────────────────────────────────────── */
.sch__trust {
  font-family:  var(--sch-body-font);
  font-size:    11px;
  letter-spacing: 0.05em;
  margin:       0;
}

/* ════════════════════════════════════════════════════════════
   RIGHT IMAGE COLUMN
════════════════════════════════════════════════════════════ */
.sch__img-wrap {
  height:           100%;
  min-height:       inherit;
  position:         relative;
  overflow:         hidden;
}
.sch__img {
  position:         absolute;
  inset:            0;
  width:            100%;
  height:           100%;
  object-fit:       cover;
  object-position:  {{ img_position }};
  display:          block;
}

/* ─── Placeholder when no image ──────────────────────────── */
.sch__img-placeholder {
  position:        absolute;
  inset:           0;
  display:         flex;
  align-items:     center;
  justify-content: center;
}
.sch__img-placeholder svg {
  width:   80px;
  height:  80px;
  opacity: 0.3;
  stroke:  #9C5F5F;
  fill:    none;
}

/* ─── Mobile — stack ─────────────────────────────────────── */
@media (max-width: 900px) {
  .sch__inner {
    grid-template-columns: 1fr !important;
  }
  .sch__img-wrap {
    min-height: 360px;
  }
  .sch {
    min-height: unset !important;
  }
  .sch__inner {
    grid-template-rows: auto 360px;
  }
}

@media (max-width: 600px) {
  .sch {
    --sch-pad-x: 20px;
    --sch-pad-y: 36px;
    --sch-gap:   20px;
  }
  .sch__img-wrap { min-height: 280px; }
  .sch__cta-row  { flex-direction: column; align-items: flex-start; }
}
/* END_SECTION:annoucement-2 */

/* START_SECTION:announcement-bar (INDEX:1) */
.syvela-bar {
  background: #000;
  overflow: hidden;
  white-space: nowrap;
  padding: 10px 0;
}

.syvela-bar__track {
  display: inline-flex;
  animation: syvelaMarquee 32s linear infinite;
  will-change: transform;
}

.syvela-bar__track:hover {
  animation-play-state: paused;
}

.syvela-bar__inner {
  display: inline-flex;
  align-items: center;
}

.syvela-bar__item {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #fff;
  padding: 0 32px;
  white-space: nowrap;
}

.syvela-bar__dot {
  color: rgba(255, 255, 255, 0.4);
  font-size: 10px;
  flex-shrink: 0;
  line-height: 1;
}

@keyframes syvelaMarquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
/* END_SECTION:announcement-bar */

/* START_SECTION:bundle-selector (INDEX:4) */
/* ─── Config ─────────────────────────────────────────────── */
.sfpm {
  --sfpm-max-w:        1400px;
  --sfpm-pad-x:        48px;
  --sfpm-track-gap:    16px;
  --sfpm-scale-in:     1.06;
  --sfpm-scale-out:    0.93;
  --sfpm-img-ratio:    120%;   /* image box height as % of card width */
  --sfpm-heading-font: var(--font-heading-family, 'Cormorant Garamond', Georgia, serif);
  --sfpm-body-font:    var(--font-body-family, 'Montserrat', sans-serif);
}

/* ─── Section wrapper ────────────────────────────────────── */
.sfpm {
  width:           100%;
  box-sizing:      border-box;
  padding-left:    var(--sfpm-pad-x);
  padding-right:   var(--sfpm-pad-x);
}
.sfpm__inner {
  max-width: var(--sfpm-max-w);
  margin:    0 auto;
}

/* ═══════════════════════════════════════════════════════════
   HEADING
═══════════════════════════════════════════════════════════ */
.sfpm__head {
  text-align:    center;
  margin-bottom: 28px;
}
.sfpm__heading {
  font-family:  var(--sfpm-heading-font);
  font-size:    clamp(26px, 3vw, 44px);
  font-weight:  700;
  line-height:  1.15;
  margin:       0 0 12px;
  padding:      0;
}
.sfpm__heading-regular { font-weight: 700; font-style: normal; }
.sfpm__heading-accent  { font-weight: 300; font-style: italic; }
.sfpm__subtitle {
  font-family:  var(--sfpm-body-font);
  font-size:    14px;
  line-height:  1.6;
  margin:       0;
}

/* ═══════════════════════════════════════════════════════════
   FILTER TABS
═══════════════════════════════════════════════════════════ */
.sfpm__tabs {
  display:         flex;
  justify-content: center;
  align-items:     center;
  gap:             10px;
  flex-wrap:       wrap;
  margin-bottom:   44px;
}
.sfpm__tab {
  display:         inline-flex;
  align-items:     center;
  gap:             8px;
  padding:         7px 18px 7px 7px;
  border:          1.5px solid rgba(44,44,44,0.15);
  border-radius:   40px;
  background:      transparent;
  cursor:          pointer;
  font-family:     var(--sfpm-body-font);
  font-size:       13px;
  font-weight:     500;
  color:           #555555;
  white-space:     nowrap;
  transition:      background 0.2s, border-color 0.2s, color 0.2s;
  -webkit-tap-highlight-color: transparent;
}
.sfpm__tab:hover:not(.sfpm__tab--active) {
  border-color: rgba(44,44,44,0.3);
  background:   rgba(44,44,44,0.04);
}

/* Tab thumbnail circle */
.sfpm__tab-thumb {
  width:         30px;
  height:        30px;
  border-radius: 50%;
  overflow:      hidden;
  flex-shrink:   0;
  background:    #E8DDD8;
}
.sfpm__tab-thumb img {
  width:      100%;
  height:     100%;
  object-fit: cover;
  display:    block;
}
/* Placeholder circle when no image */
.sfpm__tab-thumb-ph {
  width:           100%;
  height:          100%;
  display:         flex;
  align-items:     center;
  justify-content: center;
}
.sfpm__tab-thumb-ph svg {
  width:        16px;
  height:       16px;
  stroke:       #9C5F5F;
  fill:         none;
  stroke-width: 1.5;
  opacity:      0.6;
}

/* ═══════════════════════════════════════════════════════════
   CARD TRACK
   Extra padding-y so scale-up cards don't clip
═══════════════════════════════════════════════════════════ */
.sfpm__track-wrap {
  overflow-x:      auto;
  overflow-y:      hidden;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  cursor:          grab;
  padding-top:     28px;
  padding-bottom:  28px;
  margin-top:      -28px;
  margin-bottom:   -28px;
}
.sfpm__track-wrap:active { cursor: grabbing; }
.sfpm__track-wrap::-webkit-scrollbar { display: none; }

.sfpm__track {
  display:     flex;
  align-items: center;
  gap:         var(--sfpm-track-gap);
  width:       max-content;
  padding:     28px var(--sfpm-pad-x) 28px 0; /* right breathing room */
}

/* ═══════════════════════════════════════════════════════════
   CARD
═══════════════════════════════════════════════════════════ */
.sfpm__card {
  flex-shrink:      0;
  scroll-snap-align: center;
  display:          flex;
  flex-direction:   column;
  overflow:         hidden;
  position:         relative;

  /* default: scaled down + dimmed */
  transform:   scale(var(--sfpm-scale-out));
  opacity:     0.78;
  transition:  transform 0.38s cubic-bezier(0.34, 1.3, 0.64, 1),
               opacity   0.35s ease,
               box-shadow 0.35s ease;
  will-change: transform, opacity;
}

/* Featured / centre card */
.sfpm__card--featured {
  transform:  scale(var(--sfpm-scale-in));
  opacity:    1;
  box-shadow: 0 16px 48px rgba(156,95,95,0.16);
  z-index:    2;
}

/* ─── Image box ──────────────────────────────────────────── */
.sfpm__img-box {
  position:   relative;
  width:      100%;
  padding-top: var(--sfpm-img-ratio);
  overflow:   hidden;
  background: #F5F0EE;
  flex-shrink: 0;
}
.sfpm__img {
  position:        absolute;
  inset:           0;
  width:           100%;
  height:          100%;
  object-fit:      contain;
  object-position: center;
  padding:         16px;
  box-sizing:      border-box;
  display:         block;
  transition:      transform 0.4s ease;
}
.sfpm__card--featured .sfpm__img {
  transform: scale(1.03);
}

/* Placeholder */
.sfpm__img-ph {
  position:        absolute;
  inset:           0;
  display:         flex;
  align-items:     center;
  justify-content: center;
}
.sfpm__img-ph svg {
  width:   60px;
  height:  60px;
  stroke:  #C9A8A0;
  fill:    none;
  stroke-width: 1;
  opacity: 0.6;
}

/* ─── Badge ──────────────────────────────────────────────── */
.sfpm__badge {
  position:       absolute;
  top:            12px;
  left:           12px;
  z-index:        3;
  font-family:    var(--sfpm-body-font);
  font-size:      9.5px;
  font-weight:    700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding:        4px 10px;
  border-radius:  20px;
}

/* ─── Card text area ─────────────────────────────────────── */
.sfpm__card-info {
  padding: 16px 16px 14px;
  display: flex;
  flex-direction: column;
  gap:     6px;
}
.sfpm__card-title {
  font-family:  var(--sfpm-body-font);
  font-size:    13.5px;
  font-weight:  600;
  color:        #2C2C2C;
  line-height:  1.3;
  margin:       0;
}
.sfpm__prices {
  display:     flex;
  align-items: center;
  gap:         8px;
}
.sfpm__price-original {
  font-family:     var(--sfpm-body-font);
  font-size:       13px;
  text-decoration: line-through;
}
.sfpm__price-sale {
  font-family: var(--sfpm-body-font);
  font-size:   13.5px;
  font-weight: 700;
}

/* ─── Add to cart — shown only on featured card ──────────── */
.sfpm__atc-wrap {
  padding:    0 14px 16px;
  opacity:    0;
  transform:  translateY(6px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  pointer-events: none;
}
.sfpm__card--featured .sfpm__atc-wrap {
  opacity:    1;
  transform:  translateY(0);
  pointer-events: auto;
}
.sfpm__atc {
  display:         flex;
  align-items:     center;
  justify-content: center;
  gap:             7px;
  width:           100%;
  padding:         11px 16px;
  font-family:     var(--sfpm-body-font);
  font-size:       12px;
  font-weight:     700;
  letter-spacing:  0.08em;
  text-transform:  uppercase;
  border:          none;
  cursor:          pointer;
  transition:      opacity 0.2s;
  text-decoration: none;
}
.sfpm__atc:hover { opacity: 0.85; }
.sfpm__atc svg {
  width:        14px;
  height:       14px;
  stroke:       currentColor;
  fill:         none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink:  0;
}

/* ═══════════════════════════════════════════════════════════
   MOBILE
═══════════════════════════════════════════════════════════ */
@media (max-width: 767px) {
  .sfpm {
    --sfpm-pad-x:    20px;
    --sfpm-track-gap: 12px;
    padding-top:    40px;
    padding-bottom: 40px;
  }
  .sfpm__tabs       { gap: 8px; margin-bottom: 28px; }
  .sfpm__tab        { font-size: 12px; padding: 6px 14px 6px 6px; }
  .sfpm__tab-thumb  { width: 26px; height: 26px; }

  /* On mobile all cards same scale, centred card gets mild lift */
  .sfpm__card {
    transform:  scale(1) !important;
    opacity:    1 !important;
    width:      72vw !important;
    flex:       0 0 72vw !important;
  }
  .sfpm__card--featured {
    box-shadow: 0 8px 24px rgba(156,95,95,0.14);
  }
  /* ATC always visible on mobile */
  .sfpm__atc-wrap {
    opacity:    1 !important;
    transform:  none !important;
    pointer-events: auto !important;
  }
}
/* END_SECTION:bundle-selector */

/* START_SECTION:clinical-proof (INDEX:10) */
/* ── Section wrapper ─────────────────────────────────────── */
.cp {
  background: var(--color-light-pink, #FDF0F0);
  padding: 64px 0;
}

.cp__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

/* ── LEFT — study image ──────────────────────────────────── */
.cp__image-col {
  position: relative;
}

.cp__img-wrap {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  background: var(--color-white, #fff);
  box-shadow: 0 8px 40px rgba(0,0,0,0.08);
  aspect-ratio: 4 / 3;
}

.cp__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  display: block;
}

/* Placeholder */
.cp__img-placeholder {
  width: 100%;
  height: 100%;
  background: var(--color-primary-pink, #F4C5C5);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 32px;
}

.cp__img-placeholder svg {
  width: 48px;
  height: 48px;
  stroke: var(--color-dark-pink, #C97A7A);
  fill: none;
  opacity: 0.6;
}

.cp__img-placeholder p {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  color: var(--color-dark-pink, #C97A7A);
  text-align: center;
  margin: 0;
  opacity: 0.8;
}

/* PubMed badge pinned to bottom of image */
.cp__study-badge {
  position: absolute;
  bottom: 14px;
  left: 14px;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 50px;
  padding: 6px 14px 6px 10px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  font-weight: 500;
  color: var(--color-charcoal, #141414);
  text-decoration: none;
  transition: box-shadow 0.2s ease;
}

.cp__study-badge:hover {
  box-shadow: 0 4px 16px rgba(0,0,0,0.10);
}

.cp__badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-dark-pink, #C97A7A);
  flex-shrink: 0;
}

/* ── RIGHT — proof points ────────────────────────────────── */
.cp__content-col {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* Eyebrow */
.cp__eyebrow {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-dark-pink, #C97A7A);
  margin: 0;
}

/* Headline */
.cp__headline {
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(22px, 2.5vw, 32px);
  font-weight: 500;
  line-height: 1.25;
  color: var(--color-charcoal, #141414);
  margin: 0;
}

/* Mechanism paragraph */
.cp__mechanism {
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.7;
  color: #555;
  margin: 0;
}

/* Stat callout card */
.cp__stat-card {
  background: var(--color-white, #fff);
  border: 1.5px solid var(--color-primary-pink, #F4C5C5);
  border-radius: 16px;
  padding: 20px 24px;
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.cp__stat-number {
  font-family: 'DM Sans', sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--color-dark-pink, #C97A7A);
  line-height: 1;
  flex-shrink: 0;
  padding-top: 2px;
}

.cp__stat-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: var(--color-charcoal, #141414);
  line-height: 1.55;
  margin: 0;
}

/* Divider */
.cp__divider {
  height: 1px;
  background: var(--color-primary-pink, #F4C5C5);
  border: none;
  margin: 0;
}

/* Dermatologist row */
.cp__doctors {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.cp__doc-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #999;
  margin: 0;
}

.cp__doc-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.cp__doc-chip {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: var(--color-charcoal, #141414);
  background: var(--color-white, #fff);
  border: 1.5px solid var(--color-primary-pink, #F4C5C5);
  border-radius: 50px;
  padding: 5px 14px;
  white-space: nowrap;
}

/* CTA link */
.cp__cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: var(--color-dark-pink, #C97A7A);
  text-decoration: none;
  border-bottom: 1px solid var(--color-dark-pink, #C97A7A);
  padding-bottom: 1px;
  width: fit-content;
  transition: opacity 0.18s ease;
}

.cp__cta:hover { opacity: 0.7; }

.cp__cta svg {
  width: 13px;
  height: 13px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ── Tablet ──────────────────────────────────────────────── */
@media (max-width: 989px) {
  .cp__inner {
    grid-template-columns: 1fr;
    gap: 36px;
    padding: 0 24px;
  }
  .cp {
    padding: 48px 0;
  }
}

/* ── Mobile ──────────────────────────────────────────────── */
@media (max-width: 749px) {
  .cp {
    padding: 40px 0;
  }
  .cp__inner {
    padding: 0 20px;
    gap: 28px;
  }
  .cp__img-wrap {
    aspect-ratio: 3 / 2;
  }
  .cp__stat-card {
    flex-direction: column;
    gap: 8px;
    padding: 16px 18px;
  }
  .cp__stat-number {
    font-size: 24px;
  }
  .cp__doc-chips {
    flex-direction: column;
    gap: 6px;
  }
  .cp__doc-chip {
    width: fit-content;
  }
}
/* END_SECTION:clinical-proof */

/* START_SECTION:cta-slideshow (INDEX:15) */
/* ─── Config — edit these values to customise ───────────────
   All visual changes live here. No need to touch HTML.
──────────────────────────────────────────────────────────── */
.sca {
  --sca-slide-w:      260px;    /* width of each image tile               */
  --sca-gap:          8px;      /* gap between tiles                      */
  --sca-strip-h:      560px;    /* image strip height (desktop)           */
  --sca-mob-strip-h:  300px;    /* image strip height (mobile)            */
  --sca-content-px:   60px;     /* horizontal padding inside content col  */
  --sca-heading-clr:  #2C2C2C;
  --sca-heading-size: clamp(22px, 2.2vw, 36px);
  --sca-sub-clr:      #555555;
  --sca-sub-size:     16px;
  --sca-trust-clr:    #999999;
  --sca-trust-size:   12.5px;
  --sca-heading-font: var(--font-heading-family, 'Cormorant Garamond', Georgia, serif);
  --sca-body-font:    var(--font-body-family, 'Montserrat', sans-serif);
}

/* ─── Section wrapper ────────────────────────────────────── */
.sca {
  box-sizing: border-box;
  width:      100%;
  overflow:   hidden;   /* hard-clip the auto-scrolling strip */
}

/* ─── Two-column grid ────────────────────────────────────── */
.sca__inner {
  display:               grid;
  grid-template-columns: 1fr 1fr;
  align-items:           stretch;
}

/* ─── Left: CTA content ──────────────────────────────────── */
.sca__content {
  display:         flex;
  flex-direction:  column;
  align-items:     flex-start;
  justify-content: center;
  min-height:      var(--sca-strip-h);   /* vertically centres against strip */
  padding:         48px var(--sca-content-px);
  box-sizing:      border-box;
}

/* ─── Heading ────────────────────────────────────────────── */
.sca__heading {
  font-family:  var(--sca-heading-font);
  font-size:    var(--sca-heading-size);
  font-weight:  700;
  color:        var(--sca-heading-clr);
  line-height:  1.2;
  margin:       0 0 10px;
  padding:      0;
}

/* ─── Subheading ─────────────────────────────────────────── */
.sca__sub {
  font-family:  var(--sca-body-font);
  font-size:    var(--sca-sub-size);
  font-weight:  400;
  color:        var(--sca-sub-clr);
  line-height:  1.5;
  margin:       0 0 28px;
}

/* ─── CTA button ─────────────────────────────────────────── */
.sca__btn {
  display:         block;
  width:           100%;
  max-width:       400px;
  padding:         16px 24px;
  font-family:     var(--sca-body-font);
  font-size:       12.5px;
  font-weight:     700;
  letter-spacing:  0.13em;
  text-transform:  uppercase;
  text-align:      center;
  text-decoration: none;
  border:          none;
  cursor:          pointer;
  transition:      opacity 0.2s, transform 0.15s;
  box-sizing:      border-box;
}
.sca__btn:hover {
  opacity:   0.88;
  transform: translateY(-1px);
}
.sca__btn:active {
  transform: translateY(0);
}

/* ─── Trust line ─────────────────────────────────────────── */
.sca__trust {
  font-family:  var(--sca-body-font);
  font-size:    var(--sca-trust-size);
  color:        var(--sca-trust-clr);
  margin:       14px 0 0;
  text-align:   center;
  width:        100%;
  max-width:    400px;
}

/* ─── Right: image strip ─────────────────────────────────── */
.sca__strip {
  height:   var(--sca-strip-h);   /* explicit height so children can use 100% */
  overflow: hidden;
}

/* ─── Track: all tiles in a continuous row ───────────────── */
.sca__track {
  display:     flex;
  gap:         var(--sca-gap);
  height:      100%;
  animation:   sca-scroll linear infinite;
  will-change: transform;
}

/* Pause when the user hovers over the strip */
.sca__strip:hover .sca__track {
  animation-play-state: paused;
}

/* ─── Individual tile ────────────────────────────────────── */
.sca__slide {
  flex-shrink:   0;
  width:         var(--sca-slide-w);
  height:        100%;
  overflow:      hidden;
  border-radius: 4px;
}
.sca__slide img,
.sca__slide .sca__placeholder {
  display:    block;
  width:      100%;
  height:     100%;
  object-fit: cover;
}

/* ─── Seamless scroll animation ──────────────────────────── */
/*
  Translates the track by --sca-set-width (= N slides × tile+gap).
  When the animation loops, the duplicate set snaps back to visual
  position zero — the user sees no jump.
*/
@keyframes sca-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(calc(-1 * var(--sca-set-width))); }
}

/* ─── Mobile — stack vertically ─────────────────────────── */
@media (max-width: 767px) {
  .sca__inner {
    grid-template-columns: 1fr;
  }
  .sca__content {
    min-height:  auto;
    align-items: center;
    text-align:  center;
    padding:     40px 24px 32px;
  }
  .sca__strip {
    height: var(--sca-mob-strip-h);
  }
  .sca__btn,
  .sca__trust {
    max-width: none;
  }
}
/* END_SECTION:cta-slideshow */

/* START_SECTION:faq (INDEX:18) */
/* ─── Config ─────────────────────────────────────────────── */
.sfaq {
  --sfaq-max-w:        1280px;
  --sfaq-pad-x:        48px;
  --sfaq-col-gap:      80px;
  --sfaq-left-w:       38%;
  --sfaq-heading-font: var(--font-heading-family, 'Cormorant Garamond', Georgia, serif);
  --sfaq-body-font:    var(--font-body-family, 'Montserrat', sans-serif);
}

/* ─── Outer section ──────────────────────────────────────── */
.sfaq {
  width:      100%;
  box-sizing: border-box;
  padding-left:  var(--sfaq-pad-x);
  padding-right: var(--sfaq-pad-x);
}

.sfaq__inner {
  display:     flex;
  align-items: flex-start;
  gap:         var(--sfaq-col-gap);
  max-width:   var(--sfaq-max-w);
  margin:      0 auto;
}

/* ═══════════════════════════════════════════════════════════
   LEFT COLUMN
═══════════════════════════════════════════════════════════ */
.sfaq__left {
  width:      var(--sfaq-left-w);
  flex-shrink: 0;
  position:   sticky;
  top:        100px;   /* stays in view while accordion scrolls */
}

/* ─── Heading ────────────────────────────────────────────── */
.sfaq__heading {
  font-family:  var(--sfaq-heading-font);
  font-size:    clamp(28px, 3vw, 42px);
  font-weight:  700;
  line-height:  1.15;
  margin:       0 0 18px;
  padding:      0;
}
.sfaq__heading-regular { font-weight: 700; font-style: normal; display: block; }
.sfaq__heading-accent  { font-weight: 300; font-style: italic; display: block; }

/* ─── Subtitle ───────────────────────────────────────────── */
.sfaq__subtitle {
  font-family:  var(--sfaq-body-font);
  font-size:    14.5px;
  line-height:  1.7;
  margin:       0 0 28px;
  padding:      0;
}

/* ─── CTA pill button ────────────────────────────────────── */
.sfaq__cta {
  display:         inline-flex;
  align-items:     center;
  gap:             10px;
  padding:         9px 12px 9px 18px;
  border-radius:   30px;
  font-family:     var(--sfaq-body-font);
  font-size:       13px;
  font-weight:     600;
  text-decoration: none;
  transition:      opacity 0.2s;
  -webkit-tap-highlight-color: transparent;
}
.sfaq__cta:hover { opacity: 0.82; }

.sfaq__cta-dot {
  width:        22px;
  height:       22px;
  border-radius: 50%;
  flex-shrink:  0;
}

/* ═══════════════════════════════════════════════════════════
   RIGHT COLUMN — accordion
═══════════════════════════════════════════════════════════ */
.sfaq__right {
  flex: 1;
  min-width: 0;
}

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

/* ─── Each FAQ item ──────────────────────────────────────── */
.sfaq__item {
  border-bottom: none;  /* divider handled separately */
}

/* ─── Trigger row ────────────────────────────────────────── */
.sfaq__trigger {
  display:         flex;
  align-items:     center;
  gap:             16px;
  width:           100%;
  padding:         20px 0;
  background:      none;
  border:          none;
  cursor:          pointer;
  text-align:      left;
  -webkit-tap-highlight-color: transparent;
}
.sfaq__trigger:focus-visible {
  outline:        2px solid #C9967A;
  outline-offset: 3px;
  border-radius:  4px;
}

/* ─── + icon circle ──────────────────────────────────────── */
.sfaq__icon-wrap {
  width:            28px;
  height:           28px;
  border-radius:    50%;
  border:           1.5px solid;
  display:          flex;
  align-items:      center;
  justify-content:  center;
  flex-shrink:      0;
  font-size:        18px;
  font-weight:      300;
  line-height:      1;
  font-family:      var(--sfaq-body-font);
  transition:       transform 0.32s cubic-bezier(0.4, 0, 0.2, 1),
                    border-color 0.2s ease,
                    color 0.2s ease;
}
/* + rotates 45° into × */
.sfaq__item--open .sfaq__icon-wrap {
  transform: rotate(45deg);
}

/* ─── Question text ──────────────────────────────────────── */
.sfaq__question {
  font-family:  var(--sfaq-body-font);
  font-size:    15px;
  font-weight:  400;
  line-height:  1.45;
  flex:         1;
}

/* ─── Divider ────────────────────────────────────────────── */
.sfaq__divider {
  height: 1px;
  width:  100%;
  margin: 0;
}

/* ─── Collapsible answer body ────────────────────────────── */
.sfaq__body {
  overflow:   hidden;
  height:     0;
  transition: height 0.32s cubic-bezier(0.4, 0, 0.2, 1);
}

.sfaq__body-inner {
  padding:      0 0 22px 44px;   /* indent to align with question text */
  font-family:  var(--sfaq-body-font);
  font-size:    14px;
  line-height:  1.75;
}

/* ─── Mobile — stack columns ─────────────────────────────── */
@media (max-width: 860px) {
  .sfaq {
    --sfaq-pad-x:  20px;
    --sfaq-col-gap: 0;
    padding-top:    48px;
    padding-bottom: 48px;
  }
  .sfaq__inner {
    flex-direction: column;
    gap:            36px;
  }
  .sfaq__left {
    width:    100%;
    position: static;
  }
  .sfaq__body-inner {
    padding-left: 44px;
  }
}
/* END_SECTION:faq */

/* START_SECTION:header2 (INDEX:24) */
/* ═══════════════════════════════════════════════════════════
   HEADER SHELL
═══════════════════════════════════════════════════════════ */
.shdr {
  position:      sticky;
  top:           0;
  z-index:       1000;
  background:    var(--shdr-bg);
  border-bottom: 1px solid var(--shdr-border);
  transition:    background 0.3s ease, border-color 0.3s ease,
                 box-shadow 0.3s ease, color 0.3s ease;
  width:         100%;
  box-sizing:    border-box;
  font-family:   var(--font-body-family, 'Montserrat', sans-serif);
}

.shdr--scrolled {
  box-shadow:      0 2px 24px rgba(0,0,0,0.07);
  border-bottom-color: var(--shdr-border) !important;
}

/* ─── Main bar ───────────────────────────────────────────── */
.shdr__bar {
  height:  var(--shdr-height);
  display: flex;
  align-items: center;
}

.shdr__inner {
  display:               grid;
  grid-template-columns: 1fr auto 1fr;
  align-items:           center;
  width:                 100%;
  max-width:             var(--shdr-max-w);
  margin:                0 auto;
  padding:               0 var(--shdr-pad-x);
  gap:                   24px;
}

/* ═══════════════════════════════════════════════════════════
   LEFT — hamburger + logo
═══════════════════════════════════════════════════════════ */
.shdr__left {
  display:     flex;
  align-items: center;
  gap:         12px;
}

/* ─── Logo ───────────────────────────────────────────────── */
.shdr__logo {
  text-decoration: none;
  display:         flex;
  align-items:     baseline;
  gap:             0;
  flex-shrink:     0;
}
.shdr__logo img {
  display:    block;
  height:     auto;
  max-height: calc(var(--shdr-height) * 0.55);
  width:      auto;
}
.shdr__logo-text {
  font-family:  var(--font-heading-family, 'Cormorant Garamond', Georgia, serif);
  font-size:    26px;
  font-weight:  600;
  letter-spacing: 0.02em;
  color:        var(--shdr-text);
  transition:   color 0.3s;
  line-height:  1;
}
.shdr__logo-accent {
  font-family:  var(--font-heading-family, 'Cormorant Garamond', Georgia, serif);
  font-size:    26px;
  font-weight:  300;
  font-style:   italic;
  color:        var(--shdr-accent);
  line-height:  1;
  margin-left:  4px;
}

/* ═══════════════════════════════════════════════════════════
   CENTER — desktop nav
═══════════════════════════════════════════════════════════ */
.shdr__nav-list {
  display:     flex;
  align-items: center;
  gap:         8px;
  list-style:  none;
  margin:      0;
  padding:     0;
}
.shdr__nav-link {
  display:         block;
  padding:         8px 12px;
  font-size:       13px;
  font-weight:     500;
  letter-spacing:  0.04em;
  color:           var(--shdr-text);
  text-decoration: none;
  white-space:     nowrap;
  position:        relative;
  transition:      color 0.2s;
}
.shdr__nav-link::after {
  content:    '';
  position:   absolute;
  bottom:     4px;
  left:       12px;
  right:      12px;
  height:     1.5px;
  background: var(--shdr-accent);
  transform:  scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}
.shdr__nav-link:hover,
.shdr__nav-link--active {
  color: var(--shdr-accent);
}
.shdr__nav-link:hover::after,
.shdr__nav-link--active::after {
  transform: scaleX(1);
}

/* ═══════════════════════════════════════════════════════════
   RIGHT — icons
═══════════════════════════════════════════════════════════ */
.shdr__right {
  display:         flex;
  align-items:     center;
  justify-content: flex-end;
  gap:             4px;
}

/* ─── Icon buttons ───────────────────────────────────────── */
.shdr__icon-btn {
  position:        relative;
  width:           40px;
  height:          40px;
  display:         flex;
  align-items:     center;
  justify-content: center;
  color:           var(--shdr-text);
  text-decoration: none;
  border-radius:   50%;
  transition:      background 0.2s, color 0.2s;
  -webkit-tap-highlight-color: transparent;
  flex-shrink:     0;
}
.shdr__icon-btn:hover {
  background: rgba(156,95,95,0.08);
  color:      var(--shdr-accent);
}
.shdr__icon-btn svg {
  width:           20px;
  height:          20px;
  stroke:          currentColor;
  fill:            none;
  stroke-width:    1.6;
  stroke-linecap:  round;
  stroke-linejoin: round;
  display:         block;
}

/* ─── Cart badge ─────────────────────────────────────────── */
.shdr__cart-badge {
  position:        absolute;
  top:             3px;
  right:           3px;
  min-width:       16px;
  height:          16px;
  border-radius:   8px;
  background:      var(--shdr-badge-bg);
  color:           var(--shdr-badge-text);
  font-size:       9px;
  font-weight:     700;
  display:         flex;
  align-items:     center;
  justify-content: center;
  padding:         0 3px;
  line-height:     1;
  pointer-events:  none;
}
.shdr__cart-badge--hidden { display: none; }

/* ─── Divider between nav-side and cart ─────────────────── */
.shdr__icon-divider {
  width:        1px;
  height:       20px;
  background:   var(--shdr-border);
  flex-shrink:  0;
  margin:       0 6px;
}

/* ═══════════════════════════════════════════════════════════
   HAMBURGER BUTTON (mobile only)
═══════════════════════════════════════════════════════════ */
.shdr__hamburger {
  display:         none;
  flex-direction:  column;
  justify-content: center;
  gap:             5px;
  width:           40px;
  height:          40px;
  padding:         10px 9px;
  background:      none;
  border:          none;
  cursor:          pointer;
  flex-shrink:     0;
  -webkit-tap-highlight-color: transparent;
  box-sizing:      border-box;
}
.shdr__hamburger-line {
  display:    block;
  width:      100%;
  height:     1.5px;
  background: var(--shdr-text);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
  transform-origin: center;
}
/* Animate to X when open */
.shdr--open .shdr__hamburger-line:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}
.shdr--open .shdr__hamburger-line:nth-child(2) {
  opacity:   0;
  transform: scaleX(0);
}
.shdr--open .shdr__hamburger-line:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

/* ═══════════════════════════════════════════════════════════
   MOBILE SLIDE-DOWN MENU
═══════════════════════════════════════════════════════════ */
.shdr__mobile-menu {
  overflow:       hidden;
  max-height:     0;
  background:     var(--shdr-bg);
  border-top:     1px solid transparent;
  transition:     max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1),
                  border-color 0.35s ease;
}
.shdr--open .shdr__mobile-menu {
  max-height:   80vh;
  border-top-color: var(--shdr-border);
  overflow-y:   auto;
}

.shdr__mobile-inner {
  padding:  16px var(--shdr-pad-x) 28px;
}

.shdr__mobile-nav {
  list-style: none;
  margin:     0 0 20px;
  padding:    0;
}
.shdr__mobile-nav li {
  border-bottom: 1px solid var(--shdr-border);
}
.shdr__mobile-nav a {
  display:         block;
  padding:         14px 0;
  font-size:       15px;
  font-weight:     500;
  color:           var(--shdr-text);
  text-decoration: none;
  letter-spacing:  0.03em;
}
.shdr__mobile-nav a:hover {
  color: var(--shdr-accent);
}

/* Secondary links (search/account) at bottom of mobile menu */
.shdr__mobile-actions {
  display: flex;
  gap:     24px;
  padding-top: 4px;
}
.shdr__mobile-actions a {
  display:         flex;
  align-items:     center;
  gap:             8px;
  font-size:       13px;
  font-weight:     500;
  color:           var(--shdr-text);
  text-decoration: none;
  opacity:         0.7;
}
.shdr__mobile-actions a:hover { opacity: 1; }
.shdr__mobile-actions svg {
  width:           16px;
  height:          16px;
  stroke:          currentColor;
  fill:            none;
  stroke-width:    1.6;
  stroke-linecap:  round;
  stroke-linejoin: round;
}

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════════════════ */
@media (max-width: 900px) {
  .shdr__inner {
    grid-template-columns: auto 1fr auto;
    gap: 0;
  }
  /* Center column: logo */
  .shdr__left {
    order: 2;
    justify-content: center;
  }
  /* Hamburger goes to first col */
  .shdr__hamburger {
    display:  flex;
    order:    1;
  }
  /* Icons go last — hide search & account, keep cart */
  .shdr__right {
    order: 3;
  }
  /* Hide desktop nav */
  .shdr__nav-list { display: none; }
  /* On mobile hide search/account icons from top bar */
  .shdr__icon-btn--search,
  .shdr__icon-btn--account,
  .shdr__icon-divider { display: none; }
}

@media (max-width: 600px) {
  .shdr {
    --shdr-pad-x: 16px;
    --shdr-height: 56px;
  }
}
/* END_SECTION:header2 */

/* START_SECTION:how-it-works (INDEX:25) */
/* ── Section wrapper ─────────────────────────────────────── */
.hiw {
  background: var(--color-white, #fff);
  padding: 60px 0 70px;
}

.hiw__inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 40px;
}

/* ── Heading ─────────────────────────────────────────────── */
.hiw__heading {
  font-family: 'DM Sans', sans-serif;
  font-size: 32px;
  font-weight: 400;
  color: var(--color-charcoal, #141414);
  margin: 0 0 28px 0;
  line-height: 1.2;
}

.hiw__heading-accent {
  font-weight: 400;
  color: var(--color-dark-pink, #C97A7A);
}

/* ── Card strip ──────────────────────────────────────────── */
.hiw__strip {
  display: flex;
  gap: 8px;
  height: 380px;
  overflow: hidden;
  border-radius: 18px;
}

/* ── Individual card ─────────────────────────────────────── */
.hiw__card {
  position: relative;
  flex: 1 1 0%;
  min-width: 0;
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  transition: flex 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  flex-grow: 1;
}

/* Default: first card expanded when nothing is hovered */
.hiw__strip:not(:hover) .hiw__card:first-child {
  flex-grow: 3.2;
}

/* Hovered card expands */
.hiw__card:hover {
  flex-grow: 3.2;
}

/* ── Background image ────────────────────────────────────── */
.hiw__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.5s ease;
}

.hiw__card:hover .hiw__img {
  transform: scale(1.03);
}

/* ── Dark gradient overlay (top for text legibility) ─────── */
.hiw__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.52) 0%,
    rgba(0, 0, 0, 0.18) 45%,
    rgba(0, 0, 0, 0) 70%
  );
  pointer-events: none;
}

/* ── Card text ───────────────────────────────────────────── */
.hiw__text {
  position: absolute;
  top: 20px;
  left: 20px;
  right: 12px;
  color: #fff;
  z-index: 1;
}

.hiw__step-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.3;
  margin: 0 0 8px 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: white-space 0.3s ease;
}

/* Show full label on expanded card */
.hiw__card:hover .hiw__step-label,
.hiw__strip:not(:hover) .hiw__card:first-child .hiw__step-label {
  white-space: normal;
  overflow: visible;
  text-overflow: unset;
}

.hiw__body {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.6;
  margin: 0;
  max-width: 260px;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.3s ease 0.15s, transform 0.3s ease 0.15s;
}

/* Body text fades in on expanded card */
.hiw__card:hover .hiw__body,
.hiw__strip:not(:hover) .hiw__card:first-child .hiw__body {
  opacity: 1;
  transform: translateY(0);
}

/* ── Placeholder (no image uploaded) ────────────────────── */
.hiw__placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-primary-pink, #F4C5C5);
}

.hiw__placeholder svg {
  width: 48px;
  height: 48px;
  opacity: 0.3;
  stroke: var(--color-dark-pink, #C97A7A);
  fill: none;
}

/* ── Mobile: horizontal swipe carousel with peek ─────────── */
@media (max-width: 749px) {
  .hiw {
    padding: 44px 0 52px;
  }

  .hiw__inner {
    padding: 0 20px;
  }

  .hiw__heading {
    font-size: 26px;
    margin-bottom: 20px;
  }

  .hiw__strip {
    height: 460px !important;
    gap: 12px !important;
    border-radius: 0 !important;
    overflow-x: auto !important;
    overflow-y: hidden !important;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    margin-left: -20px;
    margin-right: -20px;
    padding-left: 20px;
    padding-right: 20px;
    scrollbar-width: none;
  }
  .hiw__strip::-webkit-scrollbar {
    display: none;
  }

  /*
    THE KEY FIX: desktop uses flex: 1 1 0% which sets flex-basis to 0%.
    With flex-grow: 0, cards collapse to 0 width and disappear.
    Must override the ENTIRE flex shorthand to set flex-basis to 76vw.
  */
  .hiw__card,
  .hiw__card:hover,
  .hiw__strip:not(:hover) .hiw__card:first-child {
    flex: 0 0 76vw !important;
    width: 76vw !important;
    min-width: 76vw !important;
    height: 460px !important;
    scroll-snap-align: start;
    transition: none !important;
  }

  .hiw__body {
    opacity: 1 !important;
    transform: translateY(0) !important;
    transition: none !important;
  }

  .hiw__step-label {
    white-space: normal !important;
    overflow: visible !important;
    text-overflow: unset !important;
  }
}

/* ── Tablet: 2.5 default ─────────────────────────────────── */
@media (min-width: 750px) and (max-width: 989px) {
  .hiw__inner {
    padding: 0 24px;
  }

  .hiw__strip {
    height: 320px;
  }
}
/* END_SECTION:how-it-works */

/* START_SECTION:how-to-use (INDEX:26) */
/* ─── Config ─────────────────────────────────────────────── */
.shtu {
  --shtu-max-w:       1280px;
  --shtu-pad-x:       40px;
  --shtu-card-gap:    24px;
  --shtu-img-ratio:   75%;   /* image box height as % of card width   */
  --shtu-num-size:    clamp(52px, 5vw, 72px);
  --shtu-heading-font: var(--font-heading-family, 'Cormorant Garamond', Georgia, serif);
  --shtu-body-font:    var(--font-body-family, 'Montserrat', sans-serif);
}

/* ─── Section wrapper ────────────────────────────────────── */
.shtu {
  width:      100%;
  box-sizing: border-box;
  padding-left:  var(--shtu-pad-x);
  padding-right: var(--shtu-pad-x);
}
.shtu__inner {
  max-width: var(--shtu-max-w);
  margin:    0 auto;
}

/* ═══════════════════════════════════════════════════════════
   HEADING BLOCK
═══════════════════════════════════════════════════════════ */
.shtu__head {
  text-align:    center;
  margin-bottom: 56px;
}
.shtu__eyebrow {
  font-family:    var(--shtu-body-font);
  font-size:      11px;
  font-weight:    600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin:         0 0 14px;
  display:        block;
}
.shtu__heading {
  font-family:  var(--shtu-heading-font);
  font-size:    clamp(28px, 3.5vw, 48px);
  font-weight:  700;
  line-height:  1.15;
  margin:       0 0 14px;
  padding:      0;
}
.shtu__heading-regular {
  font-weight: 700;
  font-style:  normal;
}
.shtu__heading-accent {
  font-weight: 300;
  font-style:  italic;
}
.shtu__subtitle {
  font-family:  var(--shtu-body-font);
  font-size:    15px;
  line-height:  1.65;
  margin:       0;
  max-width:    520px;
  margin-left:  auto;
  margin-right: auto;
}

/* ═══════════════════════════════════════════════════════════
   CARDS TRACK — desktop: flex row, mobile: horizontal scroll
═══════════════════════════════════════════════════════════ */
.shtu__track-wrap {
  position: relative;
}

/* The decorative dashed connecting line runs horizontally
   through the centre of the step-number row.
   It sits behind all cards via z-index. */
.shtu__line {
  display:     none; /* activated by JS once cards render */
  position:    absolute;
  top:         var(--shtu-line-top, 36px);   /* set by JS */
  left:        0;
  right:       0;
  height:      1px;
  border-top:  1.5px dashed var(--shtu-line-color, #D4B0A8);
  pointer-events: none;
  z-index:     0;
}

.shtu__track {
  display:     flex;
  align-items: flex-start;
  gap:         var(--shtu-card-gap);
  position:    relative;
  z-index:     1;
}

/* ─── Connector arrow between cards ─────────────────────── */
.shtu__connector {
  flex:        0 0 auto;
  align-self:  flex-start;
  margin-top:  calc(var(--shtu-num-size) * 0.3);
  display:     flex;
  align-items: center;
}
.shtu__connector svg {
  width:  28px;
  height: 28px;
  fill:   none;
  stroke-width:    1.5;
  stroke-linecap:  round;
  stroke-linejoin: round;
}

/* ═══════════════════════════════════════════════════════════
   CARD
═══════════════════════════════════════════════════════════ */
.shtu__card {
  flex:           1 1 0;
  min-width:      0;
  display:        flex;
  flex-direction: column;
  overflow:       hidden;
  position:       relative;

  /* ── scroll-entry animation state ── */
  opacity:          0;
  transform:        translateY(44px);
  transition:       opacity  0.65s ease,
                    transform 0.65s ease,
                    box-shadow 0.25s ease;
  transition-delay: calc(var(--ci, 0) * 0.15s);
  will-change:      opacity, transform;

  /* subtle lift on hover */
}
.shtu__card:hover {
  box-shadow: 0 8px 32px rgba(156,95,95,0.12);
  transform:  translateY(-4px) !important; /* override when already visible */
}

/* ── Visible state (added by IntersectionObserver) ── */
.shtu__card--in {
  opacity:   1;
  transform: translateY(0);
}
/* keep hover working after in-animation */
.shtu__card--in:hover {
  transform: translateY(-4px);
}

/* ─── Image box ──────────────────────────────────────────── */
.shtu__img-box {
  position:   relative;
  width:      100%;
  padding-top: var(--shtu-img-ratio);
  overflow:   hidden;
  flex-shrink: 0;
}
.shtu__img {
  position:        absolute;
  inset:           0;
  width:           100%;
  height:          100%;
  object-fit:      cover;
  object-position: center;
  display:         block;
  transition:      transform 0.5s ease;
}
.shtu__card:hover .shtu__img {
  transform: scale(1.04);
}

/* Placeholder icon when no image */
.shtu__img-placeholder {
  position:        absolute;
  inset:           0;
  display:         flex;
  align-items:     center;
  justify-content: center;
}
.shtu__img-placeholder svg {
  width:   48px;
  height:  48px;
  stroke:  #9C5F5F;
  opacity: 0.35;
  fill:    none;
  stroke-width: 1.2;
}

/* ─── Card body ──────────────────────────────────────────── */
.shtu__card-content {
  padding: 22px 24px 26px;
  display: flex;
  flex-direction: column;
  gap:     10px;
  flex:    1;
}

/* ─── Large decorative step number ──────────────────────── */
.shtu__num {
  font-family:  var(--shtu-heading-font);
  font-size:    var(--shtu-num-size);
  font-weight:  300;
  line-height:  1;
  margin:       0 0 4px;
  display:      block;
  /* number slides up independently, slight extra delay */
  transition:   color 0.2s;
}

/* ─── Title ──────────────────────────────────────────────── */
.shtu__card-title {
  font-family:  var(--shtu-body-font);
  font-size:    15px;
  font-weight:  700;
  line-height:  1.3;
  margin:       0;
  letter-spacing: 0.02em;
}

/* ─── Body ───────────────────────────────────────────────── */
.shtu__card-body {
  font-family:  var(--shtu-body-font);
  font-size:    13.5px;
  line-height:  1.7;
  margin:       0;
  flex:         1;
}

/* ─── Footnote line ──────────────────────────────────────── */
.shtu__footnote {
  font-family:    var(--shtu-body-font);
  font-size:      11px;
  letter-spacing: 0.05em;
  text-align:     center;
  margin:         48px 0 0;
}

/* ═══════════════════════════════════════════════════════════
   MOBILE — horizontal scroll track
═══════════════════════════════════════════════════════════ */
@media (max-width: 767px) {
  .shtu {
    --shtu-pad-x: 0px;
    padding-top:    48px;
    padding-bottom: 48px;
  }
  .shtu__head {
    margin-bottom: 36px;
    padding:       0 20px;
  }
  .shtu__track-wrap {
    padding: 0 20px 16px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    cursor: grab;
  }
  .shtu__track-wrap::-webkit-scrollbar { display: none; }
  .shtu__track {
    width:    max-content;
    gap:      16px;
    padding-right: 20px;
  }
  .shtu__card {
    width:     72vw;
    max-width: 300px;
    scroll-snap-align: start;
    flex:      0 0 auto;
  }
  .shtu__connector { display: none; }
  .shtu__footnote  { padding: 0 20px; }

  /* On mobile animate cards in immediately (no scroll trigger) */
  .shtu__card {
    opacity:          1;
    transform:        translateY(0);
    transition-delay: 0s;
  }
}

/* Scroll hint fade mask on right edge */
@media (max-width: 767px) {
  .shtu__track-wrap::after {
    content:  '';
    position: sticky;
    right:    0;
    top:      0;
    width:    40px;
    height:   100%;
    flex-shrink: 0;
    background: linear-gradient(to right, transparent, var(--shtu-bg, #FAF7F5));
    pointer-events: none;
  }
}
/* END_SECTION:how-to-use */

/* START_SECTION:syvela-before-after (INDEX:59) */
/* ── Section wrapper ───────────────────────────────────────── */
.sba {
  background: var(--sba-bg);
  padding:    var(--sba-pad-y) 0;
}
.sba__inner {
  max-width:  var(--sba-max-w);
  margin:     0 auto;
  padding:    0 var(--sba-pad-x);
}

/* ── Header ────────────────────────────────────────────────── */
.sba__header {
  text-align:    center;
  margin-bottom: 28px;
}
.sba__heading {
  font-family: 'DM Sans', sans-serif;
  font-size:   clamp(26px, 4vw, 40px);
  font-weight: 500;
  line-height: 1.2;
  color:       var(--sba-heading-clr);
  margin:      0 0 12px;
}
.sba__heading-regular { font-style: normal; }
.sba__heading-accent  {
  font-style: normal;
  color:      var(--sba-accent-clr);
}
.sba__sub {
  font-family: 'DM Sans', sans-serif;
  font-size:   15px;
  font-weight: 400;
  color:       var(--sba-sub-clr);
  margin:      0;
  line-height: 1.5;
}

/* ── Filter tabs ───────────────────────────────────────────── */
.sba__filters {
  display:         flex;
  flex-wrap:       wrap;
  justify-content: center;
  gap:             8px;
  margin-bottom:   32px;
}
.sba__filter {
  font-family:     'DM Sans', sans-serif;
  font-size:       13px;
  font-weight:     500;
  padding:         8px 20px;
  border-radius:   100px;
  border:          1.5px solid var(--sba-filter-border);
  background:      var(--sba-filter-bg);
  color:           var(--sba-filter-txt);
  cursor:          pointer;
  transition:      background 0.2s, color 0.2s, border-color 0.2s;
  white-space:     nowrap;
}
.sba__filter:hover {
  border-color: var(--sba-filter-act-bg);
  color:        var(--sba-filter-act-bg);
}
.sba__filter--active {
  background:   var(--sba-filter-act-bg);
  color:        var(--sba-filter-act-txt);
  border-color: var(--sba-filter-act-bg);
}

/* ── Slider ────────────────────────────────────────────────── */
.sba__track-wrap {
  overflow: hidden;
}
.sba__track {
  display:    flex;
  gap:        var(--sba-gap);
  transition: transform 0.42s cubic-bezier(0.4, 0, 0.2, 1);
  position:   relative;
}

/* ── Before/After card ─────────────────────────────────────── */
.sba__card {
  flex-shrink: 0;
  width: calc(
    (min(100vw, var(--sba-max-w)) - 2 * var(--sba-pad-x) - 2 * var(--sba-gap))
    / 3
  );
}

/* ── Before/After pair ─────────────────────────────────────── */
.sba__pair {
  display:               grid;
  grid-template-columns: 1fr 1fr;
  gap:                   3px;
  border-radius:         var(--sba-card-radius);
  overflow:              hidden;
  background:            var(--color-medium-pink, #EC8B97);
}
.sba__side {
  position:     relative;
  aspect-ratio: var(--sba-img-ratio);
  overflow:     hidden;
  background:   var(--color-light-pink, #FDF0F0);
}
.sba__img {
  width:      100%;
  height:     100%;
  object-fit: cover;
  display:    block;
}

/* Placeholder when no image uploaded */
.sba__img-ph {
  width:           100%;
  height:          100%;
  display:         flex;
  align-items:     center;
  justify-content: center;
  background:      var(--color-light-pink, #FDF0F0);
}
.sba__img-ph svg {
  width:   40%;
  height:  40%;
  opacity: 0.2;
}

/* ── Before / After labels ─────────────────────────────────── */
.sba__label {
  position:       absolute;
  top:            10px;
  left:           10px;
  padding:        3px 11px;
  border-radius:  100px;
  font-family:    'DM Sans', sans-serif;
  font-size:      11px;
  font-weight:    600;
  letter-spacing: 0.04em;
  z-index:        1;
  white-space:    nowrap;
}
.sba__label--before {
  background: var(--sba-before-bg);
  color:      var(--sba-before-txt);
}
.sba__label--after {
  background: var(--sba-after-bg);
  color:      var(--sba-after-txt);
}

/* ── Optional week label below card ───────────────────────── */
.sba__week {
  font-family:    'DM Sans', sans-serif;
  font-size:      11.5px;
  font-weight:    600;
  color:          var(--sba-week-clr);
  text-align:     center;
  margin:         10px 0 0;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* ── Navigation row ────────────────────────────────────────── */
.sba__nav {
  display:         flex;
  align-items:     center;
  justify-content: space-between;
  margin-top:      24px;
  position:        relative;
  min-height:      44px;
}

/* Arrow buttons */
.sba__arrow {
  width:           44px;
  height:          44px;
  border-radius:   50%;
  border:          1.5px solid var(--sba-nav-clr);
  background:      transparent;
  display:         flex;
  align-items:     center;
  justify-content: center;
  cursor:          pointer;
  transition:      background 0.2s, opacity 0.2s;
  flex-shrink:     0;
}
.sba__arrow svg {
  width:            16px;
  height:           16px;
  stroke:           var(--sba-nav-clr);
  fill:             none;
  stroke-width:     2;
  stroke-linecap:   round;
  stroke-linejoin:  round;
}
.sba__arrow:hover:not(:disabled) {
  background: var(--sba-nav-clr);
}
.sba__arrow:hover:not(:disabled) svg {
  stroke: #fff;
}
.sba__arrow:disabled {
  opacity: 0.25;
  cursor:  default;
}

/* Dot indicators */
.sba__dots {
  position:    absolute;
  left:        50%;
  transform:   translateX(-50%);
  display:     flex;
  gap:         8px;
  align-items: center;
}
.sba__dot {
  width:         9px;
  height:        9px;
  border-radius: 50%;
  border:        none;
  background:    var(--sba-dot-inactive);
  cursor:        pointer;
  padding:       0;
  transition:    background 0.2s, transform 0.2s;
}
.sba__dot--active {
  background: var(--sba-dot-active);
  transform:  scale(1.25);
}

/* ── Responsive card widths ────────────────────────────────── */
@media (max-width: 900px) {
  .sba__card {
    width: calc(
      (min(100vw, var(--sba-max-w)) - 2 * var(--sba-pad-x) - 1 * var(--sba-gap))
      / 2
    );
  }
}
@media (max-width: 560px) {
  .sba__card {
    width: calc(min(100vw, var(--sba-max-w)) - 2 * var(--sba-pad-x));
  }
  .sba__filter { font-size: 12px; padding: 7px 14px; }
}
/* END_SECTION:syvela-before-after */

/* START_SECTION:syvela-hero (INDEX:60) */
/* ── Section ─────────────────────────────────────────────── */
.syv-hero {
  position:       relative;
  width:          100%;
  min-height:     100svh;
  display:        flex;
  align-items:    center;
  justify-content: center;
  overflow:       hidden;
  /* Pull section up under the transparent header */
  margin-top:     calc(-1 * var(--header-height, 80px));
}

/* ── Image layer ─────────────────────────────────────────── */
.syv-hero__img-wrap {
  position: absolute;
  inset:    -20% 0;    /* extra height for parallax travel */
  z-index:  0;
  will-change: transform;
}

.syv-hero__img {
  width:      100%;
  height:     100%;
  object-fit: cover;
  object-position: center;
  display:    block;
  /* Ken Burns: slow zoom 1.0 → 1.08, loops */
  animation:  syvHeroZoom 22s ease-in-out infinite alternate;
  will-change: transform;
}

@keyframes syvHeroZoom {
  0%   { transform: scale(1.0); }
  100% { transform: scale(1.08); }
}

/* ── Overlay ─────────────────────────────────────────────── */
.syv-hero__overlay {
  position: absolute;
  inset:    0;
  z-index:  1;
  pointer-events: none;
}

/* ── Content ─────────────────────────────────────────────── */
.syv-hero__content {
  position:      relative;
  z-index:       2;
  text-align:    center;
  padding:       0 24px;
  max-width:     780px;
  margin:        0 auto;
  /* Offset slightly below centre to match KokoWax */
  margin-top:    8vh;
}

/* ── Headline ────────────────────────────────────────────── */
.syv-hero__headline {
  font-family:  'DM Sans', sans-serif;
  font-size:    clamp(36px, 5.5vw, 62px);
  font-weight:  500;
  line-height:  1.1;
  color:        #fff;
  margin:       0 0 16px;
  /* Fade-up entrance */
  opacity:      0;
  transform:    translateY(22px);
  animation:    syvFadeUp 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.2s forwards;
}

/* ── Subtext ─────────────────────────────────────────────── */
.syv-hero__sub {
  font-family:  'DM Sans', sans-serif;
  font-size:    clamp(14px, 1.5vw, 17px);
  font-weight:  400;
  color:        rgba(255, 255, 255, 0.9);
  margin:       0 0 32px;
  line-height:  1.5;
  opacity:      0;
  transform:    translateY(22px);
  animation:    syvFadeUp 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.4s forwards;
}

/* ── CTA Button ──────────────────────────────────────────── */
.syv-hero__cta {
  display:         inline-flex;
  align-items:     center;
  gap:             10px;
  font-family:     'DM Sans', sans-serif;
  font-size:       15px;
  font-weight:     500;
  color:           #fff;
  background:      var(--color-dark-pink, #C97A7A);
  border-radius:   50px;
  padding:         14px 32px;
  text-decoration: none;
  border:          none;
  cursor:          pointer;
  letter-spacing:  0.02em;
  transition:      opacity 0.2s ease, transform 0.2s ease;
  opacity:         0;
  transform:       translateY(22px);
  animation:       syvFadeUp 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.6s forwards;
}

.syv-hero__cta:hover {
  opacity:   0.88;
  transform: translateY(-2px);
}

.syv-hero__cta svg {
  width:  16px;
  height: 16px;
  stroke: #fff;
  fill:   none;
  stroke-width: 2.5;
  stroke-linecap:  round;
  stroke-linejoin: round;
  flex-shrink: 0;
}

/* ── Entrance keyframes ──────────────────────────────────── */
@keyframes syvFadeUp {
  to {
    opacity:   1;
    transform: translateY(0);
  }
}

/* ── Placeholder (no image) ──────────────────────────────── */
.syv-hero__placeholder {
  position:        absolute;
  inset:           0;
  background:      var(--color-primary-pink, #F4C5C5);
  display:         flex;
  align-items:     center;
  justify-content: center;
}

/* ── Mobile ──────────────────────────────────────────────── */
@media (max-width: 749px) {
  .syv-hero {
    min-height: 90svh;
    align-items: center;
  }
  .syv-hero__content {
    margin-top: 4vh;
    padding: 0 20px;
  }
  .syv-hero__cta {
    font-size: 14px;
    padding: 13px 26px;
  }
}
/* END_SECTION:syvela-hero */

/* START_SECTION:tiktok (INDEX:61) */
/* ─── Wrapper ─────────────────────────────────────────────── */
.stw {
  background: var(--stw-bg);
  padding: var(--stw-pad-y) 0;
}
.stw__inner {
  max-width: var(--stw-max-w);
  margin: 0 auto;
  padding: 0 var(--stw-pad-x);
}

/* ─── Badge pill ──────────────────────────────────────────── */
.stw__header {
  margin-bottom: 18px;
}
.stw__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--stw-badge-bg);
  border: 1.5px solid var(--stw-badge-border);
  border-radius: 100px;
  padding: 6px 16px 6px 10px;
  font-family: var(--font-body-family, 'Montserrat', sans-serif);
  font-size: 13px;
  color: var(--stw-badge-text);
  white-space: nowrap;
  user-select: none;
}
.stw__badge-icon {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
}
.stw__badge-views {
  font-weight: 700;
  color: var(--stw-badge-accent);
}
.stw__badge-label {
  font-weight: 400;
  font-style: italic;
}

/* ─── Scroll track ────────────────────────────────────────── */
.stw__track-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  /* Extend overflow beyond inner padding so cards go edge-to-edge */
  margin-left:  calc(-1 * var(--stw-pad-x));
  margin-right: calc(-1 * var(--stw-pad-x));
  padding-left:  var(--stw-pad-x);
  padding-right: var(--stw-pad-x);
}
.stw__track-wrap::-webkit-scrollbar { display: none; }

.stw__track {
  display: flex;
  gap: var(--stw-gap);
  width: max-content;
}

/* ─── Video card ──────────────────────────────────────────── */
.stw__card {
  position: relative;
  flex-shrink: 0;
  /* Width = (visible area minus all gaps) / number of cards */
  width: calc(
    (min(100vw, var(--stw-max-w)) - 2 * var(--stw-pad-x) - (var(--stw-card-count) - 1) * var(--stw-gap))
    / var(--stw-card-count)
  );
  aspect-ratio: 9 / 16;
  border-radius: var(--stw-radius);
  overflow: hidden;
  cursor: pointer;
  background: #1a1a1a;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.stw__card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(0,0,0,0.18);
}

/* Thumbnail image */
.stw__card > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  pointer-events: none;
}

/* TikTok embed iframe (shown after click) */
.stw__card iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* Placeholder SVG */
.stw__card .stw__placeholder {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  opacity: 0.3;
}

/* ─── Card overlays ───────────────────────────────────────── */
/* Bottom gradient */
.stw__card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.42) 0%, transparent 45%);
  pointer-events: none;
  transition: opacity 0.25s;
}

/* TikTok logo watermark — top right */
.stw__card-logo {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 20px;
  height: 20px;
  opacity: 0.9;
  pointer-events: none;
  filter: drop-shadow(0 1px 2px rgba(0,0,0,0.6));
}

/* Muted icon — bottom right */
.stw__card-mute {
  position: absolute;
  bottom: 10px;
  right: 10px;
  width: 28px;
  height: 28px;
  background: rgba(0,0,0,0.42);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

/* Play button — center, shown on hover */
.stw__card-play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.2s;
  pointer-events: none;
}
.stw__card:hover .stw__card-play {
  opacity: 1;
}
.stw__card-play-btn {
  width: 52px;
  height: 52px;
  background: rgba(255,255,255,0.92);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(0,0,0,0.25);
}

/* ─── Playing state — hide all overlays ──────────────────── */
.stw__card--playing .stw__card-overlay,
.stw__card--playing .stw__card-logo,
.stw__card--playing .stw__card-mute,
.stw__card--playing .stw__card-play,
.stw__card--playing > img {
  display: none;
}
.stw__card--playing {
  cursor: default;
}
.stw__card--playing:hover {
  transform: none;
}

/* ─── Mobile ──────────────────────────────────────────────── */
@media (max-width: 767px) {
  .stw__card {
    /* Show ~1.3 cards to hint scrollability */
    width: calc((100vw - 2 * var(--stw-pad-x)) * 0.75);
    max-width: 240px;
  }
}

/* ─── aspect-ratio fallback (older Safari) ───────────────── */
@supports not (aspect-ratio: 9/16) {
  .stw__card::before {
    content: '';
    display: block;
    padding-bottom: 177.78%;
  }
  .stw__card > img,
  .stw__card iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
  }
}
/* END_SECTION:tiktok */

/* START_SECTION:trust-bar (INDEX:62) */
/* ── Section wrapper ─────────────────────────────────────── */
.trust {
  background: var(--color-white, #fff);
  padding: 48px 40px 64px;
}

.trust__inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

/* ── Single feature item ─────────────────────────────────── */
.trust__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0;
}

/* ── Circle icon ─────────────────────────────────────────── */
.trust__icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1.5px solid #ddd;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-bottom: 14px;
}

.trust__icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--color-charcoal, #141414);
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ── Text ────────────────────────────────────────────────── */
.trust__label {
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: var(--color-charcoal, #141414);
  margin: 0 0 5px;
  line-height: 1.3;
}

.trust__sub {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 400;
  color: #888;
  margin: 0;
  line-height: 1.5;
}

/* ── Tablet ──────────────────────────────────────────────── */
@media (max-width: 989px) {
  .trust {
    padding: 40px 24px 52px;
  }
  .trust__inner {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px 24px;
  }
}

/* ── Mobile ──────────────────────────────────────────────── */
@media (max-width: 479px) {
  .trust__inner {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px 16px;
  }
  .trust__label {
    font-size: 14px;
  }
  .trust__sub {
    font-size: 12px;
  }
}
/* END_SECTION:trust-bar */

/* START_SECTION:ugc-strip (INDEX:63) */
/* ── Section wrapper ─────────────────────────────────────── */
.ugc {
  background: var(--color-white, #fff);
  padding: 64px 0 0;
  overflow: hidden;
}

/* ── Heading block ───────────────────────────────────────── */
.ugc__header {
  text-align: center;
  padding: 0 24px 36px;
}

.ugc__heading {
  font-family: 'DM Sans', sans-serif;
  font-size: 38px;
  font-weight: 400;
  color: var(--color-charcoal, #141414);
  margin: 0 0 10px;
  line-height: 1.2;
}

.ugc__subtext {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #888;
  margin: 0;
  line-height: 1.5;
}

/* ── Marquee strip ───────────────────────────────────────── */
.ugc__strip {
  width: 100%;
  overflow: hidden;
  /* slight top/bottom overflow so images peek out */
  padding: 4px 0 24px;
}

.ugc__track {
  display: flex;
  gap: 10px;
  width: max-content;
  animation: ugcScroll 35s linear infinite;
  will-change: transform;
}

.ugc__track:hover {
  animation-play-state: paused;
}

@keyframes ugcScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ── Individual photo ────────────────────────────────────── */
.ugc__item {
  flex-shrink: 0;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
}

.ugc__img {
  height: 280px;
  width: auto;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center;
  display: block;
  border-radius: 12px;
  transition: transform 0.4s ease;
}

.ugc__item:hover .ugc__img {
  transform: scale(1.03);
}

/* ── Placeholder tile ────────────────────────────────────── */
.ugc__placeholder {
  height: 280px;
  width: 220px;
  border-radius: 12px;
  background: var(--color-primary-pink, #F4C5C5);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.ugc__placeholder svg {
  width: 36px;
  height: 36px;
  stroke: var(--color-dark-pink, #C97A7A);
  fill: none;
  opacity: 0.5;
}

/* ── Mobile ──────────────────────────────────────────────── */
@media (max-width: 749px) {
  .ugc {
    padding-top: 44px;
  }
  .ugc__heading {
    font-size: 28px;
  }
  .ugc__img,
  .ugc__placeholder {
    height: 200px;
  }
}
/* END_SECTION:ugc-strip */