@charset "UTF-8";
/* =========================================================
   Kalon — Custom components
   Loaded AFTER styles.css so it can override the template.
   1. Product showcase slider (replaces the GSAP pinned scroll)
   2. Product card polish
   3. Instagram-style story modal
   11. Mobile menu (offcanvas)
   12. Instagram strip
   ========================================================= */

/* ---------------------------------------------------------
   1. Product showcase slider
   --------------------------------------------------------- */
.product-showcase {
  margin-top: 56px;
}

.product-showcase_head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 24px;
}

.product-showcase_hint {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--text-5);
}

.product-showcase .group-btn-slider {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.product-showcase .tf-sw-nav_icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line-2);
  border-radius: 50%;
  font-size: 18px;
  color: var(--black);
  background: transparent;
  cursor: pointer;
  transition: background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease, opacity 0.25s ease;
}

.product-showcase .tf-sw-nav_icon:hover {
  background: var(--black);
  border-color: var(--black);
  color: var(--white);
}

.product-showcase .tf-sw-nav_icon.swiper-button-disabled {
  opacity: 0.35;
  pointer-events: none;
}

/* vertical padding gives the card lift + shadow room to breathe,
   without revealing the next slide horizontally */
.product-showcase .swiper {
  padding: 10px 0 34px;
}

.product-showcase .swiper-wrapper {
  align-items: stretch;
}

.product-showcase .swiper-slide {
  height: auto;
}

.product-showcase .sw-line-default {
  margin-top: 4px;
}

/* ---------------------------------------------------------
   2. Product card
   --------------------------------------------------------- */
.collection-v06.product-card {
  position: relative;
  height: 100%;
  border-radius: 16px;
  overflow: hidden;
  isolation: isolate;
  background: var(--main_200);
  transition: transform 0.45s cubic-bezier(0.22, 0.61, 0.36, 1),
    box-shadow 0.45s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.collection-v06.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 48px -24px rgba(131, 81, 66, 0.45);
}

/* Full-height scrim instead of the template's 25% strip.
   The product shots are near-white, so this has to be strong
   enough to carry white text. */
.collection-v06.product-card::before {
  height: 78%;
  background: linear-gradient(180deg,
      rgba(59, 36, 28, 0) 0%,
      rgba(59, 36, 28, 0.5) 42%,
      rgba(59, 36, 28, 0.94) 100%);
  transition: opacity 0.4s ease;
}

/* top scrim so the badge stays readable on light photos */
.collection-v06.product-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 26%;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(180deg,
      rgba(59, 36, 28, 0.55) 0%,
      rgba(59, 36, 28, 0) 100%);
}

.collection-v06.product-card .cls-image {
  height: auto;
  aspect-ratio: 3 / 4;
  overflow: hidden;
}

.collection-v06.product-card .cls-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.7s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.collection-v06.product-card:hover .cls-image img {
  transform: scale(1.06);
}

.product-card_badge {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 3;
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 11px;
  line-height: 16px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white);
  background: rgba(59, 36, 28, 0.55);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.22);
}

.collection-v06.product-card .cls-content {
  position: absolute;
  inset: auto 12px 12px 12px;
  z-index: 2;
  display: block;
  padding: 22px 20px;
  border-radius: 12px;
  background: rgba(59, 36, 28, 0.42);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: var(--white);
  transition: background-color 0.35s ease, border-color 0.35s ease;
}

.collection-v06.product-card:hover .cls-content {
  background: rgba(59, 36, 28, 0.55);
}

.collection-v06.product-card .cls_name {
  display: block;
  margin: 0 0 8px;
  color: var(--white);
  font-family: var(--font-heading);
}

.collection-v06.product-card .cls_desc {
  margin: 0 0 14px;
  font-size: 14px;
  line-height: 21px;
  color: rgba(255, 255, 255, 0.9);
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.collection-v06.product-card .product-card_cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white);
}

.collection-v06.product-card .product-card_cta i {
  transition: transform 0.3s ease;
}

.collection-v06.product-card:hover .product-card_cta i {
  transform: translateX(5px);
}

/* Whole card is the click target */
.product-card_trigger {
  position: absolute;
  inset: 0;
  z-index: 4;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  border-radius: inherit;
}

.product-card_trigger:focus-visible {
  outline: 2px solid var(--white);
  outline-offset: -4px;
}

/* Neutralise the template's hover-reveal (it caused the text to jump) */
@media (min-width: 1200px) {

  .collection-v06.product-card:not(:hover) .cls_desc,
  .collection-v06.product-card:not(:hover) .tf-btn-icon {
    opacity: 1;
    visibility: visible;
    margin-top: 0;
  }

  .collection-v06.product-card:not(:hover) .cls_desc {
    margin-bottom: 14px;
  }

  .collection-v06.product-card:not(:hover) .cls_name {
    margin-bottom: 8px;
  }

  .collection-v06.product-card:not(:hover) .cls-content {
    background: rgba(59, 36, 28, 0.42);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 22px 20px;
  }
}

@media (max-width: 767px) {
  .product-showcase {
    margin-top: 40px;
  }

  .product-showcase_head {
    margin-bottom: 20px;
  }

  .product-showcase_hint {
    font-size: 12px;
  }

  .product-showcase .tf-sw-nav_icon {
    width: 38px;
    height: 38px;
    font-size: 16px;
  }

  .collection-v06.product-card .cls-content {
    padding: 18px 16px;
  }

  .collection-v06.product-card .cls_desc {
    -webkit-line-clamp: 2;
  }
}

/* ---------------------------------------------------------
   3. Story modal
   --------------------------------------------------------- */
/* styles.css caps every .modal-dialog at 742px — undo it here
   so modal-fullscreen actually fills the viewport */
.modal-story .modal-dialog {
  width: 100%;
  max-width: none;
  height: 100%;
  /* on mobile Safari/Chrome the 100% above resolves to the LARGE viewport, so
     the CTA at the bottom of the story hides behind the browser toolbar */
  height: 100dvh;
  margin: 0;
  padding: 0;
}

.modal-story .modal-content {
  padding: 0;
  background: rgba(36, 22, 17, 0.95);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 0;
  border-radius: 0;
  height: 100%;
}

.story-close {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 20;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 50%;
  font-size: 20px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
  cursor: pointer;
  transition: background-color 0.25s ease, transform 0.25s ease;
}

.story-close:hover {
  background: rgba(255, 255, 255, 0.24);
  transform: rotate(90deg);
}

.story-stage {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  padding: 24px 16px;
}

.story-nav {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  font-size: 20px;
  color: var(--white);
  background: transparent;
  cursor: pointer;
  transition: background-color 0.25s ease, opacity 0.25s ease;
}

