/** 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:bundle-selector (INDEX:3) */
/* ─── 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:cta-slideshow (INDEX:13) */
/* ─── 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:16) */
/* ─── 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:22) */
/* ═══════════════════════════════════════════════════════════
   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-to-use (INDEX:23) */
/* ─── 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:tiktok (INDEX:56) */
/* ─── 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 */