/** Shopify CDN: Minification failed

Line 120:16 Expected identifier but found whitespace
Line 120:18 Unexpected "{"
Line 120:35 Expected ":"
Line 121:16 Expected identifier but found whitespace
Line 121:18 Unexpected "{"
Line 121:37 Expected ":"
Line 122:14 Expected identifier but found whitespace
Line 122:16 Unexpected "{"
Line 122:40 Expected ":"
Line 122:45 Expected ":"
... and 25 more hidden warnings

**/
/* SHOPIFY_STYLESHEETS_VERSION: 1.0 */


/* CSS from section stylesheet tags */
/* START_SECTION:category-bubbles (INDEX:13) */
/* ============================================================
     CATEGORY BUBBLES — SQUARE IMAGES (no rounding)
     ============================================================ */
  .category-bubbles-section {
    position: relative;
    z-index: 50;
    background: #EEDEB9;
    border-bottom: 1px solid #f0f0f0;
    width: 100%;
  }

  .category-bubbles-section.is-pinned {
    position: fixed;
    top: var(--bubble-sticky-offset, 0);
    left: 0;
    right: 0;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    animation: bubbleSlideDown 0.28s cubic-bezier(0.4, 0, 0.2, 1);
  }

  @keyframes bubbleSlideDown {
    from { transform: translateY(-100%); }
    to   { transform: translateY(0); }
  }

  .category-bubbles-spacer { width: 100%; display: none; }
  .category-bubbles-section.is-pinned + .category-bubbles-spacer { display: block; }

  .category-bubbles-wrap {
    width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }
  .category-bubbles-wrap::-webkit-scrollbar { display: none; }

  .category-bubbles-track {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 10px 12px;
    width: max-content;
    min-width: 100%;
  }

  .category-bubble {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: inherit;
    flex-shrink: 0;
    width: 72px;
    cursor: pointer;
    transition: transform 0.15s ease;
    -webkit-tap-highlight-color: transparent;
  }
  .category-bubble:hover { transform: translateY(-2px); }
  .category-bubble:active { transform: translateY(0); }

  /* ===== IMAGE WRAPPER — SQUARE (no border-radius, no background) ===== */
  .category-bubble-img-wrap {
    position: relative;
    width: var(--bubble-img-size-mobile, 100px);
    height: var(--bubble-img-size-mobile, 100px);
    border-radius: 0 !important;
    overflow: hidden;
    background: transparent;
    border: var(--bubble-img-border-width, 0) solid var(--bubble-img-border-color, transparent);
    transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
    flex-shrink: 0;
  }

  .category-bubble-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: var(--bubble-img-fit, cover);
    display: block;
    border-radius: 0 !important;
  }

  /* Hover image */
  .category-bubble-img-hover { opacity: 0; transition: opacity 0.3s ease; }
  .category-bubble.has-hover-image:hover .category-bubble-img-hover { opacity: 1; }
  .category-bubble.has-hover-image:hover .category-bubble-img-primary {
    opacity: 0; transition: opacity 0.3s ease;
  }

  .category-bubble-img-placeholder {
    background: linear-gradient(135deg, #f5f5f5, #e8e8e8);
  }

  /* Typography */
  .category-bubble-title {
    margin-top: 8px;
    font-family: {{ font_family_css }};
    font-weight: {{ title_font_weight }};
    font-size: {{ title_font_size_mobile }}px;
    text-transform: {{ title_text_transform }};
    letter-spacing: {{ title_letter_spacing }}px;
    line-height: 1.3;
    text-align: center;
    color: #2C2C2C;
    transition: color 0.2s ease;
    white-space: break-spaces;
    width: 100%;
  }

  /* Active state */
  .category-bubble.is-active .category-bubble-img-wrap {
    border-color: var(--bubble-brand-color, #9334ae);
    box-shadow: 0 2px 8px rgba(147, 52, 174, 0.2);
  }
  .category-bubble.is-active .category-bubble-title {
    color: var(--bubble-brand-color, #9334ae);
    font-weight: {% if title_font_weight == '900' %}900{% else %}800{% endif %};
  }

  /* Tablet */
  @media (min-width: 431px) and (max-width: 768px) {
    .category-bubbles-track { gap: 14px; padding: 12px 16px; justify-content: center; }
    .category-bubble { width: calc(var(--bubble-img-size-tablet, 70px) + 8px); }
    .category-bubble-img-wrap {
      width: var(--bubble-img-size-tablet, 100px);
      height: var(--bubble-img-size-tablet, 100px);
    }
    .category-bubble-title { font-size: {{ title_font_size_tablet }}px; }
  }

  /* Desktop */
  @media (min-width: 769px) {
    .category-bubbles-section { border-bottom: 1px solid #eee; }
    .category-bubbles-wrap { max-width: 1200px; margin: 0 auto; overflow-x: visible; }
    .category-bubbles-track {
      gap: 28px; padding: 16px 24px; width: 100%;
      justify-content: center; flex-wrap: nowrap;
    }
    .category-bubble { width: calc(var(--bubble-img-size-desktop, 80px) + 10px); }
    .category-bubble-img-wrap {
      width: var(--bubble-img-size-desktop, 120px);
      height: var(--bubble-img-size-desktop, 120px);
    }
    .category-bubble:hover .category-bubble-img-wrap {
      border-color: var(--bubble-brand-color, #9334ae);
    }
    .category-bubble-title { font-size: {{ title_font_size_desktop }}px; }

    .category-bubbles-section.is-pinned .category-bubbles-wrap { max-width: 100%; }
    .category-bubbles-section.is-pinned .category-bubbles-track {
      max-width: 1200px; margin: 0 auto;
    }
  }

  /* Mobile */
  @media (max-width: 430px) {
    .category-bubbles-track { gap: 10px; padding: 8px 10px; }
    .category-bubble { width: calc(var(--bubble-img-size-mobile, 60px) + 4px); }
    .category-bubble-img-wrap {
      width: var(--bubble-img-size-mobile, 60px);
      height: var(--bubble-img-size-mobile, 60px);
    }
    .category-bubble-title { font-size: {{ title_font_size_mobile }}px; }
  }

  /* Large Desktop */
  @media (min-width: 1400px) {
    .category-bubbles-track { gap: 36px; padding: 18px 24px; }
  }

  /* Reduced motion */
  @media (prefers-reduced-motion: reduce) {
    .category-bubble,
    .category-bubble-img-wrap,
    .category-bubble-img,
    .category-bubble-title { transition: none; }
    .category-bubbles-section.is-pinned { animation: none; }
    html { scroll-behavior: auto !important; }
  }
/* END_SECTION:category-bubbles */

/* START_SECTION:feature-badges (INDEX:29) */
.feature-badges {
  background: var(--fb-bg, #ffffff);
  color: var(--fb-text, #1a1a1a);
  padding-top: var(--fb-pt, 60px);
  padding-bottom: var(--fb-pb, 60px);
}

.feature-badges__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}

/* ---------- Header ---------- */
.feature-badges__header {
  text-align: center;
  margin-bottom: 40px;
}

.feature-badges__eyebrow {
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--fb-accent, #2a7a3b);
  margin: 0 0 10px;
  font-weight: 600;
}

.feature-badges__title {
  font-size: clamp(24px, 3.2vw, 38px);
  line-height: 1.2;
  margin: 0;
  font-weight: 700;
}

/* ---------- Grid ---------- */
.feature-badges__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 28px 20px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

@media (min-width: 600px) {
  .feature-badges__list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 32px 24px;
  }
}

@media (min-width: 990px) {
  .feature-badges__list {
    /* Auto-fit up to the number of blocks (max 6 across) */
    grid-template-columns: repeat(var(--fb-count, 6), minmax(0, 1fr));
    gap: 24px;
  }
}

/* ---------- Item ---------- */
.feature-badges__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 8px 4px;
}

.feature-badges__icon-wrap {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  transition: transform 0.35s ease;
}

@media (min-width: 750px) {
  .feature-badges__icon-wrap {
    width: 80px;
    height: 80px;
    margin-bottom: 18px;
  }
}

.feature-badges__item:hover .feature-badges__icon-wrap {
  transform: translateY(-4px) scale(1.05);
}

.feature-badges__icon,
.feature-badges__icon-placeholder {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.feature-badges__item-title {
  font-size: 14px;
  line-height: 1.4;
  font-weight: 600;
  margin: 0 0 4px;
  color: var(--fb-text, #1a1a1a);
}

@media (min-width: 750px) {
  .feature-badges__item-title {
    font-size: 15px;
  }
}

@media (min-width: 990px) {
  .feature-badges__item-title {
    font-size: 16px;
  }
}

.feature-badges__item-text {
  font-size: 13px;
  line-height: 1.5;
  margin: 6px 0 0;
  opacity: 0.75;
}

/* ---------- Mobile horizontal scroll (optional fallback for 6+ items) ---------- */
@media (max-width: 599px) {
  .feature-badges__list[style*="--fb-count: 6"],
  .feature-badges__list[style*="--fb-count: 5"] {
    /* Keep the 2-col grid by default; horizontal scroll opt-in below */
  }
}

/* ---------- Accessibility ---------- */
.feature-badges__item:focus-within .feature-badges__icon-wrap {
  transform: translateY(-4px) scale(1.05);
  outline: 2px solid var(--fb-accent, #2a7a3b);
  outline-offset: 6px;
  border-radius: 50%;
}

@media (prefers-reduced-motion: reduce) {
  .feature-badges__icon-wrap,
  .feature-badges__item:hover .feature-badges__icon-wrap {
    transition: none;
    transform: none;
  }
}
/* END_SECTION:feature-badges */

/* START_SECTION:how-to-use (INDEX:63) */
/* ============================================================
     HOW TO USE — BASE
     ============================================================ */
  .htu-section {
    width: 100%;
    background-color: var(--htu-bg, #ffffff);
    padding: 30px 0;
    position: relative;
  }

  .htu-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
  }

  /* ============================================================
     HEADING (consistent with benefits/ingredients sections)
     ============================================================ */
  .htu-heading {
    margin: 0 0 25px;
    text-align: center;
    color: var(--htu-text);
    font-size: 22px;
    font-weight: 500;
    line-height: 1.15;
    text-transform: uppercase;
    letter-spacing: 0.02em;
  }
  .htu-heading .htu-emphasis {
    font-weight: 900;
    color: var(--htu-emphasis);
    padding-right: 0.25em;
  }
  .htu-heading--stacked .htu-emphasis {
    padding-right: 0;
  }

  /* ============================================================
     GRID LAYOUT
     ============================================================ */
  .htu-grid {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 20px;
  }

  .htu-image-col {
    width: 100%;
  }

  .htu-image-wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 632 / 490;
    overflow: hidden;
    border-radius: 8px;
    background: #f5f5f5;
  }
  .htu-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
  }

  .htu-steps-col {
    width: 100%;
  }

  /* ============================================================
     STEPS LIST — base
     ============================================================ */
  .htu-steps {
    list-style: none;
    margin: 0;
    padding: 0;
  }

  .htu-step {
    display: flex;
    gap: 14px;
    align-items: flex-start;
  }

  .htu-step-content {
    flex: 1;
    min-width: 0;
  }

  .htu-step-header {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 8px;
  }

  .htu-step-icon {
    width: 28px;
    height: 28px;
    object-fit: contain;
    flex-shrink: 0;
  }

  .htu-step-title {
    margin: 0;
    flex: 1;
    min-width: 0;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.3px;
    color: var(--htu-step-title);
  }

  .htu-step-prefix {
    font-weight: 700;
    text-transform: uppercase;
  }
  .htu-step-prefix::after {
    content: ' ';
  }

  .htu-step-name {
    font-weight: 700;
  }

  .htu-step-timing {
    display: inline-flex;
    align-items: center;
    gap: 3px;
    font-size: 11px;
    font-weight: 600;
    color: var(--htu-accent);
    background: rgba(201, 123, 90, 0.1);
    padding: 3px 8px;
    border-radius: 999px;
    line-height: 1.2;
  }
  .htu-step-timing svg { flex-shrink: 0; }

  .htu-step-description {
    margin: 0;
    font-size: 13px;
    font-weight: 400;
    line-height: 1.3;
    color: var(--htu-text);
  }

  /* ============================================================
     STEP STYLE 1: Bottom border (Kapiva default)
     ============================================================ */
  .htu-step-border .htu-step {
    flex-direction: column;
    gap: 0;
    margin-top: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--htu-accent);
  }
  .htu-step-border .htu-step:first-child { margin-top: 0; }
  .htu-step-border .htu-step:last-child {
    /* Optional: remove last border for cleaner end */
    /* border-bottom: none; */
  }

  /* ============================================================
     STEP STYLE 2: Numbered circle
     ============================================================ */
  .htu-step-numbered .htu-step {
    margin-bottom: 20px;
  }
  .htu-step-numbered .htu-step:last-child { margin-bottom: 0; }

  .htu-step-number {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--htu-accent);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 700;
    line-height: 1;
  }

  .htu-step-numbered .htu-step-prefix { display: none; }

  /* ============================================================
     STEP STYLE 3: Connected timeline (vertical line)
     ============================================================ */
  .htu-step-timeline .htu-steps {
    position: relative;
  }
  .htu-step-timeline .htu-step {
    margin-bottom: 24px;
    position: relative;
  }
  .htu-step-timeline .htu-step:last-child { margin-bottom: 0; }

  .htu-step-marker {
    flex-shrink: 0;
    position: relative;
    width: 32px;
    display: flex;
    justify-content: center;
    align-self: stretch;
  }
  .htu-step-dot {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--htu-accent);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 700;
    line-height: 1;
    z-index: 1;
    margin-top: 4px;
  }
  /* Connecting line */
  .htu-step-timeline .htu-step:not(:last-child) .htu-step-marker::after {
    content: '';
    position: absolute;
    top: 36px;
    bottom: -24px;
    left: 50%;
    width: 2px;
    background: var(--htu-accent);
    opacity: 0.3;
    transform: translateX(-50%);
  }

  .htu-step-timeline .htu-step-prefix { display: none; }

  .htu-empty {
    padding: 30px 20px;
    text-align: center;
    color: #999;
    font-size: 14px;
  }

  /* ============================================================
     MOBILE (≤430px)
     ============================================================ */
  @media (max-width: 430px) {
    .htu-section { padding: 24px 0; }
    .htu-container { padding: 0 16px; }
    .htu-heading { font-size: 20px; margin-bottom: 22px; }
    .htu-step-title { font-size: 15px; }
    .htu-step-description { font-size: 13px; }
    .htu-step-number,
    .htu-step-dot { width: 32px; height: 32px; font-size: 14px; }
  }

  /* ============================================================
     TABLET (431px – 1023px)
     ============================================================ */
  @media (min-width: 431px) and (max-width: 1023px) {
    .htu-section { padding: 36px 0; }
    .htu-heading { font-size: 26px; margin-bottom: 30px; }
    .htu-grid { gap: 28px; }
    .htu-step-title { font-size: 17px; }
    .htu-step-description { font-size: 14px; }
  }

  /* ============================================================
     DESKTOP (≥1024px) — side-by-side layout
     ============================================================ */
  @media (min-width: 1024px) {
    .htu-section { padding: 48px 0; }
    .htu-container { padding: 0 24px; }
    .htu-heading {
      font-size: 32px;
      margin-bottom: 48px;
    }
    .htu-heading .htu-emphasis { padding-right: 0.5em; }

    /* Two-column grid */
    .htu-grid {
      flex-direction: row;
      align-items: flex-start;
      gap: 30px;
    }
    .htu-image-col { width: 50%; flex-shrink: 0; }
    .htu-steps-col { width: 50%; flex-shrink: 0; }

    /* Image on right (steps on left) */
    .htu-image-right .htu-image-col { order: 2; }
    .htu-image-right .htu-steps-col { order: 1; }

    /* Image on top (force vertical) */
    .htu-image-top .htu-grid { flex-direction: column; }
    .htu-image-top .htu-image-col,
    .htu-image-top .htu-steps-col { width: 100%; }
    .htu-image-top .htu-image-wrap { max-width: 800px; margin: 0 auto; }

    /* Step typography scales up */
    .htu-step-title { font-size: 22px; }
    .htu-step-description { font-size: 18px; line-height: 1.35; }

    .htu-step-border .htu-step {
      margin-top: 24px;
      padding-bottom: 24px;
    }
    .htu-step-border .htu-step-header {
      margin-bottom: 14px;
    }

    .htu-step-number,
    .htu-step-dot { width: 40px; height: 40px; font-size: 17px; }
    .htu-step-icon { width: 32px; height: 32px; }

    .htu-step-timing { font-size: 12px; padding: 4px 10px; }

    .htu-step-timeline .htu-step:not(:last-child) .htu-step-marker::after {
      top: 44px;
      bottom: -28px;
    }
    .htu-step-timeline .htu-step-dot { margin-top: 6px; }
  }

  /* ============================================================
     LARGE DESKTOP (≥1400px)
     ============================================================ */
  @media (min-width: 1400px) {
    .htu-heading { font-size: 36px; }
    .htu-step-title { font-size: 24px; }
    .htu-step-description { font-size: 19px; }
    .htu-grid { gap: 48px; }
  }

  /* Reduced motion */
  @media (prefers-reduced-motion: reduce) {
    .htu-step,
    .htu-image { transition: none; }
  }
/* END_SECTION:how-to-use */

/* START_SECTION:key-ingredients (INDEX:70) */
/* ============================================================
     KEY INGREDIENTS — BASE
     ============================================================ */
  .ki-section {
    width: 100%;
    background-color: var(--ki-bg, #ffffff);
    padding: 30px 0;
  }

  .ki-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 16px;
    box-sizing: border-box;
  }

  /* ============================================================
     HEADING
     ============================================================ */
  .ki-heading {
    margin: 0 0 25px;
    text-align: center;
    color: var(--ki-text);
    font-size: 22px;
    font-weight: 500;
    line-height: 1.15;
    text-transform: uppercase;
    letter-spacing: 0.02em;
  }
  .ki-heading .ki-emphasis {
    font-weight: 900;
    color: var(--ki-emphasis);
    padding-right: 0.25em;
  }
  .ki-heading--stacked .ki-emphasis {
    padding-right: 0;
  }

  /* ============================================================
     INGREDIENTS LIST
     ============================================================ */
  .ki-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .ki-item {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 16px;
  }

  /* Circular image wrap with size scaling */
  .ki-image-wrap {
    flex-shrink: 0;
    width: 75px;
    height: 75px;
    overflow: hidden;
    background: #ffffff;
    transition: transform 0.2s ease;
  }
  .ki-shape-circle  .ki-image-wrap { border-radius: 50%; }
  .ki-shape-rounded .ki-image-wrap { border-radius: 12px; }
  .ki-shape-square  .ki-image-wrap { border-radius: 4px; }

  .ki-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    display: block;
  }
  .ki-image--placeholder {
    background: linear-gradient(135deg, #ffffff, #ffffff);
  }

  /* Content area */
  .ki-content {
    flex: 1;
    min-width: 0;
  }

  .ki-name-row {
    display: flex;
    align-items: baseline;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 4px;
  }

  .ki-name {
    margin: 0;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.1;
    color: var(--ki-text);
  }

  .ki-dosage {
    font-size: 11px;
    font-weight: 600;
    color: var(--ki-accent);
    background: rgba(80, 96, 0, 0.08);
    padding: 2px 8px;
    border-radius: 999px;
    line-height: 1.2;
  }

  .ki-description {
    margin: 0;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.25;
    color: var(--ki-text);
  }

  .ki-origin {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    margin: 6px 0 0;
    font-size: 11px;
    color: var(--ki-accent);
    opacity: 0.85;
    font-style: italic;
  }
  .ki-origin svg { flex-shrink: 0; }

  /* Expandable "Read more" */
  .ki-expandable {
    margin-top: 6px;
  }
  .ki-expandable-toggle {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 12px;
    font-weight: 600;
    color: var(--ki-accent);
    cursor: pointer;
    list-style: none;
    user-select: none;
    -webkit-tap-highlight-color: transparent;
  }
  .ki-expandable-toggle::-webkit-details-marker { display: none; }
  .ki-expandable[open] .ki-expandable-icon { transform: rotate(180deg); }
  .ki-expandable-icon { transition: transform 0.2s ease; }
  .ki-expandable[open] .ki-expandable-label::before { content: 'Show less'; }
  .ki-expandable[open] .ki-expandable-label { font-size: 0; }
  .ki-expandable[open] .ki-expandable-label::before { font-size: 12px; }

  .ki-expandable-content {
    margin-top: 8px;
    padding: 10px 12px;
    background: rgba(0, 0, 0, 0.03);
    border-radius: 6px;
    font-size: 13px;
    line-height: 1.4;
    color: var(--ki-text);
  }

  .ki-empty {
    padding: 40px 20px;
    text-align: center;
    color: #999;
    font-size: 14px;
  }

  /* ============================================================
     MOBILE (≤430px)
     ============================================================ */
  @media (max-width: 430px) {
    .ki-section { padding: 24px 0; }
    .ki-heading { font-size: 20px; margin-bottom: 22px; }
    .ki-list { gap: 18px; }
    .ki-item { gap: 14px; }
    .ki-name { font-size: 14px; }
    .ki-description { font-size: 13px; }
  }

  /* ============================================================
     TABLET (431px – 1023px) — 2 columns by default
     ============================================================ */
  @media (min-width: 431px) and (max-width: 1023px) {
    .ki-section { padding: 36px 0; }
    .ki-container { padding: 0 20px; }
    .ki-heading { font-size: 26px; margin-bottom: 30px; }

    .ki-list {
      flex-direction: row;
      flex-wrap: wrap;
      gap: 25px;
    }
    .ki-cols-1 .ki-item { width: 100%; }
    .ki-cols-2 .ki-item,
    .ki-cols-3 .ki-item { width: calc(50% - 12.5px); }

    .ki-image-wrap { width: 100px; height: 100px; }
    .ki-name { font-size: 16px; }
    .ki-description { font-size: 16px; line-height: 1.2; }
  }

  /* ============================================================
     DESKTOP (≥1024px) — column count from setting
     ============================================================ */
  @media (min-width: 1024px) {
    .ki-section { padding: 48px 0; }
    .ki-container { padding: 0 24px; }
    .ki-heading {
      font-size: 32px;
      margin-bottom: 48px;
    }
    .ki-heading .ki-emphasis { padding-right: 0.5em; }

    .ki-list {
      flex-direction: row;
      flex-wrap: wrap;
      gap: 32px 25px;
    }

    .ki-cols-1 .ki-item { width: 100%; max-width: 720px; margin: 0 auto; }
    .ki-cols-2 .ki-item { width: calc(50% - 12.5px); }
    .ki-cols-3 .ki-item { width: calc(33.333% - 16.67px); }

    .ki-item { gap: 44px; }
    .ki-cols-3 .ki-item { gap: 24px; }

    .ki-image-wrap { width: 145px; height: 145px; }
    .ki-cols-3 .ki-image-wrap { width: 120px; height: 120px; }

    /* Subtle hover effect on desktop */
    .ki-item:hover .ki-image-wrap {
      transform: scale(1.03);
    }

    .ki-name { font-size: 20px; }
    .ki-description { font-size: 18px; line-height: 1.3; }
    .ki-cols-3 .ki-name { font-size: 18px; }
    .ki-cols-3 .ki-description { font-size: 16px; }

    .ki-dosage { font-size: 12px; padding: 3px 10px; }
    .ki-origin { font-size: 13px; }
    .ki-expandable-toggle { font-size: 13px; }
    .ki-expandable-content { font-size: 14px; padding: 12px 14px; }
  }

  /* ============================================================
     LARGE DESKTOP (≥1400px)
     ============================================================ */
  @media (min-width: 1400px) {
    .ki-heading { font-size: 36px; }
    .ki-cols-2 .ki-image-wrap { width: 160px; height: 160px; }
    .ki-cols-2 .ki-name { font-size: 22px; }
    .ki-cols-2 .ki-description { font-size: 19px; }
  }

  /* Reduced motion */
  @media (prefers-reduced-motion: reduce) {
    .ki-image-wrap,
    .ki-expandable-icon { transition: none; }
    .ki-item:hover .ki-image-wrap { transform: none; }
  }
/* END_SECTION:key-ingredients */

/* START_SECTION:product-benefits (INDEX:130) */
/* ============================================================
     PRODUCT BENEFITS — BASE
     ============================================================ */
  .pb-section {
    width: 100%;
    background-color: var(--pb-bg, #ffffff);
    background-image: var(--pb-bg-image, none);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 30px 0;
    position: relative;
  }

  .pb-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
    box-sizing: border-box;
  }

  /* ============================================================
     HEADING VARIANTS
     ============================================================ */
  .pb-heading-wrap {
    margin-bottom: 25px;
  }

  .pb-heading {
    margin: 0;
    color: var(--pb-text);
    line-height: 1.15;
    text-transform: uppercase;
    letter-spacing: 0.02em;
  }

  /* Style 1: Two-line with bold emphasis (Kapiva default) */
  .pb-heading--two-line {
    font-size: 22px;
    font-weight: 500;
  }
  .pb-heading--two-line .pb-emphasis {
    font-weight: 900;
    color: var(--pb-emphasis);
    font-size: 1.1em;
    padding-right: 0.25em;
  }
  .pb-heading--two-line .pb-suffix {
    font-weight: 500;
  }

  /* Style 2: Single line, all caps */
  .pb-heading--single-caps {
    font-size: 22px;
    font-weight: 800;
    color: var(--pb-emphasis);
  }

  /* Style 3: Title + subtitle stacked */
  .pb-heading--with-subtitle {
    display: flex;
    flex-direction: column;
    gap: 6px;
  }
  .pb-heading--with-subtitle .pb-emphasis {
    font-size: 24px;
    font-weight: 900;
    color: var(--pb-emphasis);
  }
  .pb-heading--with-subtitle .pb-subtitle {
    font-size: 14px;
    font-weight: 500;
    text-transform: none;
    letter-spacing: 0.02em;
    opacity: 0.75;
  }

  /* Style 4: Title with decorative lines on either side */
  .pb-heading--with-line {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-size: 18px;
    font-weight: 700;
    flex-wrap: wrap;
  }
  .pb-heading--with-line .pb-line {
    flex: 1;
    max-width: 60px;
    height: 2px;
    background: currentColor;
    opacity: 0.3;
  }
  .pb-heading--with-line .pb-emphasis {
    font-weight: 900;
    color: var(--pb-emphasis);
  }

  /* ============================================================
     BENEFITS GRID
     ============================================================ */
  .pb-grid {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .pb-card {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 360px;
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
  }

  /* Image wrapper with aspect-ratio control */
  .pb-card-image-wrap {
    position: relative;
    width: 100%;
    margin-bottom: 14px;
    overflow: hidden;
    border-radius: 6px;
  }

  /* Aspect ratio variants */
  .pb-shape-landscape .pb-card-image-wrap { aspect-ratio: 230 / 133; }
  .pb-shape-square    .pb-card-image-wrap { aspect-ratio: 1 / 1; }
  .pb-shape-portrait  .pb-card-image-wrap { aspect-ratio: 3 / 4; }
  .pb-shape-circle    .pb-card-image-wrap {
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    max-width: 220px;
    margin-left: auto;
    margin-right: auto;
  }

  .pb-card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
  .pb-card-image--placeholder {
    background: linear-gradient(135deg, #f5f5f5, #e8e8e8);
  }

  .pb-card-title {
    margin: 0 0 10px;
    font-size: 16px;
    font-weight: 900;
    line-height: 1.1;
    color: var(--pb-text);
  }

  .pb-card-description {
    margin: 0;
    font-size: 13px;
    font-weight: 500;
    line-height: 1.35;
    color: var(--pb-text);
    opacity: 0.92;
  }

  .pb-empty-state {
    padding: 40px 20px;
    color: #999;
    font-size: 14px;
  }

  /* ============================================================
     MOBILE (≤430px) — single column, larger images
     ============================================================ */
  @media (max-width: 430px) {
    .pb-section { padding: 24px 0; }
    .pb-container { padding: 0 16px; }
    .pb-heading-wrap { margin-bottom: 20px; }

    .pb-heading--two-line { font-size: 20px; }
    .pb-heading--single-caps { font-size: 20px; }
    .pb-heading--with-subtitle .pb-emphasis { font-size: 22px; }
    .pb-heading--with-line { font-size: 16px; gap: 8px; }
    .pb-heading--with-line .pb-line { max-width: 30px; }

    .pb-grid { gap: 18px; }
    .pb-card { max-width: 320px; }
    .pb-card-title { font-size: 15px; }
    .pb-card-description { font-size: 12.5px; }
  }

  /* ============================================================
     TABLET (431px – 1023px) — 2 columns
     ============================================================ */
  @media (min-width: 431px) and (max-width: 1023px) {
    .pb-section { padding: 36px 0; }
    .pb-heading-wrap { margin-bottom: 30px; }

    .pb-heading--two-line { font-size: 24px; }
    .pb-heading--single-caps { font-size: 26px; }
    .pb-heading--with-subtitle .pb-emphasis { font-size: 28px; }
    .pb-heading--with-subtitle .pb-subtitle { font-size: 15px; }
    .pb-heading--with-line { font-size: 20px; }
    .pb-heading--with-line .pb-line { max-width: 80px; }

    .pb-grid {
      flex-direction: row;
      flex-wrap: wrap;
      align-items: stretch;
      justify-content: center;
      gap: 24px 20px;
    }
    .pb-card {
      flex: 0 1 calc(50% - 10px);
      max-width: calc(50% - 10px);
    }
    .pb-card-title { font-size: 17px; }
    .pb-card-description { font-size: 14px; }
  }

  /* ============================================================
     DESKTOP (≥1024px) — column count from setting
     ============================================================ */
  @media (min-width: 1024px) {
    .pb-section { padding: 48px 0; }
    .pb-container { padding: 0 24px; }
    .pb-heading-wrap { margin: 0 0 40px; }

    .pb-heading--two-line { font-size: 32px; }
    .pb-heading--two-line .pb-emphasis { padding-right: 0.5em; }
    .pb-heading--single-caps { font-size: 34px; }
    .pb-heading--with-subtitle .pb-emphasis { font-size: 36px; }
    .pb-heading--with-subtitle .pb-subtitle { font-size: 16px; }
    .pb-heading--with-line { font-size: 24px; gap: 16px; }
    .pb-heading--with-line .pb-line { max-width: 100px; }

    .pb-grid {
      flex-direction: row;
      flex-wrap: wrap;
      align-items: stretch;
      justify-content: center;
      gap: 40px 24px;
    }

    .pb-cols-2 .pb-card { flex: 0 1 calc(50% - 12px); max-width: 480px; }
    .pb-cols-3 .pb-card { flex: 0 1 calc(33.333% - 16px); max-width: 380px; }
    .pb-cols-4 .pb-card { flex: 0 1 calc(25% - 18px);    max-width: 300px; }

    .pb-card { padding: 0 8px 20px; }
    .pb-card-image-wrap { margin-bottom: 18px; }
    .pb-card-title {
      font-size: 22px;
      margin-bottom: 12px;
      min-height: 49px; /* matches Kapiva — keeps grid aligned across varied title lengths */
    }
    .pb-card-description {
      font-size: 16px;
      line-height: 1.4;
    }
  }

  /* ============================================================
     LARGE DESKTOP (≥1400px)
     ============================================================ */
  @media (min-width: 1400px) {
    .pb-heading--two-line { font-size: 36px; }
    .pb-heading--single-caps { font-size: 38px; }
    .pb-heading--with-subtitle .pb-emphasis { font-size: 40px; }
    .pb-card-title { font-size: 24px; }
    .pb-card-description { font-size: 17px; }
  }

  /* Reduced motion — nothing to disable here, but for safety */
  @media (prefers-reduced-motion: reduce) {
    .pb-card { transition: none; }
  }
/* END_SECTION:product-benefits */

/* START_SECTION:sticky-footer-cta (INDEX:148) */
/* ============================================================
     BASE & MOBILE STYLES (UNCHANGED - already perfect)
     ============================================================ */
  .sticky-footer-cta {
    position: fixed; bottom: 0; left: 0; right: 0;
    z-index: 9998; width: 100%;
    transform: translateY(100%);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
    font-family: inherit;
  }
  .sticky-footer-cta.is-visible { transform: translateY(0); pointer-events: auto; }
  .sticky-footer-cta.is-always-on { transform: translateY(0); pointer-events: auto; }

  .sticky-footer {
    background: #fff;
    box-shadow: 0 -4px 16px rgba(0,0,0,0.08);
    max-width: 100%; margin: 0 auto;
  }

  /* Inner wrappers — width set dynamically by JS on desktop via --sticky-footer-max-width */
  .sticky-footer-header-inner,
  .sticky-footer-main-inner,
  .sticky-footer-trust-inner {
    width: 100%;
  }

  .sticky-footer-header {
    background: linear-gradient(90deg, #2d1b69 0%, #4a2db5 50%, #2d1b69 100%);
    padding: 8px 12px; text-align: center; overflow: hidden; position: relative;
  }
  .sticky-footer-header-text {
    margin: 0; color: #fff; font-size: 13px; line-height: 1.3;
    font-weight: 500; letter-spacing: 0.2px;
  }
  .sticky-footer-header-text strong { font-weight: 700; color: #ffd700; }

  .shine-effect { position: relative; overflow: hidden; }
  .shine-effect::before {
    content: ''; position: absolute; top: 0; left: -100%;
    width: 60%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25) 50%, transparent);
    animation: shineSweep 3s ease-in-out infinite;
  }
  @keyframes shineSweep {
    0% { left: -60%; }
    50% { left: 110%; }
    100% { left: 110%; }
  }

  .sticky-footer-main { padding: 8px 12px; }
  .sticky-footer-main-inner {
    display: flex; align-items: center; justify-content: space-between;
    gap: 10px;
  }
  .sticky-footer-content { display: flex; align-items: center; gap: 10px; flex: 1; min-width: 0; }
  .sticky-footer-image-container {
    flex-shrink: 0; width: 52px; height: 52px;
    border-radius: 8px; overflow: hidden;
    background: #f5f5f5; border: 1px solid #eee;
  }
  .sticky-footer-product-image { width: 100%; height: 100%; object-fit: cover; display: block; }
  .sticky-footer-pricing { flex: 1; min-width: 0; display: flex; flex-direction: column; gap: 2px; }
  .sticky-footer-price-row { display: flex; align-items: baseline; gap: 8px; flex-wrap: wrap; }
  .sticky-footer-mrp { font-size: 12px; color: #555; line-height: 1.2; }
  .sticky-footer-mrp-value { text-decoration: line-through; color: #999; margin-left: 2px; }
  .sticky-footer-current-price {
    font-size: 18px; font-weight: 700; color: #111; line-height: 1.2;
    transition: opacity 0.15s ease;
  }
  /* Brief pulse on price update to draw user's eye */
  .sticky-footer-current-price.is-updating { opacity: 0.4; }
  .sticky-footer-savings-text { font-size: 12px; color: #0a8d3a; font-weight: 600; line-height: 1.2; }

  .sticky-footer-buy-button {
    flex-shrink: 0;
    background: linear-gradient(180deg, #ff8a3d 0%, #ff6f1f 100%);
    color: #fff; border: none; border-radius: 8px;
    padding: 12px 22px; font-size: 15px; font-weight: 700;
    letter-spacing: 0.5px; cursor: pointer; text-transform: uppercase;
    box-shadow: 0 2px 6px rgba(255,111,31,0.35);
    transition: transform 0.15s ease, box-shadow 0.15s ease;
    min-width: 110px; -webkit-tap-highlight-color: transparent;
  }
  .sticky-footer-buy-button:hover { transform: translateY(-1px); box-shadow: 0 4px 10px rgba(255,111,31,0.45); }
  .sticky-footer-buy-button:active { transform: translateY(0); }
  .sticky-footer-buy-button:disabled { background: #999; cursor: not-allowed; box-shadow: none; transform: none; }

  .sticky-footer-trust-footer {
    padding: 6px 12px;
    background: #fafafa; border-top: 1px solid #f0f0f0;
  }
  .sticky-footer-trust-inner {
    display: flex; align-items: center; justify-content: center;
    gap: 24px;
  }
  .sticky-footer-happy-item, .sticky-footer-reviews-item {
    display: flex; align-items: center; gap: 4px;
    font-size: 11px; color: #444; line-height: 1.3;
  }
  .font500 { font-weight: 600; color: #111; }

  .sticky-footer-cta.is-soldout .sticky-footer-buy-button { background: #999; }

  /* ============================================================
     MOBILE (≤430px) — UNCHANGED
     ============================================================ */
  @media (max-width: 430px) {
    .sticky-footer-header-text { font-size: 12px; }
    .sticky-footer-main { padding: 6px 10px; }
    .sticky-footer-main-inner { gap: 8px; }
    .sticky-footer-image-container { width: 46px; height: 46px; }
    .sticky-footer-current-price { font-size: 16px; }
    .sticky-footer-mrp, .sticky-footer-savings-text { font-size: 11px; }
    .sticky-footer-buy-button { padding: 10px 16px; font-size: 13px; min-width: 90px; }
    .sticky-footer-trust-footer { padding: 5px 10px; }
    .sticky-footer-trust-inner { gap: 14px; }
    .sticky-footer-happy-item, .sticky-footer-reviews-item { font-size: 10px; }
  }

  /* ============================================================
     TABLET (431px – 768px) — UNCHANGED
     ============================================================ */
  @media (min-width: 431px) and (max-width: 768px) {
    .sticky-footer { max-width: 600px; }
    .sticky-footer-header-text { font-size: 14px; }
    .sticky-footer-image-container { width: 56px; height: 56px; }
    .sticky-footer-current-price { font-size: 19px; }
  }

  /* ============================================================
     DESKTOP (≥769px) v3.1 — Narrower centered card + rounded top
     ============================================================ */
  @media (min-width: 769px) {
    /* Outer fixed bar is now centered and narrower (not edge-to-edge) */
    .sticky-footer-cta {
      left: 50%;
      right: auto;
      width: var(--sticky-footer-max-width, 1100px);
      max-width: calc(100vw - (var(--sticky-footer-side-margin, 20px) * 2));
      transform: translateX(-50%) translateY(120%);
    }
    .sticky-footer-cta.is-visible,
    .sticky-footer-cta.is-always-on {
      transform: translateX(-50%) translateY(0);
    }

    /* Full-width mode: revert to edge-to-edge bar (no rounding, no centering) */
    .sticky-footer-cta.width-mode-full-width {
      left: 0;
      right: 0;
      width: 100%;
      max-width: 100%;
      transform: translateY(100%);
    }
    .sticky-footer-cta.width-mode-full-width.is-visible,
    .sticky-footer-cta.width-mode-full-width.is-always-on {
      transform: translateY(0);
    }

    /* Card chrome — rounded top corners, elevated shadow */
    .sticky-footer {
      border-radius: var(--sticky-footer-radius, 16px) var(--sticky-footer-radius, 16px) 0 0;
      overflow: hidden;
      box-shadow: 0 -12px 36px rgba(0, 0, 0, 0.14), 0 -2px 8px rgba(0, 0, 0, 0.04);
    }

    /* Full-width mode keeps the bar flat (no top radius since it spans screen) */
    .sticky-footer-cta.width-mode-full-width .sticky-footer {
      border-radius: 0;
      box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.12);
    }

    /* Header is the topmost visible element — clip it to match the card's radius */
    .sticky-footer-header {
      padding: 10px 24px;
      border-radius: var(--sticky-footer-radius, 16px) var(--sticky-footer-radius, 16px) 0 0;
    }
    .sticky-footer-cta.width-mode-full-width .sticky-footer-header {
      border-radius: 0;
    }

    /* Inner wrappers fill the (now-narrower) bar — no inner max-width needed */
    .sticky-footer-header-inner,
    .sticky-footer-main-inner,
    .sticky-footer-trust-inner {
      max-width: 100%;
      margin: 0;
    }

    .sticky-footer-header-text { font-size: 15px; letter-spacing: 0.3px; }
    .sticky-footer-header-text strong { font-size: 16px; }

    .sticky-footer-main { padding: 14px 24px; }
    .sticky-footer-main-inner { gap: 24px; }
    .sticky-footer-content { gap: 18px; }

    .sticky-footer-image-container {
      width: 72px; height: 72px;
      border-radius: 10px; border: 1px solid #e8e8e8;
    }

    .sticky-footer-pricing { gap: 4px; }
    .sticky-footer-price-row { gap: 12px; align-items: baseline; }
    .sticky-footer-mrp { font-size: 14px; color: #666; }
    .sticky-footer-mrp-value { font-size: 14px; }
    .sticky-footer-current-price { font-size: 24px; letter-spacing: -0.3px; }
    .sticky-footer-savings-text { font-size: 14px; color: #08842f; }

    .sticky-footer-buy-button {
      padding: 16px 48px; font-size: 16px; letter-spacing: 1px;
      min-width: 200px; border-radius: 10px;
      box-shadow: 0 4px 12px rgba(255,111,31,0.4);
    }
    .sticky-footer-buy-button:hover {
      transform: translateY(-2px);
      box-shadow: 0 6px 16px rgba(255,111,31,0.5);
    }

    .sticky-footer-trust-footer { padding: 10px 24px; background: #f8f8f8; }
    .sticky-footer-trust-inner { gap: 40px; }
    .sticky-footer-happy-item,
    .sticky-footer-reviews-item { font-size: 13px; gap: 6px; }
    .sticky-footer-happy-item svg,
    .sticky-footer-reviews-item svg { width: 16px; height: 16px; }
  }

  /* ============================================================
     LARGE DESKTOP (≥1400px)
     ============================================================ */
  @media (min-width: 1400px) {
    .sticky-footer-header-text { font-size: 16px; }
    .sticky-footer-current-price { font-size: 26px; }
    .sticky-footer-buy-button {
      padding: 18px 56px; font-size: 17px; min-width: 220px;
    }
  }

  @media (prefers-reduced-motion: reduce) {
    .sticky-footer-cta { transition: none; }
    .shine-effect::before { animation: none; display: none; }
    .sticky-footer-current-price.is-updating { opacity: 1; }
  }
/* END_SECTION:sticky-footer-cta */

/* START_SECTION:what-different (INDEX:154) */
/* ============================================================
   What's Different Section — Styles
   ============================================================ */

.what-different-section {
  width: 100%;
  max-width: 520px;
  margin: 0 auto;
  border: 1.5px solid #c8b8b8;
  border-radius: 10px;
  overflow: hidden;
  background: #ffffff;
  font-family: inherit;
}

/* ----- Header ----- */
.what-different-header {
  background: linear-gradient(135deg, #7a1a2e 0%, #5a0f20 100%);
  padding: 12px 20px;
  text-align: center;
}

.what-different-heading {
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.3px;
  margin: 0;
  line-height: 1.3;
}

/* ----- Grid ----- */
.what-different-grid {
  padding: 12px 16px 14px;
}

.what-different-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 8px;
}

/* ----- Item ----- */
.what-different-item {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  padding: 8px 6px;
}

/* Horizontal dividers — separates every row after the first */
.what-different-item:nth-child(n+3) {
  border-top: 1px solid #f0e8ea;
}

/* ----- Icon Box ----- */
.what-different-icon {
  flex-shrink: 0;
  width: 34px;
  height: 34px;
  background: #f9f0f2;
  border: 1.5px solid #e8d0d5;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #7a1a2e;
}

.what-different-icon img {
  width: 20px;
  height: 20px;
  object-fit: contain;
  display: block;
}

/* ----- Label Text ----- */
.what-different-text {
  font-size: 12.5px;
  color: #2d1a1a;
  line-height: 1.4;
  font-weight: 500;
  padding-top: 2px;
}

/* ============================================================
   Responsive Breakpoints
   ============================================================ */

/* Tablet & up — slightly larger sizing */
@media screen and (min-width: 768px) {
  .what-different-section {
    max-width: 600px;
  }
  .what-different-heading {
    font-size: 17px;
  }
  .what-different-icon {
    width: 38px;
    height: 38px;
  }
  .what-different-icon img {
    width: 22px;
    height: 22px;
  }
  .what-different-text {
    font-size: 13px;
  }
}

/* Desktop — generous sizing */
@media screen and (min-width: 1024px) {
  .what-different-section {
    max-width: 640px;
  }
  .what-different-heading {
    font-size: 18px;
  }
  .what-different-grid {
    padding: 14px 20px 16px;
  }
  .what-different-row {
    gap: 12px 10px;
  }
  .what-different-icon {
    width: 40px;
    height: 40px;
  }
  .what-different-icon img {
    width: 24px;
    height: 24px;
  }
  .what-different-text {
    font-size: 13.5px;
  }
}

/* Small mobile — collapse to single column */
@media screen and (max-width: 360px) {
  .what-different-row {
    grid-template-columns: 1fr;
  }
  .what-different-item:nth-child(n+3) {
    border-top: none;
  }
  .what-different-item:nth-child(n+2) {
    border-top: 1px solid #f0e8ea;
  }
}
/* END_SECTION:what-different */

/* START_SECTION:why-brand (INDEX:155) */
/* ============================================================
     WHY [BRAND] — BASE
     ============================================================ */
  .why-section {
    width: 100%;
    background-color: var(--why-bg, #ffffff);
    padding: 30px 0;
  }

  .why-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
  }

  /* ============================================================
     HEADING
     ============================================================ */
  .why-heading {
    margin: 0 0 25px;
    text-align: center;
    color: var(--why-text);
    font-size: 22px;
    font-weight: 500;
    line-height: 1.15;
    text-transform: uppercase;
    letter-spacing: 0.02em;
  }
  .why-heading .why-emphasis {
    font-weight: 900;
    color: var(--why-emphasis);
  }
  /* Emphasis at end (Kapiva default): "WHY KAPIVA?" — space before bold */
  .why-heading--end .why-emphasis { padding-left: 0.25em; }
  /* Emphasis at start: "KAPIVA WHY" — space after bold */
  .why-heading--start .why-emphasis { padding-right: 0.25em; }
  .why-heading--stacked .why-emphasis,
  .why-heading--stacked .why-prefix {
    display: inline-block;
  }

  /* ============================================================
     GRID — base (2 columns mobile)
     ============================================================ */
  .why-grid {
    display: flex;
    flex-wrap: wrap;
    text-align: center;
    margin: 0 -8px;
  }

  .why-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0 16px;
    margin-bottom: 24px;
  }

  /* Mobile column counts */
  .why-mob-cols-1 .why-card { flex: 0 0 100%;     max-width: 100%; }
  .why-mob-cols-2 .why-card { flex: 0 0 50%;      max-width: 50%; }
  .why-mob-cols-3 .why-card { flex: 0 0 33.333%;  max-width: 33.333%; }

  /* ============================================================
     CARD CONTENTS
     ============================================================ */
  .why-icon-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 60px;
    margin-bottom: 8px;
  }

  .why-icon-img {
    display: block;
    max-width: 100%;
    height: auto;
    max-height: 10px;
    width: auto;
  }

  .why-icon-svg {
    width: 60px;
    height: 60px;
    color: var(--why-title);
  }

  .why-card-title {
    margin: 0 0 4px;
    min-height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.1;
    text-transform: capitalize;
    color: var(--why-title);
    letter-spacing: 0.01em;
  }

  .why-card-description {
    margin: 0;
    font-size: 12.5px;
    font-weight: 400;
    line-height: 1.3;
    color: var(--why-text);
  }

  .why-empty {
    padding: 30px 20px;
    text-align: center;
    color: #999;
    font-size: 14px;
  }

  /* ============================================================
     CARD STYLE VARIANTS
     ============================================================ */

  /* Style 1: Plain (Kapiva default) — no extra styling */
  .why-cards-plain .why-card { /* base */ }

  /* Style 2: Subtle background */
  .why-cards-background .why-card-inner {
    background: var(--why-card-bg);
    border-radius: 12px;
    padding: 20px 16px;
    width: 100%;
  }
  .why-cards-background .why-card {
    padding: 8px;
  }
  .why-cards-background .why-card > * {
    /* Use pseudo-wrap via box */
  }
  /* Apply background by wrapping content visually */
  .why-cards-background .why-card {
    padding: 8px;
  }

  /* Style 3: Border */
  .why-cards-border .why-card {
    padding: 20px 12px;
    margin: 0 8px 16px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 12px;
    flex-basis: calc(50% - 16px) !important;
    max-width: calc(50% - 16px) !important;
  }

  /* Style 4: Hover lift */
  .why-cards-lift .why-card {
    padding: 20px 12px;
    margin: 0 8px 16px;
    border-radius: 12px;
    background: var(--why-card-bg);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    flex-basis: calc(50% - 16px) !important;
    max-width: calc(50% - 16px) !important;
  }
  .why-cards-lift .why-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  }

  /* ============================================================
     MOBILE (≤430px)
     ============================================================ */
  @media (max-width: 430px) {
    .why-section { padding: 24px 0; }
    .why-container { padding: 0 12px; }
    .why-heading { font-size: 20px; margin-bottom: 22px; }
    .why-card { padding: 0 8px; margin-bottom: 18px; }
    .why-icon-wrap { min-height: 56px; }
    .why-icon-img { max-height: 50px; }
    .why-icon-svg { width: 40px; height: 40px; }
    .why-card-title { font-size: 13px; min-height: 36px; }
    .why-card-description { font-size: 12px; }
  }

  /* ============================================================
     TABLET (431px – 1023px) — middle ground
     ============================================================ */
  @media (min-width: 431px) and (max-width: 1023px) {
    .why-section { padding: 36px 0; }
    .why-heading { font-size: 26px; margin-bottom: 30px; }

    /* Mobile mode still applies for mobile-style mobile breakpoint */
    .why-card { margin-bottom: 24px; }
    .why-icon-wrap { min-height: 65px; }
    .why-icon-img { max-height: 60px; }
    .why-icon-svg { width: 48px; height: 48px; }
    .why-card-title { font-size: 16px; min-height: 44px; }
    .why-card-description { font-size: 14px; }
  }

  /* ============================================================
     DESKTOP (≥1024px)
     ============================================================ */
  @media (min-width: 1024px) {
    .why-section { padding: 48px 0; }
    .why-container { padding: 0 24px; }
    .why-heading {
      font-size: 32px;
      margin-bottom: 48px;
    }
    .why-heading--end .why-emphasis { padding-left: 0.5em; }
    .why-heading--start .why-emphasis { padding-right: 0.5em; }

    /* Desktop column counts override mobile */
    .why-desk-cols-2 .why-card { flex: 0 0 50%;      max-width: 50%; }
    .why-desk-cols-3 .why-card { flex: 0 0 33.333%;  max-width: 33.333%; }
    .why-desk-cols-4 .why-card { flex: 0 0 25%;      max-width: 25%; }
    .why-desk-cols-6 .why-card { flex: 0 0 16.666%;  max-width: 16.666%; }

    /* Border / Lift styles need their own width math to account for margins */
    .why-cards-border.why-desk-cols-3 .why-card,
    .why-cards-lift.why-desk-cols-3 .why-card {
      flex-basis: calc(33.333% - 16px) !important;
      max-width: calc(33.333% - 16px) !important;
    }
    .why-cards-border.why-desk-cols-4 .why-card,
    .why-cards-lift.why-desk-cols-4 .why-card {
      flex-basis: calc(25% - 16px) !important;
      max-width: calc(25% - 16px) !important;
    }
    .why-cards-border.why-desk-cols-6 .why-card,
    .why-cards-lift.why-desk-cols-6 .why-card {
      flex-basis: calc(16.666% - 16px) !important;
      max-width: calc(16.666% - 16px) !important;
    }

    .why-card { padding: 0 16px; margin: 0 0 10px; }
    .why-icon-wrap { min-height: 70px; }
    .why-icon-img { max-height: 64px; }
    .why-icon-svg { width: 56px; height: 56px; }
    .why-card-title {
      font-size: 18px;
      min-height: 55px;
      margin-bottom: 6px;
    }
    .why-card-description { font-size: 15px; line-height: 1.35; }

    /* Bordered/lift cards on desktop need extra padding */
    .why-cards-border .why-card,
    .why-cards-lift .why-card {
      padding: 24px 16px;
    }
  }

  /* ============================================================
     LARGE DESKTOP (≥1400px)
     ============================================================ */
  @media (min-width: 1400px) {
    .why-heading { font-size: 36px; }
    .why-card-title { font-size: 20px; }
    .why-card-description { font-size: 16px; }
    .why-icon-svg { width: 64px; height: 64px; }
    .why-icon-img { max-height: 72px; }
  }

  /* Reduced motion */
  @media (prefers-reduced-motion: reduce) {
    .why-cards-lift .why-card { transition: none; }
    .why-cards-lift .why-card:hover { transform: none; }
  }
/* END_SECTION:why-brand */

/* CSS from block stylesheet tags */
/* START_BLOCK:button (INDEX:156) */
.button.button--style {
        color: var(--color-button-style);
        background: var(--bg-button-style);
        border: 1px solid var(--border-button-style);
        max-width: var(--width-button-style);

        @media (min-width: 1025px) {
            &:hover {
                color: var(--color-button-hover-style);
                background: var(--bg-button-hover-style);
                border-color: var(--border-button-hover-style);
            }
        }
    }
/* END_BLOCK:button */

/* START_BLOCK:media (INDEX:157) */
@media screen and (width >= 1025px) {
        .media-block.container-full {
            padding-left: var(--padding-left-full-width);
            padding-right: var(--padding-right-full-width);
        }
    }

    .media-block {
        min-height: var(--section-min-height, 'auto');
    }

    .media-block.container {
        margin: 0;
    }
/* END_BLOCK:media */

/* START_BLOCK:special-heading (INDEX:158) */
:root {
        --text-align-default: left;
    }

    [style*='--horizontal-alignment: center'] .special-heading-block {
        --text-align-default: center;
    }

    [style*='--horizontal-alignment: flex-end'] .special-heading-block {
        --text-align-default: right;
    }

    [style*='--horizontal-alignment: flex-start'] > .special-heading-block {
        --text-align-default: left;
    }

    [style*='--horizontal-alignment: center'] > .special-heading-block {
        --text-align-default: center;
    }

    [style*='--horizontal-alignment: flex-end'] > .special-heading-block {
        --text-align-default: right;
    }

    .special-heading-block {
        background-color: var(--background-color, transparent);
        border-radius: var(--corner-radius, 0rem);
    }

    .special-heading-block.h2 > * {
        font-size: var(--heading-size);
        color: var(--color-heading);
        line-height: var(--heading-line-height);
        text-align: var(--text-align, var(--text-align-default));
        overflow-wrap: anywhere;

        @media (max-width: 767px) {
            font-size: var(--heading-size-mb);
        }
    }

    .special-heading-block.h2 p {
        margin: unset;
    }

    .special-heading-block.h2 .special_text--color {
        color: var(--special_heading_color);
    }

    .special-heading-block.h2 .special_text--background {
        color: transparent;
        background-image: var(--special_heading_image);
        background-clip: text;
        -webkit-background-clip: text;
        background-position: center;
        background-size: cover;
    }
/* END_BLOCK:special-heading */

/* CSS from snippet stylesheet tags */
/* START_SNIPPET:background-image (INDEX:170) */
.background-image-container img {
    object-fit: cover;
    width: 100%;
    height: 100%;
  }

  .background-image-fit img {
    object-fit: contain;
  }
/* END_SNIPPET:background-image */

/* START_SNIPPET:background-video (INDEX:172) */
.video-background,
  .video-background * {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
  }

  .video-background--cover * {
    object-fit: cover;
  }

  .video-background--contain * {
    object-fit: contain;
  }

  @media (prefers-reduced-motion: reduce) {
    video-background-component video {
      display: none;
    }
  }
/* END_SNIPPET:background-video */

/* START_SNIPPET:overlay (INDEX:457) */
.overlay {
    position: absolute;
    inset: 0;
    z-index: var(--overlay-layer);
    pointer-events: none;
    border-radius: var(--overlay-border-radius, 0px);
  }

  .overlay--solid {
    background: var(--overlay-color);
  }

  .overlay--gradient {
    background: linear-gradient(var(--overlay-direction), var(--overlay-color), var(--overlay-color--end));
  }
/* END_SNIPPET:overlay */

/* START_SNIPPET:section (INDEX:538) */
.section-content-wrapper.section-content-wrapper {
        min-height: calc(var(--section-min-height, 'auto') - var(--section-height-offset, 0px));
        position: relative;
        width: 100%;
        height: 100%;
    }

    .section-wrapper .section {
        min-height: var(--section-min-height, 'auto');
    }

    .section[data-shopify-visual-preview] {
        min-height: var(--section-preview-height);
        padding-top: 0;
    }

    .section[data-shopify-visual-preview] .custom-section-background {
        display: none;
    }

    body:has(> #header-group > .header-section > #header-component[transparent]):not(
        :has(> #header-group > .header-section + .shopify-section)
        )
        > main
        > .section-wrapper:first-child {
        --section-height-offset: var(--header-group-height, 0);
    }

    .section-wrapper .custom-section-background {
        grid-column: 1 / -1;
    }

    .custom-section-content {
        z-index: var(--layer-flat);
    }

    @media screen and (width >= 1025px) {
        .custom-section .container-full {
            padding-left: var(--padding-left-full-width);
            padding-right: var(--padding-right-full-width);
        }
    }

    .layout-panel-flex {
        display: flex !important;
        gap: var(--gap);
        height: 100%;
    }

    .layout-panel-flex--row {
        flex-flow: row var(--flex-wrap);
        justify-content: var(--horizontal-alignment);
        align-items: var(--vertical-alignment);
    }

    .layout-panel-flex--column {
        flex-flow: column var(--flex-wrap);
        align-items: var(--horizontal-alignment);
        justify-content: var(--vertical-alignment);
    }

    @media screen and (width < 750px) {
        .mobile-column {
            flex-flow: column nowrap;
            align-items: var(--horizontal-alignment);
            justify-content: var(--vertical-alignment-mobile);
        }

        .layout-panel-flex--row:not(.mobile-column) {
            .text-block {
                flex: 1 1 var(--max-width--display-tight);
            }

            .image-block {
                flex: 1 1 var(--size-style-width-mobile-min);
            }

            .button {
                flex: 0 0 fit-content;
            }
        }
    }

    @media (width >= 750px) {
        .layout-panel-flex {
            flex-direction: var(--flex-direction);
        }
    }
/* END_SNIPPET:section */

/* START_SNIPPET:text (INDEX:547) */
:root {
    --text-align-default: left;
  }

  [style*='--horizontal-alignment: center'] .text-block {
    --text-align-default: center;
  }

  [style*='--horizontal-alignment: flex-end'] .text-block {
    --text-align-default: right;
  }

  [style*='--horizontal-alignment: flex-start'] > .text-block {
    --text-align-default: left;
  }

  [style*='--horizontal-alignment: center'] > .text-block {
    --text-align-default: center;
  }

  [style*='--horizontal-alignment: flex-end'] > .text-block {
    --text-align-default: right;
  }

  .text-block {
    max-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: var(--horizontal-alignment);
  }

  .text-block,
  .text-block > * {
    width: var(--width);
    text-align: var(--text-align, var(--text-align-default));
    text-wrap: var(--text-wrap);
  }

  .text-block:not(.text-block--full-width).rte,
  .text-block:not(.text-block--full-width).paragraph {
    /* Safari doesn't support pretty, so fallback to balance */
    text-wrap: balance;
    text-wrap: pretty;
  }

  .text-block:not(.text-block--full-width):is(.h1, .h2, .h3, .h4, .h5, .h6) {
    text-wrap: balance;
  }

  /* Hide underline unless text is using paragraph styles. */
  .text-block:is(.h1, .h2, .h3, .h4, .h5, .h6) a {
    text-decoration-color: transparent;
  }

  .text-block,
  .text-block > :is(h1, h2, h3, h4, h5, h6, p, *) {
    color: var(--color-text);
    font-size: var(--font-size-text);
    line-height: var(--text-line-height);
    font-weight: var(--font-weight-text);
    max-width: var(--cus-width-text);
    overflow-wrap: break-word;
    margin-top: 0;
    margin-bottom: 0;

    @media (max-width: 1024px) {
      font-size: var(--font-size-text-mb);
    }
  }

  .text-block > *:first-child {
    margin-block-start: 0;
  }

  .text-block > *:last-child {
    margin-block-end: 0;
  }

  .text-block > * + * {
    margin-top: 2rem;
  }

  .text-block--align-center,
  .text-block--align-center > * {
    margin-inline: auto;
  }

  .text-block--align-right,
  .text-block--align-right > * {
    margin-inline-start: auto;
  }

  .text-block--background {
    background-color: var(--text-background-color);
    border-radius: var(--text-corner-radius);
  }
/* END_SNIPPET:text */