.story-nav:hover {
  background: rgba(255, 255, 255, 0.16);
}

.story-nav:disabled {
  opacity: 0.25;
  cursor: default;
}

.story-frame {
  position: relative;
  width: min(430px, 100%);
  height: min(92vh, 780px);
  border-radius: 18px;
  overflow: hidden;
  background: #241611;
  box-shadow: 0 30px 80px -30px rgba(0, 0, 0, 0.8);
}

/* Progress segments */
.story-progress {
  position: absolute;
  top: 12px;
  left: 12px;
  right: 12px;
  z-index: 12;
  display: flex;
  gap: 4px;
}

.story-progress_seg {
  flex: 1 1 0;
  height: 3px;
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.32);
  overflow: hidden;
}

.story-progress_seg span {
  display: block;
  height: 100%;
  width: 100%;
  border-radius: inherit;
  background: var(--white);
  transform: scaleX(0);
  transform-origin: left center;
}

.story-progress_seg.is-done span {
  transform: scaleX(1);
}

.story-progress_seg.is-active span {
  animation: storyFill linear forwards;
  animation-duration: var(--story-duration, 7s);
}

.story-frame.is-paused .story-progress_seg.is-active span {
  animation-play-state: paused;
}

@keyframes storyFill {
  from {
    transform: scaleX(0);
  }

  to {
    transform: scaleX(1);
  }
}

/* Top bar */
.story-top {
  position: absolute;
  top: 28px;
  left: 12px;
  right: 12px;
  z-index: 12;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.story-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--white);
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.5);
}

.story-brand_text {
  display: flex;
  align-items: baseline;
  gap: 8px;
  min-width: 0;
}

.story-brand_name {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.story-brand_count {
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.65);
  flex-shrink: 0;
}

.story-brand img {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  object-fit: cover;
  background: var(--white);
  padding: 3px;
}

.story-top_actions {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

/* sound control only exists on video slides */
.story-sound {
  width: 34px;
  height: 34px;
  display: none;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.3);
  cursor: pointer;
}

.story-frame.is-video .story-sound {
  display: flex;
}

/* speaker cone */
.story-sound_icon {
  position: relative;
  display: block;
  width: 0;
  height: 0;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-right: 8px solid var(--white);
  margin-left: 4px;
}

.story-sound_icon::before {
  content: "";
  position: absolute;
  top: -3px;
  left: 0;
  width: 4px;
  height: 6px;
  background: var(--white);
}

/* sound waves — shown when unmuted */
.story-sound_icon::after {
  content: "";
  position: absolute;
  top: -5px;
  left: 10px;
  width: 8px;
  height: 10px;
  border-right: 2px solid var(--white);
  border-radius: 0 8px 8px 0;
}

/* muted: swap the waves for a slash */
.story-frame.is-muted .story-sound_icon::after {
  top: -6px;
  left: 9px;
  width: 12px;
  height: 12px;
  border-right: 0;
  border-radius: 0;
  background: var(--white);
  clip-path: polygon(0 84%, 84% 0, 100% 16%, 16% 100%);
}

.story-toggle {
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.3);
  cursor: pointer;
}

.story-toggle_bars {
  position: relative;
  display: block;
  width: 12px;
  height: 12px;
}

/* pause icon: two bars */
.story-toggle_bars::before,
.story-toggle_bars::after {
  content: "";
  position: absolute;
  top: 0;
  width: 3px;
  height: 12px;
  background: var(--white);
  border-radius: 1px;
  transition: all 0.2s ease;
}

.story-toggle_bars::before {
  left: 1px;
}

.story-toggle_bars::after {
  right: 1px;
}

/* play icon: triangle */
.story-frame.is-paused .story-toggle_bars::before {
  left: 2px;
  width: 0;
  height: 0;
  background: transparent;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-left: 10px solid var(--white);
  border-radius: 0;
}

.story-frame.is-paused .story-toggle_bars::after {
  opacity: 0;
}

/* Media */
.story-media {
  position: absolute;
  inset: 0;
}

.story-media img,
.story-media video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  background: #241611;
}

/* only one of the two is ever live */
.story-frame:not(.is-video) .story-media video {
  display: none;
}

.story-frame.is-video .story-media img {
  display: none;
}

.story-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
      rgba(46, 28, 22, 0.55) 0%,
      rgba(46, 28, 22, 0) 28%,
      rgba(46, 28, 22, 0.5) 55%,
      rgba(46, 28, 22, 0.94) 100%);
}

/* Body */
.story-body {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 12;
  padding: 24px 22px 28px;
  color: var(--white);
  pointer-events: none;
}

.story-body>* {
  pointer-events: auto;
}

.story-badge {
  display: inline-block;
  margin-bottom: 12px;
  padding: 5px 12px;
  border-radius: 100px;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.28);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.story-title {
  margin: 0 0 4px;
  font-family: var(--font-heading);
  font-size: clamp(24px, 5vw, 30px);
  line-height: 1.2;
  color: var(--white);
}

.story-tagline {
  margin: 0 0 16px;
  font-size: 13px;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.7);
}

.story-points {
  list-style: none;
  margin: 0 0 16px;
  padding: 0;
  display: grid;
  gap: 8px;
}

.story-points li {
  position: relative;
  padding-left: 24px;
  font-size: 14px;
  line-height: 20px;
  color: rgba(255, 255, 255, 0.92);
}

.story-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: 14px;
  height: 8px;
  border-left: 2px solid var(--white);
  border-bottom: 2px solid var(--white);
  transform: rotate(-45deg);
  border-radius: 1px;
}

.story-desc {
  margin: 0 0 20px;
  font-size: 13px;
  line-height: 20px;
  color: rgba(255, 255, 255, 0.72);
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* WYSIWYG output — strip the editor's default block spacing so the
   3-line clamp above still measures what it looks like it measures */
.story-desc> :first-child {
  margin-top: 0;
}

.story-desc> :last-child {
  margin-bottom: 0;
}

.story-desc p {
  margin: 0 0 8px;
  font-size: inherit;
  line-height: inherit;
  color: inherit;
}

.story-cta.tf-btn {
  width: 100%;
  justify-content: center;
}

/* Tap zones sit under the body content */
.story-tap {
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 10;
  width: 32%;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.story-tap--prev {
  left: 0;
}

.story-tap--next {
  right: 0;
  width: 40%;
}

/* Enter animation */
.story-frame.is-switching .story-body,
.story-frame.is-switching .story-media img {
  animation: storyIn 0.45s cubic-bezier(0.22, 0.61, 0.36, 1);
}

@keyframes storyIn {
  from {
    opacity: 0;
    transform: translateY(14px);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 991px) {
  .story-nav {
    display: none;
  }

  .story-stage {
    padding: 0;
    gap: 0;
  }

  .story-frame {
    width: 100%;
    height: 100%;
    border-radius: 0;
  }
}

@media (prefers-reduced-motion: reduce) {

  .collection-v06.product-card,
  .collection-v06.product-card .cls-image img,
  .story-frame.is-switching .story-body,
  .story-frame.is-switching .story-media img {
    transition: none;
    animation: none;
  }
}

/* ---------------------------------------------------------
   4. "Nature Meets Science" pillars
   Hairline grid instead of four floating boxes: the 1px gap
   over a tinted background draws the dividers, so the rule
   lines stay correct at every column count.
   --------------------------------------------------------- */
.section-pillars {
  position: relative;
  overflow: hidden;
}

/* soft accent glow behind the heading */
.section-pillars::before {
  content: "";
  position: absolute;
  top: -160px;
  left: 50%;
  width: min(920px, 92%);
  height: 520px;
  transform: translateX(-50%);
  pointer-events: none;
  background: radial-gradient(50% 50% at 50% 50%,
      rgba(131, 81, 66, 0.16) 0%,
      rgba(131, 81, 66, 0) 70%);
}

.section-pillars > .container {
  position: relative;
  z-index: 1;
}

.pillar-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin: 56px 0 48px;
  background: rgba(59, 36, 28, 0.16);
  border: 1px solid rgba(59, 36, 28, 0.16);
  border-radius: 18px;
  overflow: hidden;
}

.pillar {
  position: relative;
  padding: 40px 28px 38px;
  background: var(--bg);
  transition: background-color 0.45s ease;
}

.pillar:hover {
  background: var(--white);
}

/* accent rule that draws itself on hover */
.pillar::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--kalon-brown);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.5s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.pillar:hover::after {
  transform: scaleX(1);
}

.pillar_num {
  position: absolute;
  top: 26px;
  right: 26px;
  font-family: var(--font-heading);
  font-size: 42px;
  line-height: 1;
  letter-spacing: -0.03em;
  color: rgba(59, 36, 28, 0.09);
  transition: color 0.45s ease;
}

.pillar:hover .pillar_num {
  color: rgba(131, 81, 66, 0.85);
}

.pillar_ic {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 26px;
  border-radius: 50%;
  border: 1px solid rgba(59, 36, 28, 0.14);
  background: var(--white);
  font-size: 30px;
  color: var(--black);
  transition: background-color 0.45s ease, border-color 0.45s ease, transform 0.45s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.pillar:hover .pillar_ic {
  background: var(--kalon-brown);
  border-color: var(--kalon-brown);
  transform: translateY(-4px);
}

.pillar_ic .icon {
  transition: transform 0.5s cubic-bezier(0.47, 2.02, 0.31, -0.36);
}

.pillar:hover .pillar_ic .icon {
  transform: scale(1.08);
}

.pillar_title {
  margin: 0 0 12px;
  font-size: clamp(19px, 1.6vw, 22px);
  line-height: 1.25;
  color: var(--black);
}

.pillar_desc {
  margin: 0;
  font-size: 14px;
  line-height: 22px;
  color: var(--text-5);
}

/* trust badges */
.pillar-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.pillar-badges li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border: 1px solid rgba(59, 36, 28, 0.16);
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.55);
  font-size: 13px;
  line-height: 18px;
  color: var(--black);
  transition: background-color 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}

.pillar-badges li:hover {
  background: var(--white);
  border-color: var(--kalon-brown);
  transform: translateY(-2px);
}

.pillar-badges .icon {
  font-size: 16px;
  color: var(--success_700);
}

@media (max-width: 1199px) {
  .pillar-grid {
    grid-template-columns: repeat(2, 1fr);
    margin: 44px 0 40px;
  }
}

@media (max-width: 575px) {
  .pillar-grid {
    grid-template-columns: 1fr;
    margin: 36px 0 32px;
    border-radius: 14px;
  }

  .pillar {
    padding: 30px 22px 34px;
  }

  .pillar_num {
    top: 22px;
    right: 22px;
    font-size: 34px;
  }

  .pillar_ic {
    width: 56px;
    height: 56px;
    font-size: 26px;
    margin-bottom: 20px;
  }

  .pillar-badges li {
    padding: 9px 16px;
    font-size: 12px;
  }
}

@media (prefers-reduced-motion: reduce) {

  .pillar,
  .pillar::after,
  .pillar_ic,
  .pillar_num,
  .pillar-badges li {
    transition: none;
  }
}

/* =========================================================
   5. BRAND PALETTE
   #835142 brown · #f7e0cb peach · #fff9f4 cream
   The template shipped with black, olive-green, purple and
   emerald accents. Everything is remapped here so the whole
   site — including hover states — stays inside the palette.
   ========================================================= */
:root {
  --kalon-brown: #835142;
  --kalon-brown-dark: #5f3a2f;
  /* hover / pressed */
  --kalon-brown-deep: #3b241c;
  /* replaces pure black */
  --kalon-peach: #f7e0cb;
  --kalon-peach-deep: #eecdb0;
  --kalon-cream: #fff9f4;

  /* --- core --- */
  --black: #3b241c;
  --primary: #835142;
  --third: #f7e0cb;

  /* --- surfaces --- */
  --bg: #fff9f4;
  --bg-2: #fff4ec;
  --bg-13: #fff4ec;
  --bg-16: #fff9f4;
  --surface: #fff9f4;
  --main_100: #fffcf9;
  --main_200: #fff4ec;
  --main_300: #f3e2d5;
  --main_400: #e6cdbc;
  --main_500: #b99a8a;
  --main_800: #5f3a2f;

  /* --- greens -> brown / peach --- */
  --green: #835142;
  --success_500: #835142;
  --success_700: #835142;
  --success_800: #5f3a2f;
  --success_50: #fff4ec;
  --success_100: #f7e0cb;
  --text-7: #835142;
  --text-9: #835142;
  --text-12: #f7e0cb;
  --bg-3: #f7e0cb;
  --bg-5: #f7e0cb;
  --bg-9: #fff4ec;
  --bg-11: #f7e0cb;
  --bg-17: #fff4ec;

  /* --- purples / blues -> brown --- */
  --text-14: #835142;
  --bg-10: #835142;
  --purple_700: #835142;
  --purple_100: #f7e0cb;
  --blue_800: #835142;
  --blue_100: #f7e0cb;
  --blue-gray_800: #5f3a2f;
  --blue-gray_100: #f3e2d5;
  --blue-gray_50: #fff9f4;
  --on-surface: #3b241c;
  --cl-1: #835142;

  /* --- warm dark surfaces --- */
  --bg-4: #2e1c16;
  --bg-6: #4a2a20;
  --bg-12: #3b241c;
  --bg-14: #4a2a20;
  --bg-15: #241611;

  /* --- pale yellows -> peach --- */
  --text-3: #f7e0cb;
  --text-3_24: rgba(247, 224, 203, 0.24);
  --text-3_48: rgba(247, 224, 203, 0.48);
  --text-3_64: rgba(247, 224, 203, 0.64);
  --text-11: #c79a72;
  --text-13: #c2a48c;
  --text-8: #835142;
  --text-10: #835142;
  --yellow: #c79a72;
  --orange_500: #835142;
  --orange_600: #7a4a3c;
  --orange_700: #5f3a2f;

  /* --- text: warm greys instead of neutral --- */
  --text: #6b564f;
  --text-2: #9c877f;
  --text-4: #d9c6ba;
  --text-5: #7a635b;
  --text-6: #a8938b;

  /* --- hairlines --- */
  --line: #f3e7dd;
  --line-2: #e2cdbd;
  --line-3: #4a2a20;
  --line-4: rgba(247, 224, 203, 0.24);
  --line-5: #ecdcd0;
  --line-6: #f3e7dd;
  --line-7: #5f3a2f;
  --line-8: rgba(247, 224, 203, 0.16);
}

/* ---- hardcoded colours left in styles.css ---- */

/* purple accents */
[class] .bg-purple,
.tf-badge.purple {
  background: var(--kalon-brown) !important;
}

/* the accent dot used across every section eyebrow */
.br-dot {
  background: var(--kalon-brown);
}

.br-dot.stroke {
  background: transparent;
  border-color: var(--kalon-brown);
}

/* green tick marks */
.icon-CheckCircleFill,
.icon-CircleCheck,
.icon-CircleCheck2 {
  color: var(--kalon-brown);
}

/* dark topbar / footer surfaces: warm, not pure black */
.bg-black {
  background: var(--kalon-brown-deep) !important;
}

/* ---------------------------------------------------------
   6. Collaborations — continuous marquee
   The track holds 4 identical copies, so shifting it by -50%
   lands exactly on a copy boundary and the loop is seamless.
   Spacing lives in each item's margin (not `gap`) so both
   halves measure exactly the same.
   --------------------------------------------------------- */
.collab-marquee {
  position: relative;
  overflow: hidden;
  padding: 8px 0 12px;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.collab-track {
  display: flex;
  width: max-content;
  animation: collabScroll 55s linear infinite;
  will-change: transform;
}

.collab-marquee:hover .collab-track {
  animation-play-state: paused;
}

@keyframes collabScroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.collab-item {
  flex: 0 0 auto;
  width: clamp(220px, 22vw, 300px);
  margin: 0 24px 0 0;
}

.collab-item_media {
  position: relative;
  aspect-ratio: 3 / 4;
  border-radius: 14px;
  overflow: hidden;
  background: var(--kalon-peach);
}

.collab-item_media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.7s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.collab-item:hover .collab-item_media img {
  transform: scale(1.06);
}

.collab-item_quote {
  position: absolute;
  inset: auto 0 0 0;
  margin: 0;
  padding: 44px 20px 20px;
  font-size: 13px;
  line-height: 20px;
  font-style: italic;
  color: var(--white);
  background: linear-gradient(180deg,
      rgba(59, 36, 28, 0) 0%,
      rgba(59, 36, 28, 0.85) 55%,
      rgba(59, 36, 28, 0.95) 100%);
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.collab-item:hover .collab-item_quote {
  opacity: 1;
  transform: none;
}

.collab-item_info {
  padding: 16px 4px 0;
  text-align: center;
}

.collab-item_name {
  display: block;
  font-size: clamp(17px, 1.5vw, 20px);
  line-height: 1.3;
  color: var(--black);
  margin-bottom: 4px;
}

.collab-item_role {
  display: block;
  font-size: 13px;
  line-height: 18px;
  color: var(--text-5);
}

@media (max-width: 767px) {
  .collab-item {
    margin-right: 16px;
  }

  .collab-track {
    animation-duration: 38s;
  }
}

@media (prefers-reduced-motion: reduce) {
  /* Keep the auto-marquee running (design requirement) but slow it
     down and never fall back to a manual drag-scroller. */
  .collab-track {
    animation-duration: 90s;
  }

  .collab-item_quote {
    opacity: 1;
    transform: none;
  }
}

/* ---------------------------------------------------------
   7. Testimonials
   --------------------------------------------------------- */
.section-testimonial .testimonial-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  margin-bottom: 24px;
}

.section-testimonial .tf-sw-nav_icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line-2);
  border-radius: 50%;
  font-size: 18px;
  color: var(--kalon-brown);
  background: transparent;
  cursor: pointer;
  transition: background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease, opacity 0.25s ease;
}

.section-testimonial .tf-sw-nav_icon:hover {
  background: var(--kalon-brown);
  border-color: var(--kalon-brown);
  color: var(--white);
}

.section-testimonial .tf-sw-nav_icon.swiper-button-disabled {
  opacity: 0.35;
  pointer-events: none;
}

.section-testimonial .swiper {
  padding-bottom: 8px;
}

.section-testimonial .swiper-wrapper {
  align-items: stretch;
}

.section-testimonial .swiper-slide {
  height: auto;
}

.section-testimonial .sw-line-default {
  margin-top: 32px;
}

/* card */
.section-testimonial .testimonial-v03 {
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  padding: 34px 30px 30px;
  border-radius: 16px;
  background: var(--kalon-cream);
  border: 1px solid var(--line-2);
  overflow: hidden;
  transition: background-color 0.4s ease, border-color 0.4s ease, transform 0.4s cubic-bezier(0.22, 0.61, 0.36, 1), box-shadow 0.4s ease;
}

.section-testimonial .testimonial-v03:hover {
  background: var(--white);
  border-color: var(--kalon-peach-deep);
  transform: translateY(-6px);
  box-shadow: 0 24px 44px -26px rgba(131, 81, 66, 0.45);
}

/* oversized quote mark */
.section-testimonial .testimonial-v03::before {
  content: "“";
  position: absolute;
  top: -18px;
  right: 18px;
  font-family: var(--font-heading);
  font-size: 130px;
  line-height: 1;
  color: var(--kalon-peach);
  pointer-events: none;
  transition: color 0.4s ease;
}

.section-testimonial .testimonial-v03:hover::before {
  color: var(--kalon-peach-deep);
}

.section-testimonial .testimonial-v03 > * {
  position: relative;
}

.section-testimonial .testimonial-v03 .star-wrap {
  color: var(--kalon-brown);
}

.section-testimonial .testimonial-v03 .tes_rate {
  margin-bottom: 18px;
}

.section-testimonial .testimonial-v03 .tes_title {
  color: var(--black);
}

.section-testimonial .testimonial-v03 .tes_text {
  margin-bottom: 20px;
}

/* push the attribution block to the bottom so cards line up */
.section-testimonial .testimonial-v03 .tes_author {
  margin-top: auto;
  margin-bottom: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--line-2);
  color: var(--black);
}

@media (min-width: 992px) {
  .section-testimonial .testimonial-v03 .tes_author {
    margin-bottom: 18px;
  }
}

.section-testimonial .testimonial-v03 .tes_author .icon {
  color: var(--kalon-brown);
}

.section-testimonial .testimonial-v03 .tes_prd {
  padding: 8px 14px 8px 8px;
  border-radius: 100px;
  background: var(--kalon-peach);
  align-self: flex-start;
  transition: background-color 0.4s ease;
}

.section-testimonial .testimonial-v03:hover .tes_prd {
  background: var(--kalon-peach-deep);
}

.section-testimonial .testimonial-v03 .tes_prd .ic-wrap {
  background: var(--white);
  color: var(--kalon-brown);
}

.section-testimonial .testimonial-v03 .tes_prd a {
  color: var(--kalon-brown-dark);
}

@media (max-width: 767px) {
  .section-testimonial .testimonial-nav {
    justify-content: center;
    margin-bottom: 20px;
  }

  .section-testimonial .tf-sw-nav_icon {
    width: 38px;
    height: 38px;
    font-size: 16px;
  }

  .section-testimonial .testimonial-v03 {
    padding: 26px 22px 24px;
  }
}

/* stragglers that hardcode their colour instead of using a token */
.footer-v2 .tag-notice .br-dot,
.footer-v2.ft-v2_s2 .tag-notice .br-dot,
.slideshow-v02 .sld__tag .br-dot,
.eyebrow-label.type-2 .br-dot,
.eyebrow-label.type-3 .br-dot,
.skin-guide .skin-guide__list-info .br-dot,
.section-banner-about .eyebrow-label .br-dot,
.card-product.card-s2 .product-info__avaiable .br-dot {
  background: var(--kalon-brown);
}

.demo-label.type-loved {
  color: var(--kalon-brown-dark);
  background: var(--kalon-peach);
  border-color: var(--kalon-peach-deep);
}

/* ---------------------------------------------------------
   8. Marketplace band
   Rounded panel that separates the awards row from the
   testimonials: copy on the left, store buttons on the right.
   --------------------------------------------------------- */
.marketplace-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 380px);
  align-items: center;
  gap: 48px;
  margin: 100px 0 8px;
  padding: 48px 52px;
  border: 1px solid var(--line-2);
  border-radius: 24px;
  background:
    radial-gradient(120% 140% at 100% 0%, rgba(247, 224, 203, 0.75) 0%, rgba(247, 224, 203, 0) 60%),
    var(--kalon-cream);
}

.marketplace-band_text .eyebrow-label {
  margin-bottom: 14px;
}

.marketplace-band_title {
  margin: 0 0 14px;
  font-size: clamp(26px, 2.6vw, 38px);
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--black);
}

.marketplace-band_desc {
  margin: 0;
  max-width: 56ch;
  font-size: 15px;
  line-height: 26px;
  color: var(--text-5);
}

.marketplace-band_actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.marketplace-btn {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  border: 1px solid var(--line-2);
  border-radius: 100px;
  background: var(--white);
  color: var(--black);
  transition: background-color 0.3s ease, border-color 0.3s ease, color 0.3s ease, transform 0.3s cubic-bezier(0.22, 0.61, 0.36, 1), box-shadow 0.3s ease;
}

.marketplace-btn:hover {
  background: var(--kalon-brown);
  border-color: var(--kalon-brown);
  color: var(--white);
  transform: translateX(4px);
  box-shadow: 0 16px 30px -18px rgba(131, 81, 66, 0.8);
}

.marketplace-btn_ic {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--kalon-peach);
  color: var(--kalon-brown);
  font-size: 18px;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.marketplace-btn:hover .marketplace-btn_ic {
  background: rgba(255, 255, 255, 0.16);
  color: var(--white);
}

.marketplace-btn_label {
  flex: 1;
  font-size: 15px;
  line-height: 20px;
  letter-spacing: 0.01em;
}

.marketplace-btn_go {
  flex-shrink: 0;
  font-size: 16px;
  opacity: 0.55;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.marketplace-btn:hover .marketplace-btn_go {
  opacity: 1;
  transform: translate(2px, -2px);
}

.marketplace-btn:focus-visible {
  outline: 2px solid var(--kalon-brown);
  outline-offset: 3px;
}

@media (max-width: 991px) {
  .marketplace-band {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 36px 30px;
    border-radius: 20px;
  }

  .marketplace-band_actions {
    max-width: 420px;
  }
}

@media (max-width: 575px) {
  .marketplace-band {
    padding: 28px 22px;
    border-radius: 16px;
  }

  .marketplace-band_desc {
    font-size: 14px;
    line-height: 24px;
  }

  .marketplace-btn {
    padding: 12px 16px;
    gap: 12px;
  }

  .marketplace-btn_ic {
    width: 36px;
    height: 36px;
    font-size: 16px;
  }
}

@media (prefers-reduced-motion: reduce) {

  .marketplace-btn,
  .marketplace-btn_ic,
  .marketplace-btn_go {
    transition: none;
  }
}

/* ---------------------------------------------------------
   9. Dark footer
   The whole footer sits on #3b241c, so every child that
   inherited a dark ink colour has to be flipped to a light
   one. Scoped to .tf-footer.footer-v2 so nothing else moves.
   --------------------------------------------------------- */
.tf-footer.footer-v2 {
  --footer-ink: #fdf6f0;
  --footer-ink-soft: rgba(253, 246, 240, 0.68);
  --footer-line: rgba(253, 246, 240, 0.16);
  background: var(--kalon-brown-deep);
  color: var(--footer-ink);
}

/* base text */
.tf-footer.footer-v2 .ft-title,
.tf-footer.footer-v2 .footer-heading,
.tf-footer.footer-v2 .tag-notice,
.tf-footer.footer-v2 h1,
.tf-footer.footer-v2 h2,
.tf-footer.footer-v2 h3,
.tf-footer.footer-v2 h4,
.tf-footer.footer-v2 h5,
.tf-footer.footer-v2 h6,
.tf-footer.footer-v2 .h7 {
  color: var(--footer-ink);
}

.tf-footer.footer-v2 .ft-desc,
.tf-footer.footer-v2 .cl-text-5,
.tf-footer.footer-v2 .cl-text-main,
.tf-footer.footer-v2 .ft-text-nocopy {
  color: var(--footer-ink-soft);
}

/* links */
.tf-footer.footer-v2 a,
.tf-footer.footer-v2 .footer-menu-list a,
.tf-footer.footer-v2 .link,
.tf-footer.footer-v2 .link-black {
  color: var(--footer-ink-soft);
  transition: color 0.25s ease;
}

.tf-footer.footer-v2 a:hover,
.tf-footer.footer-v2 .footer-menu-list a:hover,
.tf-footer.footer-v2 .link:hover,
.tf-footer.footer-v2 .link-black:hover {
  color: var(--footer-ink);
}

/* the template draws link underlines with a dark gradient */
.tf-footer.footer-v2 .footer-menu-list a::after,
.tf-footer.footer-v2 .link-black::after,
.tf-footer.footer-v2 .link-underline::after {
  background: currentColor;
}

/* accent dot */
.tf-footer.footer-v2 .tag-notice .br-dot,
.tf-footer.footer-v2 .br-dot {
  background: var(--kalon-peach);
}

/* hairlines */
.tf-footer.footer-v2 .br-line,
.tf-footer.footer-v2 .bg-line-2,
.tf-footer.footer-v2 .bg-line-5 {
  background: var(--footer-line);
}

.tf-footer.footer-v2 .footer-inner_wrap > .br-line::after,
.tf-footer.footer-v2 .footer-bottom_wrap > .br-line::after {
  background: var(--footer-line);
}

.tf-footer.footer-v2 .footer-inner_wrap,
.tf-footer.footer-v2 .footer-bottom_wrap,
.tf-footer.footer-v2 .footer-col-block,
.tf-footer.footer-v2 .footer-top {
  border-color: var(--footer-line);
}

/* logo is a dark mark on a dark panel — lift it to the cream ink */
.tf-footer.footer-v2 .logo-site img {
  filter: brightness(0) invert(1);
  opacity: 0.92;
}

/* social icons */
.tf-footer.footer-v2 .tf-list .link {
  color: var(--footer-ink-soft);
}

.tf-footer.footer-v2 .tf-list .link:hover {
  color: var(--kalon-peach);
}

/* subscribe form */
.tf-footer.footer-v2 .form-subcribe fieldset {
  background: rgba(253, 246, 240, 0.07);
  border: 1px solid var(--footer-line);
  border-radius: 100px;
}

.tf-footer.footer-v2 .form-subcribe input {
  background: transparent;
  border: 0;
  color: var(--footer-ink);
}

.tf-footer.footer-v2 .form-subcribe input::placeholder {
  color: rgba(253, 246, 240, 0.45);
}

.tf-footer.footer-v2 .form-subcribe input:focus {
  outline: none;
}

.tf-footer.footer-v2 .form-subcribe fieldset:focus-within {
  border-color: var(--kalon-peach);
}

.tf-footer.footer-v2 .form-subcribe .icon {
  color: rgba(253, 246, 240, 0.55);
}

/* subscribe button: peach on brown, inverts on hover */
.tf-footer.footer-v2 .form-subcribe .tf-btn {
  background: var(--kalon-peach);
  border-color: var(--kalon-peach);
  color: var(--kalon-brown-deep);
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
  border-radius: 20px;
}

.tf-footer.footer-v2 .form-subcribe .tf-btn:hover {
  background: var(--footer-ink);
  border-color: var(--footer-ink);
  color: var(--kalon-brown-deep);
}

/* mobile accordion chevron */
.tf-footer.footer-v2 .footer-heading-mobile::after {
  color: var(--footer-ink-soft);
}

/* styles.css sets .cl-text-main and .link-black:hover with !important,
   so the dark-footer versions have to match that weight */
.tf-footer.footer-v2 .cl-text-main,
.tf-footer.footer-v2 .ft-text-nocopy.cl-text-main {
  color: var(--footer-ink-soft) !important;
}

.tf-footer.footer-v2 a.cl-text-main:hover,
.tf-footer.footer-v2 .link-black:hover,
.tf-footer.footer-v2 .link:hover {
  color: var(--footer-ink) !important;
}

/* the envelope inside the field carries .cl-text-5 (!important),
   and the send icon sits on the peach button — both need their own rule */
.tf-footer.footer-v2 .form-subcribe fieldset .icon {
  color: rgba(253, 246, 240, 0.55) !important;
}

.tf-footer.footer-v2 .form-subcribe .tf-btn .icon {
  color: var(--kalon-brown-deep) !important;
}

/* the mobile accordion "+" is two 1px bars painted with background-color,
   not colour — on the dark footer they were invisible */
.tf-footer.footer-v2 .footer-heading-mobile::before,
.tf-footer.footer-v2 .footer-heading-mobile::after {
  background-color: var(--footer-ink-soft);
}

/* ---------------------------------------------------------
   8. Reseller benefits — timeline cards
   Big extruded stat on the left, copy on the right, joined by
   a faint vertical timeline running down the left edge.
   --------------------------------------------------------- */
.section-benefits {
  position: relative;
  background-color: var(--kalon-cream);
  /* Swap the filename below to change the photo. The cream gradient
     keeps the left side clean so the stats + timeline stay readable,
     letting the portrait breathe softly on the right. */
  background-image:
    linear-gradient(90deg,
      var(--kalon-cream) 32%,
      rgba(255, 249, 244, 0.86) 58%,
      rgba(255, 249, 244, 0.55) 100%),
    url("../images/section/newsletter.jpg");
  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;
}

@media (max-width: 767px) {
  /* on narrow screens the photo sits behind the cards, so lift the
     tint to keep every card crisp */
  .section-benefits {
    background-image:
      linear-gradient(rgba(255, 249, 244, 0.93), rgba(255, 249, 244, 0.9)),
      url("../images/section/newsletter.jpg");
    background-position: center;
  }
}

.benefit-list {
  list-style: none;
  margin: 48px auto 0;
  padding: 0 0 0 34px;
  max-width: 760px;
  position: relative;
}

/* the vertical timeline line */
.benefit-list::before {
  content: "";
  position: absolute;
  top: 22px;
  bottom: 22px;
  left: 5px;
  width: 2px;
  border-radius: 2px;
  background: repeating-linear-gradient(var(--kalon-peach-deep) 0 6px,
      transparent 6px 12px);
}

.benefit-card {
  position: relative;
  display: flex;
  align-items: center;
  gap: clamp(18px, 4vw, 40px);
  padding: clamp(18px, 3vw, 26px) clamp(20px, 3vw, 32px);
  border: 2px dashed var(--kalon-peach-deep);
  border-radius: 18px;
  background: var(--kalon-cream);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.benefit-card + .benefit-card {
  margin-top: 20px;
}

/* the timeline dot */
.benefit-card::before {
  content: "";
  position: absolute;
  left: -34px;
  top: 50%;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--kalon-brown);
  box-shadow: 0 0 0 4px var(--kalon-cream);
  transform: translate(-1px, -50%);
  transition: background-color 0.35s ease, transform 0.35s ease;
}

.benefit-card:hover {
  transform: translateX(4px);
  border-color: var(--kalon-brown);
  box-shadow: 0 18px 40px -24px rgba(59, 36, 28, 0.45);
}

.benefit-card:hover::before {
  background: var(--kalon-brown-deep);
  transform: translate(-1px, -50%) scale(1.25);
}

/* the big extruded stat */
.benefit-card_stat {
  flex: 0 0 auto;
  min-width: clamp(96px, 14vw, 140px);
  font-family: var(--font-heading), sans-serif;
  font-weight: 700;
  font-size: clamp(40px, 7vw, 64px);
  line-height: 0.9;
  letter-spacing: 0.01em;
  color: var(--kalon-brown);
  text-shadow:
    1px 1px 0 var(--kalon-brown-dark),
    2px 2px 0 var(--kalon-brown-dark),
    3px 3px 0 var(--kalon-brown-dark),
    4px 5px 6px rgba(59, 36, 28, 0.22);
}

.benefit-card_stat em {
  display: block;
  font-style: normal;
  font-size: 0.72em;
  line-height: 0.95;
}

.benefit-card_star {
  font-size: 0.7em;
  margin-left: 0.04em;
  color: #f6c948;
  /* the gold star keeps a matching extrude, not the brown one */
  text-shadow:
    1px 1px 0 #d99a2b,
    2px 2px 0 #d99a2b,
    3px 4px 5px rgba(59, 36, 28, 0.22);
  vertical-align: baseline;
}

.benefit-card_body {
  flex: 1 1 auto;
}

.benefit-card_title {
  margin: 0 0 6px;
  font-size: clamp(18px, 2.2vw, 22px);
  line-height: 1.25;
  font-weight: 700;
  color: var(--kalon-brown);
}

.benefit-card_desc {
  margin: 0;
  font-size: 15px;
  line-height: 1.55;
  color: var(--text-5);
}

/* prev/next arrows above each category tab's product slider */
.shop-showcase .shop-slider-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  margin-bottom: 20px;
}

.shop-showcase .tf-sw-nav_icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line-2);
  border-radius: 50%;
  font-size: 18px;
  color: var(--kalon-brown);
  background: transparent;
  cursor: pointer;
  transition: background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease, opacity 0.25s ease;
}

.shop-showcase .tf-sw-nav_icon:hover {
  background: var(--kalon-brown);
  border-color: var(--kalon-brown);
  color: var(--white);
}

.shop-showcase .tf-sw-nav_icon.swiper-button-disabled {
  opacity: 0.35;
  pointer-events: none;
}

/* a category with too few products to scroll gets no arrows at all */
.shop-showcase .shop-slider-nav:has(.swiper-button-lock) {
  display: none;
}

@media (max-width: 767px) {
  .shop-showcase .shop-slider-nav {
    justify-content: center;
    margin-bottom: 16px;
  }

  .shop-showcase .tf-sw-nav_icon {
    width: 38px;
    height: 38px;
    font-size: 16px;
  }
}

/* the two marketplace CTAs under the "Shop What Works" heading */
.shop-cta-group {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin-top: 28px;
}

@media (max-width: 424px) {
  .shop-cta-group {
    flex-direction: column;
    align-items: center;
  }

  .shop-cta-group .tf-btn {
    width: 100%;
    max-width: 320px;
  }
}

@media (max-width: 575px) {
  .benefit-list {
    padding-left: 26px;
  }

  .benefit-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    text-align: left;
  }

  .benefit-card::before {
    left: -26px;
    top: 34px;
  }

  .benefit-card_stat {
    min-width: 0;
  }
}

/* ---------------------------------------------------------
   10. Blog — journal slider
   Sits on a cream band so the white cards lift off the page.
   Card layout is a flex column: the media block is fixed by
   aspect-ratio, the body stretches, and the "Read article"
   row is pushed to the bottom so every card lines up no
   matter how long the excerpt runs.
   --------------------------------------------------------- */
.section-blog {
  background: var(--kalon-cream);
}

/* nav arrows — same shape language as the testimonial slider */
.section-blog .blog-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  margin-bottom: 24px;
}

.section-blog .tf-sw-nav_icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line-2);
  border-radius: 50%;
  font-size: 18px;
  color: var(--kalon-brown);
  background: transparent;
  cursor: pointer;
  transition: background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease, opacity 0.25s ease;
}

.section-blog .tf-sw-nav_icon:hover {
  background: var(--kalon-brown);
  border-color: var(--kalon-brown);
  color: var(--white);
}

.section-blog .tf-sw-nav_icon.swiper-button-disabled {
  opacity: 0.35;
  pointer-events: none;
}

.section-blog .swiper-wrapper {
  align-items: stretch;
}

.section-blog .swiper-slide {
  height: auto;
}

.section-blog .sw-line-default {
  margin-top: 32px;
}

/* card */
.blog-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  border-radius: 18px;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line-2);
  text-decoration: none;
  transition: transform 0.4s cubic-bezier(0.22, 0.61, 0.36, 1), box-shadow 0.4s ease, border-color 0.4s ease;
}

.blog-card:hover {
  transform: translateY(-6px);
  border-color: var(--kalon-peach-deep);
  box-shadow: 0 24px 44px -26px rgba(131, 81, 66, 0.45);
}

/* thumbnail */
.blog-card_media {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--main_200);
}

.blog-card_media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.7s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.blog-card:hover .blog-card_media img {
  transform: scale(1.06);
}

/* keeps the badge legible over light photography */
.blog-card_media::after {
  content: "";
  position: absolute;
  inset: 0 0 55% 0;
  background: linear-gradient(rgba(59, 36, 28, 0.28), transparent);
  pointer-events: none;
}

.blog-card_badge {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 1;
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 12px;
  line-height: 1.4;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--kalon-brown-dark);
  background: var(--kalon-peach);
  transition: background-color 0.4s ease;
}

.blog-card:hover .blog-card_badge {
  background: var(--kalon-peach-deep);
}

/* body */
.blog-card_body {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  padding: 24px 26px 26px;
}

.blog-card_meta {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 12px;
  font-size: 13px;
  line-height: 1.4;
  color: var(--text-5);
}

.blog-card_meta .br-dot {
  --size: 4px;
  flex: 0 0 auto;
}

.blog-card_title {
  margin: 0 0 10px;
  font-size: clamp(19px, 1.5vw, 22px);
  line-height: 1.3;
  font-weight: 500;
  color: var(--black);
  /* two lines max so the excerpt below always starts on the same row */
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: color 0.3s ease;
}

.blog-card:hover .blog-card_title {
  color: var(--kalon-brown);
}

.blog-card_excerpt {
  margin: 0 0 20px;
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-5);
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* pinned to the bottom edge of the card */
.blog-card_more {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  color: var(--kalon-brown);
}

.blog-card_more .icon {
  font-size: 14px;
  transition: transform 0.35s ease;
}

.blog-card:hover .blog-card_more .icon {
  transform: translateX(5px);
}

.blog-cta {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}

@media (max-width: 767px) {
  .section-blog .blog-nav {
    justify-content: center;
    margin-bottom: 20px;
  }

  .section-blog .tf-sw-nav_icon {
    width: 38px;
    height: 38px;
    font-size: 16px;
  }

  .blog-card_body {
    padding: 20px 20px 22px;
  }

  .blog-cta {
    margin-top: 32px;
  }
}

@media (prefers-reduced-motion: reduce) {

  .blog-card,
  .blog-card_media img,
  .blog-card_more .icon {
    transition: none;
  }

  .blog-card:hover {
    transform: none;
  }

  .blog-card:hover .blog-card_media img {
    transform: none;
  }
}

/* ---------------------------------------------------------
   11. Mobile menu (offcanvas)
   The static template shipped .canvas-mb / .nav-ul-mb / .mb-menu-link
   styles but no markup. header.php now provides the panel; these rules
   fill the gaps styles.css leaves (sizing, close button, colours).
   --------------------------------------------------------- */
/* styles.css hardcodes 390px, which overflows a 360px phone */
.canvas-mb.offcanvas-start {
  max-width: 86vw;
}

.canvas-mb .offcanvas-content {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.canvas-mb .canvas-header {
  justify-content: space-between;
  gap: 16px;
  border-bottom: 1px solid var(--line-2);
}

.canvas-mb .canvas-header .logo-site img {
  width: auto;
  height: 32px;
  object-fit: contain;
}

.btn-close-canvas {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 1px solid var(--line-2);
  border-radius: 50%;
  background: transparent;
  font-size: 14px;
  color: var(--kalon-brown);
  cursor: pointer;
  transition: background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.btn-close-canvas:hover {
  background: var(--kalon-brown);
  border-color: var(--kalon-brown);
  color: var(--white);
}

.canvas-mb .canvas-body {
  flex: 1;
  min-height: 0;
  padding-top: 24px;
  padding-bottom: 24px;
}

.canvas-mb .mb-content-top {
  overflow-y: auto;
}

.canvas-mb .nav-ul-mb {
  list-style: none;
  margin: 0;
  padding: 0;
}

.canvas-mb .nav-mb-item + .nav-mb-item {
  border-top: 1px solid var(--line-2);
}

.canvas-mb .mb-menu-link {
  padding-top: 14px;
  padding-bottom: 14px;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--kalon-brown-deep);
  transition: color 0.25s ease, padding-left 0.25s ease;
}

.canvas-mb .mb-menu-link:hover,
.canvas-mb .mb-menu-link:focus-visible {
  padding-left: 6px;
  color: var(--kalon-brown);
}

.canvas-mb .canvas-footer {
  padding-top: 20px;
  border-top: 1px solid var(--line-2);
}

.canvas-mb .canvas-footer .link {
  color: var(--kalon-brown);
  transition: color 0.25s ease;
}

.canvas-mb .canvas-footer .link:hover {
  color: var(--kalon-brown-deep);
}

/* the logo is no longer hidden below 1200px, so the hamburger and the
   logo now share .header-left and need to sit on one line */
.header-v2 .header-inner_wrap .header-left {
  display: flex;
  align-items: center;
  gap: 14px;
}

@media (max-width: 1199px) {
  .header-v2 .header-inner_wrap .header-left .logo-site img {
    width: auto;
    height: 26px;
    object-fit: contain;
  }
}

@media (prefers-reduced-motion: reduce) {

  .btn-close-canvas,
  .canvas-mb .mb-menu-link,
  .canvas-mb .canvas-footer .link {
    transition: none;
  }

  .canvas-mb .mb-menu-link:hover,
  .canvas-mb .mb-menu-link:focus-visible {
    padding-left: 0;
  }
}

/* ---------------------------------------------------------
   12. Instagram strip
   Replaces the old .infiniteSlide-gallery cards (469x585 portraits
   at 28-66% of the viewport). Small square tiles instead, so the
   strip reads as a footnote rather than a second hero.
   --------------------------------------------------------- */
.ig-strip {
  /* soft edges keep the marquee from looking full-bleed */
  -webkit-mask-image: linear-gradient(to right, transparent 0, #000 7%, #000 93%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0, #000 7%, #000 93%, transparent 100%);
}

.ig-strip_item {
  width: 208px;
  margin-left: 7px;
  margin-right: 7px;
}

.ig-tile {
  position: relative;
  display: block;
  border-radius: 10px;
  overflow: hidden;
  background: var(--kalon-cream, #fff9f4);
}

.ig-tile img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.ig-tile_overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  color: var(--white);
  background: rgba(59, 36, 28, 0.42);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  /* opacity: 0 alone is not enough — a backdrop-filter keeps painting its blur
     through a fully transparent layer, so linked tiles sat permanently blurred.
     styles.css hides .gallery-v01::before the same way for the same reason. */
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.ig-tile:hover .ig-tile_overlay,
.ig-tile:focus-visible .ig-tile_overlay {
  opacity: 1;
  visibility: visible;
}

.ig-tile:hover img {
  transform: scale(1.06);
}

.ig-tile:focus-visible {
  outline: 2px solid var(--kalon-brown);
  outline-offset: 3px;
}

@media (max-width: 1199px) {
  .ig-strip_item {
    width: 180px;
  }
}

@media (max-width: 767px) {
  .ig-strip_item {
    width: 148px;
    margin-left: 5px;
    margin-right: 5px;
  }

  .ig-tile_overlay {
    font-size: 24px;
  }
}

@media (max-width: 575px) {
  .ig-strip_item {
    width: 126px;
  }
}

@media (prefers-reduced-motion: reduce) {

  /* The marquee itself keeps running. It is the whole point of the section,
     and every other marquee on this page runs regardless of the setting —
     killing only this one made it look broken. Just the hover flourishes go. */
  .ig-tile img,
  .ig-tile_overlay {
    transition: none;
  }

  .ig-tile:hover img {
    transform: none;
  }
}
