/** Shopify CDN: Minification failed

Line 1035:6 Unexpected "{"
Line 1035:15 Expected ":"
Line 1042:6 Unexpected "{"
Line 1042:15 Expected ":"
Line 1043:6 Unexpected "{"
Line 1043:15 Expected ":"
Line 3544:6 Unexpected "{"
Line 3544:15 Expected ":"
Line 3551:6 Unexpected "{"
Line 3551:15 Expected ":"
... and 2 more hidden warnings

**/
/* SHOPIFY_STYLESHEETS_VERSION: 1.0 */


/* CSS from section stylesheet tags */
/* START_SECTION:faq (INDEX:19) */
/* ── Section wrapper ── */
.faq-section {
  background: linear-gradient(
    var(--faq-gradient-angle, 45deg),
    var(--faq-gradient-color-1, #76ACE1) var(--faq-gradient-stop-1, 15%),
    var(--faq-gradient-color-2, #85FFF7) var(--faq-gradient-stop-2, 82%)
  );
  color: var(--faq-text-color, #252728);
  padding: var(--faq-padding-top, 48px) 0 var(--faq-padding-bottom, 48px);
}

.faq-inner {
  max-width: var(--page-width, 1200px);
  margin: 0 auto;
  padding-left: 24px;
  padding-right: 24px;
}

/* ── Two-column layout ── */
.faq-layout {
  display: grid;
  grid-template-columns: var(--faq-heading-col, 40rem) 1fr;
  gap: 48px;
  align-items: start;
}

/* ── Left: heading column ── */
.faq-heading-col {
  position: sticky;
  top: 24px;
}

/* ── Section heading — h2 ── */
.faq-heading {
  font-family: var(--font-heading-family);
  font-style: var(--font-heading-style);
  font-weight: var(--font-heading-weight);
  font-size: calc(var(--font-heading-scale) * 2.5rem);
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin: 0 0 16px;
  color: var(--faq-text-color, #333333);
  text-align:center
}

/* ── Subtext — p ── */
.faq-subtext {
  font-family: var(--font-body-family);
  font-style: var(--font-body-style);
  font-weight: var(--font-body-weight);
  font-size: 1.5rem;
  line-height: 1.6;
  margin: 0;
  color: var(--faq-text-color, #252728);
  opacity: 0.85;
}

/* ── Accordion ── */
.faq-accordion {
  border-bottom: 1px solid var(--faq-border-color, rgba(28, 28, 28, 0.08));
}

.faq-item {
  border-top: 1px solid var(--faq-border-color, rgba(28, 28, 28, 0.08));
}

/* ── Trigger button ── */
.faq-item__trigger {
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  padding: 12px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  text-align: left;
  color: var(--faq-text-color, #333);
}

/* ── Question — h3 ── */
.faq-item__question {
  font-family: var(--font-heading-family);
  font-style: var(--font-heading-style);
  font-weight: var(--font-heading-weight);
  font-size: 1.5rem;
  line-height: 1.3;
  margin: 0;
  color: var(--faq-text-color, #252728);
  flex: 1;
}

/* ── Chevron icon ── */
.faq-item__icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.25s ease;
}

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

/* ── Answer panel ── */
.faq-item__panel {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.3s ease;
}

.faq-item__panel:not([hidden]) {
  /* max-height set by JS */
}

.faq-item__answer {
  font-family: var(--font-body-family);
  font-style: var(--font-body-style);
  font-weight: var(--font-body-weight);
  font-size: 1.5rem;
  line-height: 1.6;
  color: var(--faq-text-color, #252728);
  padding-bottom: 24px;
}

.faq-item__answer p {
  margin: 0 0 12px;
}

.faq-item__answer p:last-child {
  margin-bottom: 0;
}

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

.faq-item__answer li {
  margin-bottom: 6px;
}

/* ── Mobile ── */
@media (max-width: 749px) {
  .faq-layout {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .faq-heading-col {
    position: static;
  }

  .faq-item__trigger {
    padding: 18px 0;
  }
}
/* END_SECTION:faq */

/* START_SECTION:feature-split (INDEX:20) */
/* ── Section wrapper ── */
.fs-section {
  background: linear-gradient(
    var(--fs-gradient-angle, 93deg),
    var(--fs-gradient-color-1, #F4A88E),
    var(--fs-gradient-color-2, #F9D3B6) 100%
  );
  color: var(--fs-text-color, #252728);
  padding: var(--fs-padding-top, 60px) 0 var(--fs-padding-bottom, 60px);
}

.fs-inner {
  max-width: var(--page-width, 1200px);
  margin: 0 auto;
  padding-left: 24px;
  padding-right: 24px;
}

/* ── Heading — h2 ── */
.fs-heading {
  font-family: var(--font-heading-family);
  font-style: var(--font-heading-style);
  font-weight: var(--font-heading-weight);
  font-size: calc(var(--font-heading-scale) * 2.5rem);
  line-height: 1.2;
  letter-spacing: -0.02em;
  text-align: center;
  margin: 0 0 20px;
  color: var(--fs-text-color, #252728);
}

/* ── Subtext — p ── */
.fs-subtext {
  font-family: var(--font-body-family);
  font-style: var(--font-body-style);
  font-weight: var(--font-body-weight);
  font-size: 1.5rem;
  line-height: 1.6;
  text-align: center;
  margin: 0 auto 40px;
  max-width: 720px;
  color: var(--fs-text-color, #252728);
  opacity: 0.9;
}

/* ── Two-column layout ── */
.fs-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.fs-columns--flipped .fs-col--image {
  order: 2;
}

.fs-columns--flipped .fs-col--list {
  order: 1;
}

/* ── Image column ── */
.fs-col--image {
  width: 100%;
}

.fs-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--fs-image-radius, 16px);
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.fs-image--placeholder {
  width: 100%;
  aspect-ratio: 1 / 1;
  background: rgba(0, 0, 0, 0.05);
  border-radius: var(--fs-image-radius, 16px);
}

/* ── Feature list ── */
.fs-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.fs-list__item {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 14px;
}

/* Icon or bullet */
.fs-list__icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.fs-list__icon-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.fs-list__bullet {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body-family);
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--fs-text-color, #252728);
}

/* ── Feature title — h3 ── */
.fs-list__title {
  font-family: var(--font-heading-family);
  font-style: var(--font-heading-style);
  font-weight: var(--font-heading-weight);
  font-size: 1.8rem;
  line-height: 1.3;
  letter-spacing: -0.01em;
  margin: 0 0 4px;
  color: var(--fs-text-color, #252728);
}

/* ── Feature description — p ── */
.fs-list__desc {
  font-family: var(--font-body-family);
  font-style: var(--font-body-style);
  font-weight: var(--font-body-weight);
  font-size: 1.5rem;
  line-height: 1.6;
  margin: 0;
  color: var(--fs-text-color, #252728);
  opacity: 0.85;
}

/* ── Mobile ── */
@media (max-width: 749px) {
  .fs-heading {
    margin-bottom: 20px;
  }

  .fs-subtext {
    margin-bottom: 28px;
  }

  .fs-columns {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  /* Image always on top on mobile regardless of flip setting */
  .fs-col--image {
    order: 1 !important;
  }

  .fs-col--list {
    order: 2 !important;
  }

}
/* END_SECTION:feature-split */

/* START_SECTION:hero-slideshow (INDEX:27) */
.hs-section {
  position: relative;
  overflow: hidden;
}

.hs-slider {
  position: relative;
}

.hs-slide {
  display: none;
}
.hs-slide.is-active {
  display: block;
}

.hs-slide__inner {
  display: flex;
  flex-direction: row;
  min-height: 420px;
}

.hs-slide__text {
  flex: 0 0 calc(var(--hs-text-ratio, 65) * 1%);
  width: calc(var(--hs-text-ratio, 65) * 1%);
  background-color: var(--hs-text-bg, #f2f2f2);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 60px 64px;
  box-sizing: border-box;
}

.hs-slide__image-wrap {
  flex: 0 0 calc(var(--hs-image-ratio, 35) * 1%);
  width: calc(var(--hs-image-ratio, 35) * 1%);
  position: relative;
  overflow: hidden;
}

.hs-slide__inner--reversed .hs-slide__text {
  order: 2;
}
.hs-slide__inner--reversed .hs-slide__image-wrap {
  order: 1;
}

.hs-slide__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hs-slide__img--placeholder {
  width: 100%;
  height: 100%;
  background: #e8e8e8;
}

/* ── Logo ── */
.hs-slide__logo-wrap {
  margin-bottom: 24px;
}

.hs-slide__logo {
  display: block;
  width: var(--hs-logo-size, 120px);
  height: auto;
  object-fit: contain;
}

/* ── Typography — each element uses its own color var ── */
.hs-slide__heading {
  font-family: var(--font-heading-family);
  font-style: var(--font-heading-style);
  font-weight: var(--font-heading-weight);
  font-size: var(--hs-heading-size, 36px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: 0 0 16px;
  color: var(--hs-heading-color, #000000);
}

.hs-slide__subtext {
  font-family: var(--font-body-family);
  font-style: var(--font-body-style);
  font-weight: var(--font-body-weight);
  font-size: var(--hs-subtext-size, 16px);
  line-height: 1.5;
  margin: 0 0 32px;
  color: var(--hs-subtext-color, #000000);
}

/* ── CTA button ── */
.hs-slide__btn {
  display: inline-block;
  font-family: var(--font-body-family);
  font-weight: 600;
  font-size: var(--hs-btn-size, 13px);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--hs-btn-text, #000000);
  background-color: var(--hs-btn-bg, transparent);
  border: 1.5px solid var(--hs-btn-text, #000000);
  padding: 14px 24px;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.hs-slide__btn:hover {
  background-color: var(--hs-btn-hover-bg, #000000);
  color: var(--hs-btn-hover-text, #ffffff);
  border-color: var(--hs-btn-hover-bg, #000000);
}

/* ── Arrows ── */
.hs-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.85);
  border: none;
  cursor: pointer;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(0,0,0,0.12);
  transition: background 0.2s;
}
.hs-arrow:hover { background: #fff; }
.hs-arrow--prev { left: 16px; }
.hs-arrow--next { right: 16px; }

/* ── Dots ── */
.hs-dots {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
}

.hs-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  background: rgba(0,0,0,0.25);
  cursor: pointer;
  padding: 0;
  transition: background 0.2s, transform 0.2s;
}

.hs-dot.is-active {
  background: rgba(0,0,0,0.75);
  transform: scale(1.25);
}

/* ── Mobile ── */
@media (max-width: 749px) {
  .hs-slide__inner,
  .hs-slide__inner--reversed {
    flex-direction: column;
    min-height: unset;
  }

  .hs-slide__image-wrap {
    order: 1 !important;
    width: 100%;
    flex: unset;
    aspect-ratio: 1 / 1;
  }

  .hs-slide__text {
    order: 2 !important;
    width: 100%;
    flex: unset;
    padding: 36px 24px;
  }

  .hs-slide__logo {
    width: calc(var(--hs-logo-size, 120px) * 0.75);
  }

  .hs-arrow--prev { left: 8px; }
  .hs-arrow--next { right: 8px; }
}
/* END_SECTION:hero-slideshow */

/* START_SECTION:influencer-landing-development (INDEX:30) */
/* ── FAQ Block ── */
.ilp-faq {
  color: var(--ilp-faq-text, var(--ilp-text, #1a1a1a));
}

.ilp-faq__inner {
  background: var(--ilp-faq-bg, transparent);
  border-radius: var(--ilp-faq-radius, 0);
}

.ilp-faq__header {
  max-width: 760px;
  margin: 0 auto 24px;
  text-align: center;
}

.ilp-faq__eyebrow {
  margin-bottom: 8px;
  font-family: var(--font-body-family);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ilp-faq-muted, rgba(var(--color-foreground), 0.58));
}

.ilp-faq__heading {
  margin: 0;
  font-family: var(--font-heading-family);
  font-style: var(--font-heading-style);
  font-weight: var(--font-heading-weight);
  font-size: 28px;
  line-height: 1.22;
  color: var(--ilp-faq-text, var(--ilp-text, #1a1a1a));
}

.ilp-faq__description {
  margin-top: 12px;
  font-family: var(--font-body-family);
  font-size: 14px;
  line-height: 1.7;
  color: var(--ilp-faq-muted, rgba(var(--color-foreground), 0.68));
}

.ilp-faq__list {
  max-width: 860px;
  margin: 0 auto;
  background: var(--ilp-faq-panel-bg, #ffffff);
  border: 1px solid var(--ilp-faq-border, rgba(var(--color-foreground), 0.12));
  border-radius: var(--ilp-faq-radius, 0);
  overflow: hidden;
}

.ilp-faq__item + .ilp-faq__item {
  border-top: 1px solid var(--ilp-faq-border, rgba(var(--color-foreground), 0.12));
}

.ilp-faq__summary {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 20px;
  cursor: pointer;
  font-family: var(--font-body-family);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.45;
  color: var(--ilp-faq-text, var(--ilp-text, #1a1a1a));
  -webkit-tap-highlight-color: transparent;
}

.ilp-faq__summary::-webkit-details-marker {
  display: none;
}

.ilp-faq__icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(var(--color-foreground), 0.06);
  color: var(--ilp-faq-text, var(--ilp-text, #1a1a1a));
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 24px;
  font-size: 17px;
  line-height: 1;
  transition: transform 0.2s ease;
}

.ilp-faq__item[open] .ilp-faq__icon {
  transform: rotate(45deg);
}

.ilp-faq__answer {
  padding: 0 20px 20px;
  font-family: var(--font-body-family);
  font-size: 14px;
  line-height: 1.75;
  color: var(--ilp-faq-muted, rgba(var(--color-foreground), 0.72));
}

.ilp-faq__answer > *:first-child {
  margin-top: 0;
}

.ilp-faq__answer > *:last-child {
  margin-bottom: 0;
}

@media (max-width: 749px) {
  .ilp-faq__header {
    margin-bottom: 18px;
  }

  .ilp-faq__heading {
    font-size: 23px;
  }

  .ilp-faq__summary {
    padding: 16px;
    font-size: 14px;
  }

  .ilp-faq__answer {
    padding: 0 16px 16px;
    font-size: 13px;
  }
}


.ilp-qv__thumb {
  -webkit-tap-highlight-color: transparent;
}

.ilp-qv__thumb.is-active {
  opacity: 1;
}


/* ── Draggable Back To Top Block ── */
.ilp-scroll-top-block {
  display: flex;
  justify-content: center;
  text-align: center;
}

.ilp-scroll-top-block__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 44px;
  padding: 0 20px;
  border-radius: 999px;
  border: 1px solid var(--ilp-scroll-top-border, rgba(var(--color-foreground), 0.18));
  background: var(--ilp-scroll-top-bg, rgba(255,255,255,0.46));
  color: var(--ilp-scroll-top-text, var(--ilp-text, #1a1a1a));
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  font-family: var(--font-body-family);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease, opacity 0.2s ease;
  -webkit-tap-highlight-color: transparent;
}

.ilp-scroll-top-block__btn:hover {
  opacity: 0.86;
  transform: translateY(-1px);
}

.ilp-scroll-top-block__icon {
  width: 18px;
  height: 18px;
  display: inline-flex;
  flex-shrink: 0;
}

.ilp-scroll-top-block__icon svg {
  width: 100%;
  height: 100%;
  display: block;
  fill: currentColor;
}

.ilp-scroll-top-block__text {
  line-height: 1;
  white-space: nowrap;
}



/* ── Hide Footer On Influencer Landing Page ── */
body:has(.ilp-page) #shopify-section-footer,
body:has(.ilp-page) .footer,
body:has(.ilp-page) footer,
body:has(.ilp-page) .shopify-section-group-footer-group {
  display: none !important;
}


.ilp-page {
  background: var(--ilp-bg, #ffffff);
  color: var(--ilp-text, #1a1a1a);
}

/* ── Button ── */
.ilp-btn {
  display: inline-block;
  background: var(--ilp-btn-bg, #1a1a1a);
  color: var(--ilp-btn-text, #ffffff);
  font-family: var(--font-body-family);
  font-style: var(--font-body-style);
  font-weight: 600;
  font-size: var(--ilp-fs-btn, 14px);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 1.2rem 2.8rem;
  border: none;
  cursor: pointer;
  transition: background 0.2s ease;
  margin-top: 1.6rem;
}
.ilp-btn:hover {
  background: var(--ilp-btn-hover, #333333);
  color: var(--ilp-btn-text, #ffffff);
}

/* ── 1. Profile ── */
.ilp-profile__inner {
  display: flex;
  align-items: flex-start;
  gap: 3.2rem;
}
.ilp-profile__avatar-wrap {
  flex-shrink: 0;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid rgba(0,0,0,0.08);
}
.ilp-profile__avatar {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
}
.ilp-profile__content { flex: 1; min-width: 0; }
.ilp-profile__name {
  font-family: var(--font-heading-family);
  font-style: var(--font-heading-style);
  font-weight: var(--font-heading-weight);
  font-size: var(--ilp-fs-profile-name, 28px);
  line-height: 1.2;
  margin: 0 0 1rem;
  color: var(--ilp-text, #1a1a1a);
}
.ilp-profile__desc {
  font-family: var(--font-body-family);
  font-size: var(--ilp-fs-profile-desc, 16px);
  line-height: 1.7;
  color: var(--ilp-text, #1a1a1a);
  margin: 0;
}

/* ── 2. Banner ── */
.ilp-banner { position: relative; width: 100%; overflow: hidden; }
.ilp-banner__click { display: block; cursor: pointer; }
.ilp-banner__image--desktop { display: block; }
.ilp-banner__image--mobile  { display: none; }
.ilp-banner__img {
  width: 100%; height: auto; display: block;
  transition: transform 0.4s ease;
}
.ilp-banner__click:hover .ilp-banner__img { transform: scale(1.01); }
.ilp-banner__overlay {
  position: absolute;
  padding: 3.2rem 4rem;
  max-width: 560px;
  pointer-events: none;
}
.ilp-banner__overlay .ilp-btn--banner,
.ilp-banner__overlay a { pointer-events: auto; }
.ilp-banner__overlay--top-left     { top: 0; left: 0; }
.ilp-banner__overlay--top-right    { top: 0; right: 0; left: auto; text-align: right; }
.ilp-banner__overlay--center       { top: 50%; left: 50%; transform: translate(-50%,-50%); text-align: center; max-width: 640px; }
.ilp-banner__overlay--bottom-left  { bottom: 0; left: 0; top: auto; }
.ilp-banner__overlay--bottom-right { bottom: 0; right: 0; left: auto; top: auto; text-align: right; }
.ilp-banner__heading {
  font-family: var(--font-heading-family);
  font-style: var(--font-heading-style);
  font-weight: var(--font-heading-weight);
  font-size: var(--ilp-fs-banner-head, 36px);
  line-height: 1.15;
  margin: 0 0 1rem;
  color: #ffffff;
  text-shadow: 0 1px 4px rgba(0,0,0,0.4);
}
.ilp-banner__desc {
  font-family: var(--font-body-family);
  font-size: var(--ilp-fs-banner-desc, 16px);
  line-height: 1.6;
  color: #ffffff;
  text-shadow: 0 1px 3px rgba(0,0,0,0.35);
  margin: 0;
}
.ilp-btn--banner { background: #ffffff; color: #1a1a1a; }
.ilp-btn--banner:hover { background: rgba(255,255,255,0.85); color: #1a1a1a; }

/* ── 3. Countdown ── */
.ilp-countdown { background: var(--ilp-timer-bg, #1a1a1a); padding: 40px 0; border-bottom:1px solid #1a1a1a }
.ilp-countdown__inner {
  display: flex; flex-direction: column;
  align-items: center; gap: 1.6rem; text-align: center;
}
.ilp-countdown__heading {
  font-family: var(--font-body-family);
  font-size: var(--ilp-fs-timer-heading, 14px);
  font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--ilp-timer-label, rgba(255,255,255,0.6)); margin: 0;
}
.ilp-countdown__timer { display: flex; align-items: flex-start; gap: 0.8rem; }
.ilp-countdown__unit  { display: flex; flex-direction: column; align-items: center; min-width: 72px; }
.ilp-countdown__number {
  font-family: var(--font-heading-family);
  font-style: var(--font-heading-style);
  font-weight: var(--font-heading-weight);
  font-size: var(--ilp-fs-timer-number, 52px);
  line-height: 1;
  color: var(--ilp-timer-text, #ffffff);
  letter-spacing: -0.02em;
}
.ilp-countdown__label {
  font-family: var(--font-body-family);
  font-size: var(--ilp-fs-timer-label, 11px);
  font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--ilp-timer-label, rgba(255,255,255,0.55)); margin-top: 0.4rem;
}
.ilp-countdown__sep {
  font-family: var(--font-heading-family);
  font-size: var(--ilp-fs-timer-number, 52px);
  line-height: 1; color: var(--ilp-timer-text, #ffffff); opacity: 0.4; padding-top: 0.05em;
}
.ilp-countdown__subtext {
  font-family: var(--font-body-family);
  font-size: var(--ilp-fs-timer-label, 14px);
  color: var(--ilp-timer-label, rgba(255,255,255,0.55)); margin: 0;
}
.ilp-countdown__ended {
  font-family: var(--font-body-family);
  font-size: var(--ilp-fs-timer-heading, 16px);
  color: var(--ilp-timer-text, #ffffff); margin: 0;
}

/* ── 4. Video — YouTube style layout ── */
.ilp-video__inner { display: flex; flex-direction: column; gap: 2rem; }
.ilp-video__heading {
  font-family: var(--font-heading-family);
  font-style: var(--font-heading-style);
  font-weight: var(--font-heading-weight);
  font-size: var(--ilp-fs-video-head, 26px);
  line-height: 1.2; margin: 0;
  color: var(--ilp-text, #1a1a1a); text-align: center;
}

/* Two-column layout: left player, right info */
.ilp-video__yt-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: stretch;
  background: #F4F0E8;
}

/* Left: embed */
.ilp-video__yt-player { width: 100%; }
.ilp-video__wrap {
  position: relative; width: 100%;
  aspect-ratio: 16 / 9; overflow: hidden; background: #000;
  height: 100%;
}
.ilp-video__wrap iframe {
  position: absolute; top: 0; left: 0;
  width: 100%; height: 100%; border: none;
}

/* Right: info panel — YouTube dark style */
.ilp-video__yt-info {
  background: #F4F0E8;
  padding: 2.4rem 2.8rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  border-top: 1px solid #6E463A;
}

.ilp-video__yt-meta {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

/* Title — full text */
.ilp-video__yt-title {
  font-family: var(--font-body-family);
  font-weight: 600;
  font-size: var(--ilp-fs-video-head, 18px);
  line-height: 1.4;
  color: #000;
  margin: 0;
  white-space: normal;
  overflow: visible;
}

/* Watch link */
.ilp-video__yt-watch {
  font-family: var(--font-body-family);
  font-size: 1.3rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: #000;
  text-decoration: none;
  text-transform: uppercase;
  align-self: flex-start;
  margin-top: 0.6rem;
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  transition: opacity 0.2s ease;
}
.ilp-video__yt-watch:hover { opacity: 0.65; }
.ilp-video__yt-watch-icon {
  width: 28px;
  height: 28px;
  border: 1px solid #000;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.ilp-video__yt-watch-icon svg {
  width: 13px;
  height: 13px;
  fill: currentColor;
  margin-left: 2px;
}

/* ── 5. Collection Header ── */
.ilp-collection-header { text-align: center; }
.ilp-collection-header__heading {
  font-family: var(--font-heading-family);
  font-style: var(--font-heading-style);
  font-weight: var(--font-heading-weight);
  font-size: var(--ilp-fs-col-head, 32px);
  line-height: 1.2; margin: 0 0 0.8rem;
  color: var(--ilp-text, #1a1a1a);
}
.ilp-collection-header__sub {
  font-family: var(--font-body-family);
  font-size: var(--ilp-fs-col-sub, 16px);
  line-height: 1.6; color: rgba(var(--color-foreground), 0.65); margin: 0;
}

/* ── Max width — constrains the entire section ── */
#ILP-{{ section.id }}.ilp-page {
  max-width: var(--ilp-max-width, 1200px);
  margin-left: auto;
  margin-right: auto;
}

/* ── Inner containers fill section width ── */
#ILP-{{ section.id }} .page-width,
#ILP-{{ section.id }} .ilp-products {
  max-width: 100%;
  padding-left: 24px;
  padding-right: 24px;
  box-sizing: border-box;
}

#ilp-products { margin: 30px 0; }

.ilp-product-layout-toggle {
  display: none;
}

.ilp-product-layout-toggle__label {
  font-family: var(--font-body-family);
  font-size: 1.2rem;
  font-weight: 600;
  color: rgba(var(--color-foreground), 0.65);
}

.ilp-product-layout-toggle__btn {
  border: 1px solid rgba(var(--color-foreground), 0.18);
  background: #ffffff;
  color: var(--ilp-text, #1a1a1a);
  min-height: 32px;
  padding: 0 1.1rem;
  border-radius: 999px;
  font-family: var(--font-body-family);
  font-size: 1.2rem;
  font-weight: 600;
  cursor: pointer;
}

.ilp-product-layout-toggle__btn.is-active {
  background: var(--ilp-text, #1a1a1a);
  color: #ffffff;
  border-color: var(--ilp-text, #1a1a1a);
}


/* ── Product Group Overview Tabs ── */
.ilp-product-group-tabs__headline {
  margin: 0 0 18px;
  text-align: center;
  font-family: var(--font-heading-family);
  font-style: var(--font-heading-style);
  font-weight: var(--font-heading-weight);
  font-size: var(--ilp-group-tab-headline-size, 30px);
  line-height: 1.25;
  color: var(--ilp-group-tab-headline-color, #2f5132);
}

.ilp-product-group-tabs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 980px;
  margin: 0 auto 28px;
  text-align: center;
}

.ilp-product-group-tabs__btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 46px;
  padding: 0 22px;
  border: 1px solid var(--ilp-group-tab-border, rgba(46, 125, 50, 0.22));
  border-radius: 999px;
  background: var(--ilp-group-tab-bg, #ffffff);
  color: var(--ilp-group-tab-text, #2f5132);
  font-family: var(--font-body-family);
  font-size: var(--ilp-group-tab-font-size, 14px);
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: 0.02em;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(46, 125, 50, 0.08);
  transition: background 0.22s ease, color 0.22s ease, border-color 0.22s ease, transform 0.2s ease, box-shadow 0.22s ease;
}

.ilp-product-group-tabs__btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 28px rgba(46, 125, 50, 0.13);
}

.ilp-product-group-tabs__btn.is-active {
  background: var(--ilp-group-tab-active-bg, #2e7d32);
  color: var(--ilp-group-tab-active-text, #ffffff);
  border-color: var(--ilp-group-tab-active-border, #2e7d32);
  box-shadow: 0 14px 34px rgba(46, 125, 50, 0.22);
}

.ilp-product-group-tabs__btn.is-active::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -7px;
  width: 10px;
  height: 10px;
  background: var(--ilp-group-tab-active-bg, #2e7d32);
  transform: translateX(-50%) rotate(45deg);
}

@media (max-width: 749px) {
  .ilp-product-group-tabs__headline {
    margin-bottom: 14px;
    font-size: var(--ilp-group-tab-headline-mobile-size, 24px);
  }

  .ilp-product-group-tabs {
    grid-template-columns: 1fr;
    gap: 9px;
    margin-bottom: 24px;
  }

  .ilp-product-group-tabs__btn {
    min-height: 42px;
    padding: 0 18px;
    font-size: var(--ilp-group-tab-mobile-font-size, 13px);
  }
}

/* ── Product Group ── */
.ilp-product-group {
  margin: 0 0 34px;
}

.ilp-product-group[hidden] {
  display: none !important;
}

.ilp-product-group:last-child {
  margin-bottom: 0;
}

.ilp-product-group__subheadline {
  display: table;
  width: fit-content;
  max-width: 100%;
  margin: 0 auto 18px;
  padding: 10px 22px;
  border: 1px solid var(--ilp-product-group-subheadline-border, #d7ead9);
  border-radius: 999px;
  background: var(--ilp-product-group-subheadline-bg, #f2faf2);
  color: var(--ilp-product-group-subheadline-text, #2f5132);
  font-family: var(--font-heading-family);
  font-style: var(--font-heading-style);
  font-weight: var(--font-heading-weight);
  font-size: var(--ilp-product-group-subheadline-size, 22px);
  line-height: 1.35;
  text-align: center;
  letter-spacing: 0.02em;
  box-shadow: 0 10px 28px rgba(46, 125, 50, 0.08);
}

.ilp-product-group__subheadline::before {
  content: "✦";
  margin-right: 8px;
  color: var(--ilp-group-tab-active-bg, #2e7d32);
  font-size: 0.85em;
}

.ilp-product-group__subheadline::after {
  content: "✦";
  margin-left: 8px;
  color: var(--ilp-group-tab-active-bg, #2e7d32);
  font-size: 0.85em;
}

@media (max-width: 749px) {
  .ilp-product-group {
    margin-bottom: 28px;
  }

  .ilp-product-group__subheadline {
    margin: 0 auto 14px;
    padding: 8px 16px;
    font-size: var(--ilp-product-group-subheadline-mobile-size, 18px);
    text-align: center;
  }
}

/* ── Product Grid ── */
.ilp-products { padding-top: 0; }

.ilp-products__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.4rem 1.6rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.ilp-product-card__inner {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.ilp-product-card__image-link,
.ilp-product-card__title-link {
  text-decoration: none;
  color: inherit;
  display: block;
}

.ilp-product-card__image-link {
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}

.ilp-product-card__image-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  background: rgba(var(--color-foreground), 0.04);
  margin-bottom: 1.2rem;
}

.ilp-product-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.ilp-product-card__image-link:hover .ilp-product-card__image {
  transform: scale(1.04);
}

.ilp-product-card__sticker-stack {
  position: absolute;
  top: 0px;
  left: 0px;
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
  pointer-events: none;
}

.ilp-product-card__sticker {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 23px;
    padding: 12px 22px;
    border-radius: 0px;
    font-family: var(--font-body-family);
    font-size: 13px;
    font-weight: 500;
    line-height: 1;
    letter-spacing: 0px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    backdrop-filter: blur(8px);
}

@media screen and (max-width: 480px) {
  .ilp-product-card__sticker {
    font-size: 10px;
    padding: 4px 10px;
  }
}

.ilp-product-card__sticker--default,
.ilp-product-card__sticker--white {
  background: rgba(255,255,255,0.94);
  color: #111111;
  border: 1px solid rgba(0,0,0,0.08);
}

.ilp-product-card__sticker--red {
  background: #d92d20;
  color: #ffffff;
}

.ilp-product-card__sticker--green {
  background: #1f7a1f;
  color: #ffffff;
}

.ilp-product-card__sticker--black {
  background: #111111;
  color: #ffffff;
}

.ilp-product-card__sticker--orange {
  background: #FA8504;
  color: #ffffff;
}

.ilp-product-card__sticker--yellow {
  background: #ffe600;
  color: #000;
}

.ilp-product-card__info {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.ilp-product-card__title {
  font-family: var(--font-body-family);
  font-style: var(--font-body-style);
  font-weight: 600;
  font-size: var(--ilp-fs-product-title, 14px);
  line-height: 1.4;
  margin: 0;
  color: var(--ilp-text, #1a1a1a);
}

.ilp-product-card__features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  font-family: var(--font-body-family);
  font-size: 1.2rem;
  line-height: 1.4;
  color: rgba(var(--color-foreground), 0.65);
}

.ilp-product-card__features li::before {
  content: "✓";
  margin-right: 0.55rem;
  color: #2e7d32;
  font-weight: 700;
}

.ilp-product-card__bottom {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 0.4rem;
}

.ilp-product-card__price-wrap {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  flex-wrap: wrap;
  min-width: 0;
}

.ilp-product-card__price {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 0.45rem;
  min-width: 0;
  font-family: var(--font-body-family);
  font-size: var(--ilp-fs-product-price, 14px);
  margin: 0;
}

.ilp-product-card__price--compare {
  text-decoration: line-through;
  color: rgba(var(--color-foreground), 0.45);
  font-size: 0.9em;
}

.ilp-product-card__price--current {
  color: var(--ilp-text, #1a1a1a);
  font-weight: 700;
}

.ilp-product-card__price--sale {
  color: #c0392b;
}

.ilp-product-card__discount {
  font-family: var(--font-body-family);
  font-size: 1.15rem;
  font-weight: 700;
  color: #c0392b;
  white-space: nowrap;
  flex-shrink: 0;
}

.ilp-product-card__form {
  flex-shrink: 0;
}

.ilp-product-card__cart-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(var(--color-foreground), 0.18);
  background: #ffffff;
  color: #000000;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 0;
  transition: background 0.2s ease, transform 0.2s ease, color 0.2s ease;
}

.ilp-product-card__cart-icon svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.ilp-product-card__cart-loading {
  width: 18px;
  height: 18px;
  border: 2px solid currentColor;
  border-right-color: transparent;
  border-radius: 50%;
  display: none;
  animation: ilpSpin 0.65s linear infinite;
}

.ilp-product-card__cart-btn.is-loading .ilp-product-card__cart-icon {
  display: none;
}

.ilp-product-card__cart-btn.is-loading .ilp-product-card__cart-loading {
  display: inline-block;
}

@keyframes ilpSpin {
  to { transform: rotate(360deg); }
}

.ilp-product-card__cart-btn:hover {
  background: #000000;
  color: #ffffff;
  transform: translateY(-1px);
}

.ilp-product-card__cart-btn:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}




/* ── Three Feature Icons Row ── */
.ilp-three-features {
  color: var(--ilp-three-features-text, #1a1a1a);
}

.ilp-three-features__inner {
  background: var(--ilp-three-features-bg, #ffffff);
  border-radius: var(--ilp-three-features-radius, 0px);
  padding: 24px;
}

.ilp-three-features__heading {
  margin: 0 0 20px;
  text-align: center;
  font-family: var(--font-heading-family);
  font-style: var(--font-heading-style);
  font-weight: var(--font-heading-weight);
  font-size: 24px;
  line-height: 1.25;
  color: var(--ilp-three-features-text, #1a1a1a);
}

.ilp-three-features__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.ilp-three-features__item {
  background: var(--ilp-three-features-card-bg, #F7F4EE);
  border: 1px solid var(--ilp-three-features-border, rgba(0,0,0,0.08));
  border-radius: calc(var(--ilp-three-features-radius, 0px) * 0.75);
  padding: 25px 0px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
  text-align: center;
  min-height: 150px;
}

.ilp-three-features__icon-wrap {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.ilp-three-features__icon {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.ilp-three-features__content h3 {
  margin: 0;
  font-family: var(--font-body-family);
  font-size: 15px;
  line-height: 1.35;
  font-weight: 700;
  color: var(--ilp-three-features-text, #1a1a1a);
}

.ilp-three-features__content p {
  margin: 6px 0 0;
  font-family: var(--font-body-family);
  font-size: 13px;
  line-height: 1.55;
  color: var(--ilp-three-features-muted, rgba(0,0,0,0.65));
}

/* ── Brand Feature Block ── */
.ilp-brand-feature {
  color: var(--ilp-brand-feature-text, #1a1a1a);
}

.ilp-brand-feature__inner {
  background: var(--ilp-brand-feature-bg, #F7F4EE);
  padding: 32px;
  border-radius: var(--ilp-brand-feature-radius, 0px);
}

.ilp-brand-feature__eyebrow {
  display: inline-block;
  margin-bottom: 10px;
  font-family: var(--font-body-family);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ilp-brand-feature-accent, #8B7355);
}

.ilp-brand-feature__title {
  font-family: var(--font-heading-family);
  font-style: var(--font-heading-style);
  font-weight: var(--font-heading-weight);
  margin: 0 0 12px;
  font-size: 32px;
  line-height: 1.2;
  color: var(--ilp-brand-feature-text, #1a1a1a);
}

.ilp-brand-feature__desc {
  max-width: 760px;
  font-family: var(--font-body-family);
  font-size: 15px;
  line-height: 1.7;
  color: var(--ilp-brand-feature-muted, rgba(0,0,0,0.72));
}

.ilp-brand-feature__desc p {
  margin: 0;
}

.ilp-brand-feature__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
  margin-top: 30px;
}

.ilp-brand-feature__card {
  background: var(--ilp-brand-feature-card-bg, #ffffff);
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-height: 180px;
  border-radius: calc(var(--ilp-brand-feature-radius, 0px) * 0.65);
  border: 1px solid rgba(0,0,0,0.04);
}

.ilp-brand-feature__icon {
  font-size: 26px;
  line-height: 1;
}

.ilp-brand-feature__card h3 {
  margin: 0 0 6px;
  font-family: var(--font-body-family);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.4;
  color: var(--ilp-brand-feature-text, #1a1a1a);
}

.ilp-brand-feature__card p {
  margin: 0;
  font-family: var(--font-body-family);
  font-size: 13px;
  line-height: 1.6;
  color: var(--ilp-brand-feature-muted, rgba(0,0,0,0.65));
}

/* ── Gift With Purchase Block ── */
.ilp-gwp {
  color: var(--ilp-gwp-text, #1a1a1a);
}

.ilp-gwp__inner {
  background: var(--ilp-gwp-bg, #000000);
  padding: 36px 24px 28px;
  border-radius:50px;
}

.ilp-gwp__header {
  text-align: center;
  margin-bottom: 28px;
}

.ilp-gwp__eyebrow {
  font-family: var(--font-body-family);
  font-size: var(--ilp-gwp-eyebrow-size, 14px);
  font-weight: 800;
  letter-spacing: 0.06em;
  color: var(--ilp-gwp-accent, #ffc1d8);
  text-transform: uppercase;
  margin-bottom: 20px;
}

.ilp-gwp__heading {
  font-family: var(--font-heading-family);
  font-style: var(--font-heading-style);
  font-weight: 800;
  font-size: var(--ilp-gwp-heading-size, 42px);
  line-height: 1.05;
  color: var(--ilp-gwp-accent, #ffc1d8);
  margin: 0 0 10px;
  text-align: center;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.ilp-gwp__subheading {
  font-family: var(--font-body-family);
  font-size: var(--ilp-gwp-subheading-size, 18px);
  line-height: 1.45;
  color: var(--ilp-gwp-accent, #ffc1d8);
  text-align: center;
  font-weight: 600;
}

.ilp-gwp__panel {
  background: var(--ilp-gwp-panel-bg, #4f4f4f);
  border: var(--ilp-gwp-border-width, 4px) solid var(--ilp-gwp-border, #ffc1d8);
  border-radius: var(--ilp-gwp-radius, 14px);
  padding: var(--ilp-gwp-padding, 26px);
  overflow: hidden;
}

/* True desktop 50/50 layout */
.ilp-gwp__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: stretch;
  gap: 0;
}

.ilp-gwp__divider {
  display: none;
}

.ilp-gwp__item {
  display: grid;
  grid-template-columns: var(--ilp-gwp-image-width, 160px) minmax(0, 1fr);
  gap: 26px;
  align-items: center;
  min-width: 0;
  padding: 0 26px;
}

.ilp-gwp__item:first-child {
  border-right: 1px solid var(--ilp-gwp-divider, rgba(255,255,255,0.85));
  padding-left: 0;
}

.ilp-gwp__item:last-child {
  padding-right: 0;
}

.ilp-gwp__image-wrap {
  width: 100%;
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ilp-gwp__image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.ilp-gwp__content {
  min-width: 0;
  text-align: var(--ilp-gwp-align, left);
}

/* Position controls */
.ilp-gwp--image_right .ilp-gwp__image-wrap { order: 2; }
.ilp-gwp--image_right .ilp-gwp__content { order: 1; }

.ilp-gwp--image_top .ilp-gwp__item {
  grid-template-columns: 1fr;
  grid-template-rows: auto auto;
  text-align: center;
}
.ilp-gwp--image_top .ilp-gwp__image-wrap {
  max-width: var(--ilp-gwp-image-width, 160px);
  margin: 0 auto;
}

.ilp-gwp--text_top .ilp-gwp__item {
  grid-template-columns: 1fr;
  grid-template-rows: auto auto;
  text-align: center;
}
.ilp-gwp--text_top .ilp-gwp__content { order: 1; }
.ilp-gwp--text_top .ilp-gwp__image-wrap {
  order: 2;
  max-width: var(--ilp-gwp-image-width, 160px);
  margin: 0 auto;
}

.ilp-gwp__top-text {
  font-family: var(--font-heading-family);
  font-size: var(--ilp-gwp-top-text-size, 28px);
  line-height: 22px;
  font-weight: 800;
  color: var(--ilp-gwp-text, #ffffff);
  padding-bottom: 12px;
  border-bottom: 1px solid #E76D00;
  margin-bottom: 14px;
}

.ilp-gwp__bottom-text {
  font-family: var(--font-body-family);
  font-size: var(--ilp-gwp-bottom-text-size, 18px);
  line-height: 1.5;
  color: var(--ilp-gwp-text, #ffffff);
  font-weight: 600;
}

.ilp-gwp__note {
  margin-top: 22px;
  text-align: center;
  font-family: var(--font-body-family);
  font-size: var(--ilp-gwp-note-size, 14px);
  line-height: 1.5;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--ilp-gwp-text, #ffffff);
}

@media (max-width: 749px) {
  .ilp-gwp__inner {
    padding: 30px 14px 24px;
  }

  .ilp-gwp__eyebrow {
    font-size: calc(var(--ilp-gwp-eyebrow-size, 14px) * 0.86);
    margin-bottom: 16px;
  }

  .ilp-gwp__heading {
    font-size: calc(var(--ilp-gwp-heading-size, 42px) * 0.68);
  }

  .ilp-gwp__subheading {
    font-size: calc(var(--ilp-gwp-subheading-size, 18px) * 0.85);
  }

  .ilp-gwp__panel {
    padding: 18px 14px;
  }

  .ilp-gwp__grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .ilp-gwp__item,
  .ilp-gwp--image_right .ilp-gwp__item,
  .ilp-gwp--image_top .ilp-gwp__item,
  .ilp-gwp--text_top .ilp-gwp__item {
    grid-template-columns: 105px minmax(0, 1fr);
    gap: 14px;
    padding: 18px 0;
    text-align: left;
    align-items: center;
  }

  .ilp-gwp__item:first-child {
    border-right: 0;
    border-bottom: 1px solid var(--ilp-gwp-divider, rgba(255,255,255,0.85));
    padding-top: 0;
  }

  .ilp-gwp__item:last-child {
    padding-bottom: 0;
  }

  .ilp-gwp--image_right .ilp-gwp__image-wrap,
  .ilp-gwp--image_top .ilp-gwp__image-wrap,
  .ilp-gwp--text_top .ilp-gwp__image-wrap {
    order: initial;
    max-width: none;
    margin: 0;
  }

  .ilp-gwp--image_right .ilp-gwp__content,
  .ilp-gwp--text_top .ilp-gwp__content {
    order: initial;
  }

  .ilp-gwp__top-text {
    font-size: 14px;
  }

  .ilp-gwp__bottom-text {
    font-size: 12px;
  }

  .ilp-gwp__note {
    font-size: calc(var(--ilp-gwp-note-size, 14px) * 0.9);
  }
}


/* ── Fixed Shop Now Bar ── */
.ilp-shopbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: var(--ilp-shopbar-bg, #000000);
  color: var(--ilp-shopbar-text, #ffffff);
  transform: translateY(-110%);
  transition: transform 0.28s ease;
  box-shadow: 0 8px 22px rgba(0,0,0,0.12);
}
.ilp-shopbar.is-visible { transform: translateY(0); }
.ilp-shopbar__inner {
  min-height: var(--ilp-shopbar-height, 64px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.ilp-shopbar__left {
  display: flex;
  align-items: center;
  gap: 2rem;
  min-width: 0;
}
.ilp-shopbar__logo-link {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.ilp-shopbar__logo {
  display: block;
  width: auto;
  max-width: calc(var(--ilp-story-size, 82px) + 28px);
  max-height: 34px;
  object-fit: contain;
}
.ilp-shopbar__details {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 1.2rem;
  min-width: 0;
  font-family: var(--font-body-family);
  font-size: 15px;
  font-weight: 600;
  line-height: 1.3;
  color: var(--ilp-shopbar-text, #ffffff);
}
.ilp-shopbar__event,
.ilp-shopbar__offer {
  white-space: normal;
  overflow: visible;
  text-overflow: unset;
  word-break: break-word;

}
.ilp-shopbar__sep {
  display: inline-block;
  width: 1px;
  height: 18px;
  background: currentColor;
  opacity: 0.35;
  flex-shrink: 0;
}
.ilp-shopbar__right {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.ilp-shopbar__cart-btn {
  position: relative;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  background: var(--ilp-shopbar-btn-bg, #ffffff);
  color: var(--ilp-shopbar-btn-text, #000000);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: opacity 0.2s ease, transform 0.2s ease;
  -webkit-tap-highlight-color: transparent;
}

.ilp-shopbar__cart-btn:hover {
  opacity: 0.86;
  transform: translateY(-1px);
}

.ilp-shopbar__cart-icon {
  width: 21px;
  height: 21px;
  display: inline-flex;
}

.ilp-shopbar__cart-icon svg {
  width: 100%;
  height: 100%;
  display: block;
  fill: currentColor;
}

.ilp-shopbar__cart-count {
  position: absolute;
  top: -5px;
  right: -5px;
  min-width: 20px;
  height: 20px;
  padding: 0 5px;
  border-radius: 999px;
  background: #d92d20;
  color: #ffffff;
  border: 2px solid var(--ilp-shopbar-bg, #000000);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body-family);
  font-size: 11px;
  font-weight: 800;
  line-height: 1;
}

.ilp-shopbar__cart-count.is-empty {
  display: none;
}


/* ── Product Quick View ── */
.ilp-product-card__media {
  min-width: 0;
}

.ilp-product-card__quick-view-btn {
  display: none;
  width: 100%;
  min-height: 30px;
  margin-top: 8px;
  border: 1px solid rgba(var(--color-foreground), 0.16);
  background: var(--ilp-btn-bg, #1a1a1a);
  color: var(--ilp-btn-text, #ffffff);
  font-family: var(--font-body-family);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-align: center;
  cursor: pointer;
  border-radius:50px;
}

.ilp-qv {
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  visibility: hidden;
}

.ilp-qv.is-open {
  pointer-events: auto;
  visibility: visible;
}

.ilp-qv__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  opacity: 0;
  transition: opacity 0.28s ease;
}

.ilp-qv.is-open .ilp-qv__overlay {
  opacity: 1;
}

.ilp-qv__drawer {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  max-height: 88vh;
  background: #ffffff;
  color: var(--ilp-text, #1a1a1a);
  border-radius: 18px 18px 0 0;
  box-shadow: 0 -18px 60px rgba(0,0,0,0.18);
  transform: translateY(105%);
  transition: transform 0.34s cubic-bezier(0.22, 1, 0.36, 1);
  overflow: hidden;
}

.ilp-qv.is-open .ilp-qv__drawer {
  transform: translateY(0);
}

.ilp-qv__handle {
  width: 44px;
  height: 4px;
  border-radius: 999px;
  background: rgba(0,0,0,0.18);
  margin: 10px auto 6px;
}

.ilp-qv__close {
  position: absolute;
  top: 12px;
  right: 14px;
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 50%;
  background: rgba(255,255,255,0.88);
  color: #111111;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 2;
}

.ilp-qv__close svg {
  width: 18px;
  height: 18px;
}

.ilp-qv__content {
  max-height: calc(88vh - 20px);
  overflow-y: auto;
  padding: 12px 18px 24px;
  -webkit-overflow-scrolling: touch;
}

.ilp-qv__product {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 24px;
  max-width: 980px;
  margin: 0 auto;
}

.ilp-qv__image-stage {
  position: relative;
  background: #f7f7f7;
  aspect-ratio: 1 / 1;
  overflow: hidden;
}


.ilp-qv__sticker-stack {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
  max-width: calc(100% - 92px);
  pointer-events: none;
}

.ilp-qv__sticker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 24px;
  padding: 4px 9px;
  border-radius: 999px;
  font-family: var(--font-body-family);
  font-size: 11px;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  box-shadow: 0 6px 14px rgba(0,0,0,0.12);
}

.ilp-qv__sticker--red { background: #d92d20; color: #ffffff; }
.ilp-qv__sticker--green { background: #157347; color: #ffffff; }
.ilp-qv__sticker--black { background: #111111; color: #ffffff; }
.ilp-qv__sticker--orange { background: #f97316; color: #ffffff; }
.ilp-qv__sticker--yellow { background: #facc15; color: #111111; }
.ilp-qv__sticker--white { background: #ffffff; color: #111111; border: 1px solid rgba(0,0,0,0.12); }
.ilp-qv__sticker--default { background: var(--ilp-accent, #1a1a1a); color: #ffffff; }

.ilp-qv__features {
  list-style: none;
  padding-left: 0;
}

.ilp-qv__features li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 7px;
}

.ilp-qv__features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  width: 17px;
  height: 17px;
  border-radius: 50%;
  background: rgba(21, 115, 71, 0.1);
  color: #157347;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 800;
  line-height: 1;
}

.ilp-qv__accordion-content ul {
  list-style: none;
  padding-left: 0;
}

.ilp-qv__accordion-content li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 7px;
}

.ilp-qv__accordion-content li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0.15em;
  color: #157347;
  font-weight: 800;
}

.ilp-qv__discount-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #d92d20;
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-family: var(--font-body-family);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: 0.02em;
  box-shadow: 0 8px 18px rgba(0,0,0,0.16);
}

.ilp-qv__price-save {
  font-size: 13px;
  font-weight: 700;
  color: #d92d20;
  background: rgba(217, 45, 32, 0.08);
  padding: 4px 8px;
  border-radius: 999px;
  white-space: nowrap;
}

.ilp-qv__main-image,
.ilp-qv__thumb-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.ilp-qv__thumbs {
  display: flex;
  gap: 8px;
  margin-top: 10px;
  overflow-x: auto;
  padding-bottom: 2px;
}

.ilp-qv__thumb {
  width: 54px;
  height: 54px;
  flex: 0 0 54px;
  border: 1px solid rgba(0,0,0,0.1);
  background: #f7f7f7;
  padding: 0;
  cursor: pointer;
  opacity: 0.72;
}

.ilp-qv__thumb.is-active {
  opacity: 1;
  border-color: var(--ilp-text, #1a1a1a);
}

.ilp-qv__title {
  font-family: var(--font-heading-family);
  font-size: 22px;
  line-height: 1.3;
  margin: 0 42px 8px 0;
  color: var(--ilp-text, #1a1a1a);
}


.ilp-qv__short-description {
  margin: 0 0 14px;
  font-family: var(--font-body-family);
  font-size: 14px;
  line-height: 1.65;
  color: rgba(var(--color-foreground), 0.78);
}

.ilp-qv__short-description p {
  margin: 0;
  background: #e6e6e6;
  padding: 10px 15px;
  border-radius: 10px;
}

.ilp-qv__price {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  font-family: var(--font-body-family);
}

.ilp-qv__price-current {
  font-size: 18px;
  font-weight: 700;
}

.ilp-qv__price-current--sale {
  color: #d92d20;
}

.ilp-qv__price-compare {
  font-size: 14px;
  color: rgba(var(--color-foreground), 0.5);
  text-decoration: line-through;
}

.ilp-qv__features,
.ilp-qv__description {
  margin: 0 0 16px;
  font-family: var(--font-body-family);
  font-size: 14px;
  line-height: 1.65;
  color: rgba(var(--color-foreground), 0.75);
}

.ilp-qv__label {
  display: block;
  margin: 0 0 6px;
  font-family: var(--font-body-family);
  font-size: 12px;
  font-weight: 700;
  color: rgba(var(--color-foreground), 0.72);
}

.ilp-qv__select,
.ilp-qv__qty-input {
  width: 100%;
  min-height: 44px;
  border: 1px solid rgba(var(--color-foreground), 0.18);
  background: #ffffff;
  color: var(--ilp-text, #1a1a1a);
  font-family: var(--font-body-family);
  font-size: 14px;
  padding: 0 12px;
  border-radius: 0;
}

.ilp-qv__select-wrap,
.ilp-qv__quantity-row {
  margin-bottom: 14px;
}

.ilp-qv__quantity-row {display:none}

.ilp-qv__quantity {
  display: grid;
  grid-template-columns: 42px 1fr 42px;
  max-width: 150px;
}

.ilp-qv__qty-btn {
  border: 1px solid rgba(var(--color-foreground), 0.18);
  background: #ffffff;
  color: var(--ilp-text, #1a1a1a);
  font-size: 18px;
  cursor: pointer;
}

.ilp-qv__qty-input {
  text-align: center;
  border-left: 0;
  border-right: 0;
  padding: 0;
}

.ilp-qv__add-btn {
  width: 100%;
  min-height: 48px;
  border: 0;
  background: var(--ilp-btn-bg, #1a1a1a);
  color: var(--ilp-btn-text, #ffffff);
  font-family: var(--font-body-family);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.06em;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.ilp-qv__add-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}


.ilp-qv__accordion {
  margin-top: 18px;
  border-top: 1px solid rgba(var(--color-foreground), 0.12);
}

.ilp-qv__accordion-item {
  border-bottom: 1px solid rgba(var(--color-foreground), 0.12);
}

.ilp-qv__accordion-summary {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 14px 0;
  cursor: pointer;
  font-family: var(--font-body-family);
  font-size: 14px;
  font-weight: 700;
  color: var(--ilp-text, #1a1a1a);
}

.ilp-qv__accordion-summary::-webkit-details-marker {
  display: none;
}

.ilp-qv__accordion-icon {
  font-size: 18px;
  line-height: 1;
  transition: transform 0.2s ease;
}

.ilp-qv__accordion-item[open] .ilp-qv__accordion-icon {
  transform: rotate(45deg);
}

.ilp-qv__accordion-content {
  padding: 0 0 16px;
  font-family: var(--font-body-family);
  font-size: 13px;
  line-height: 1.65;
  color: rgba(var(--color-foreground), 0.75);
}

.ilp-qv__accordion-content > *:first-child {
  margin-top: 0;
}

.ilp-qv__accordion-content > *:last-child {
  margin-bottom: 0;
}

.ilp-qv__details-link {
  display: block;
  margin-top: 14px;
  text-align: center;
  font-family: var(--font-body-family);
  font-size: 13px;
  color: rgba(var(--color-foreground), 0.7);
  text-decoration: underline;
  text-underline-offset: 3px;
}

body.ilp-qv-lock {
  overflow: hidden;
}

/* ── Mobile ── */
@media (max-width: 749px) {
  .ilp-product-layout-toggle {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 0.8rem;
    margin: 0 0 1.2rem;
  }

  .ilp-profile__inner {
    flex-direction: column; align-items: center;
    text-align: center; gap: 1.6rem;
  }
  .ilp-banner__image--desktop { display: none; }
  .ilp-banner__image--mobile  { display: block; }
  .ilp-banner__overlay { padding: 2rem 2.4rem; max-width: 100%; }
  .ilp-countdown__unit { min-width: 56px; }
  .ilp-video__yt-layout {
    grid-template-columns: 1fr;
  }
  .ilp-products__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.6rem 1.2rem;
  }
  .ilp-shopbar__inner {
    min-height: 80px;
    gap: 1rem;
    padding-left: 14px !important;
    padding-right: 14px !important;
  }
  .ilp-shopbar__left { gap: 1rem; }
  .ilp-shopbar__logo { max-width: 84px; max-height: 28px; }
  .ilp-shopbar__details {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.2rem;
    font-size: 15px;
  }
  .ilp-shopbar__event,
  .ilp-shopbar__offer {
    max-width: none;
  }
  .ilp-shopbar__sep { display: none; }
  .ilp-shopbar__btn {
    min-height: 34px;
    padding: 0 1.3rem;
    font-size: 1.1rem;
    white-space: nowrap;
  }

}

@media (max-width: 749px) {
  .ilp-products--mobile-grid_2 .ilp-products__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.6rem 1.2rem;
  }

  .ilp-products--mobile-list_1 .ilp-products__grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .ilp-products--mobile-list_1 .ilp-product-card {
    border-bottom: 1px solid rgba(var(--color-foreground), 0.12);
    padding: 14px 0;
  }

  .ilp-products--mobile-list_1 .ilp-product-card__inner {
    display: grid;
    grid-template-columns: 110px 1fr;
    gap: 14px;
    align-items: flex-start;
  }

  .ilp-products--mobile-list_1 .ilp-product-card__image-wrap {
    margin-bottom: 0;
    aspect-ratio: 1 / 1;
  }

  .ilp-products--mobile-list_1 .ilp-product-card__info {
    min-width: 0;
    gap: 0.55rem;
  }

  .ilp-products--mobile-list_1 .ilp-product-card__title {
    font-size: 16px;
    line-height: 1.5;
  }

  .ilp-products--mobile-list_1 .ilp-product-card__features {
    font-size: 14px;
    line-height: 1.5;
  }

  .ilp-products--mobile-list_1 .ilp-product-card__bottom {
    align-items: center;
    margin-top: 0.6rem;
  }

  .ilp-products--mobile-list_1 .ilp-product-card__price-wrap {
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
  }

  .ilp-products--mobile-list_1 .ilp-product-card__discount {
    text-align: left;
  }

  .ilp-products--mobile-list_1 .ilp-product-card__price {
    font-size: 1.35rem;
  }

  .ilp-products--mobile-list_1 .ilp-product-card__cart-btn {
    width: 36px;
    height: 36px;
  }

  .ilp-products--mobile-list_1 .ilp-product-card__quick-view-btn {
    display: block;
  }

  .ilp-products--mobile-grid_2 .ilp-product-card__quick-view-btn {
    display: none;
  }

  .ilp-qv__drawer {
    max-height: 92vh;
    border-radius: 18px 18px 0 0;
  }

  .ilp-qv__content {
    max-height: calc(92vh - 20px);
    padding: 12px 14px 24px;
  }

  .ilp-qv__product {
    display: block;
  }

  .ilp-qv__gallery {
    margin-bottom: 16px;
  }

  .ilp-qv__title {
    font-size: 20px;
  }

  .ilp-products--mobile-grid_2 .ilp-product-card__features {
    display: none;
  }

  .ilp-products--mobile-grid_2 .ilp-product-card__cart-btn {
    width: 34px;
    height: 34px;
  }


  .ilp-products--mobile-grid_2 .ilp-product-card__price-wrap {
    gap: 0.6rem;
  }

  .ilp-products--mobile-grid_2 .ilp-product-card__discount {
    font-size: 1.05rem;
  }
}


@media (max-width: 749px) {
  .ilp-brand-feature__inner {
    padding: 24px 18px;
  }

  .ilp-brand-feature__title {
    font-size: 24px;
  }

  .ilp-brand-feature__desc {
    font-size: 14px;
  }

  .ilp-brand-feature__grid {
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 22px;
  }

  .ilp-brand-feature__card {
    min-height: auto;
    flex-direction: row;
    align-items: flex-start;
    padding: 16px;
  }

  .ilp-brand-feature__icon {
    flex-shrink: 0;
    margin-top: 2px;
  }
}


@media (max-width: 749px) {
  .ilp-three-features__inner {
    padding: 18px 14px;
  }

  .ilp-three-features__heading {
    font-size: 20px;
    margin-bottom: 14px;
  }

  .ilp-three-features__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
  }

  .ilp-three-features__item {
    min-height: auto;
    padding: 25px 0px;
    gap: 8px;
  }

  .ilp-three-features__icon-wrap {
    width: 34px;
    height: 34px;
  }

  .ilp-three-features__content h3 {
    font-size: 12px;
    line-height: 1.25;
  }

  .ilp-three-features__content p {
    font-size: 11px;
    line-height: 1.35;
  }
}


/* ── Instagram Story Preview ── */
.ilp-story-profile {
  position: fixed;
  top: 50%;
  right: 16px;
  transform: translateY(-50%);
  z-index: 80;
  display: flex;
  justify-content: center;
  width: auto !important;
  max-width: none !important;
  padding: 0 !important;
  margin: 0 !important;
  will-change: transform;
}

.ilp-story-profile.is-scroll-idle-shake {
  animation: ilpStoryNudge .85s cubic-bezier(.36,.07,.19,.97) both;
}

.ilp-story-profile__button {
  appearance: none;
  border: 0;
  background: transparent;
  padding: 0;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  color: var(--ilp-story-text, var(--ilp-text, #1a1a1a));
  -webkit-tap-highlight-color: transparent;
}

.ilp-story-profile__ring {
  position: relative;
  width: var(--ilp-story-size, 82px);
  height: var(--ilp-story-size, 82px);
  padding: 3px;
  border-radius: 50%;
  background: conic-gradient(
    from 0deg,
    var(--ilp-story-ring-start, #f58529),
    var(--ilp-story-ring-end, #dd2a7b),
    #833ab4,
    var(--ilp-story-ring-start, #f58529)
  );
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform .2s ease;
  animation: ilpStoryRingSpin 4.5s linear infinite, ilpStoryRingPulse 1.9s ease-in-out infinite;
  box-shadow: 0 8px 22px rgba(0,0,0,.12);
}

.ilp-story-profile__ring::after {
  content: "";
  position: absolute;
  inset: -5px;
  border-radius: 50%;
  background: radial-gradient(circle, color-mix(in srgb, var(--ilp-story-ring-end, #dd2a7b) 25%, transparent), transparent 68%);
  opacity: .55;
  z-index: -1;
  animation: ilpStoryGlow 2.4s ease-in-out infinite;
}

.ilp-story-profile__button:hover .ilp-story-profile__ring {
  transform: translateY(-2px) scale(1.03);
}

.ilp-story-profile__avatar {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 3px solid var(--ilp-bg, #fff);
  object-fit: cover;
  display: block;
  background: #f5f5f5;
  position: relative;
  z-index: 1;
}

.ilp-story-profile__name {
  max-width: 120px;
  font-family: var(--font-body-family);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.25;
  text-align: center;
  color: currentColor;
  text-shadow: 0 1px 8px rgba(255,255,255,.7);
}

@keyframes ilpStoryRingSpin {
  to { background-position: 100% 50%; transform: rotate(360deg); }
}

@keyframes ilpStoryRingPulse {
  0%, 100% { box-shadow: 0 8px 22px rgba(0,0,0,.12), 0 0 0 0 rgba(221,42,123,.18); }
  50% { box-shadow: 0 10px 28px rgba(0,0,0,.16), 0 0 0 7px rgba(221,42,123,.08); }
}

@keyframes ilpStoryGlow {
  0%, 100% { opacity: .35; transform: scale(.98); }
  50% { opacity: .7; transform: scale(1.06); }
}

@keyframes ilpStoryNudge {
  0% { transform: translateY(-50%) translateX(0) rotate(0deg); }
  12% { transform: translateY(-50%) translateX(-7px) rotate(-4deg); }
  24% { transform: translateY(-50%) translateX(6px) rotate(4deg); }
  36% { transform: translateY(-50%) translateX(-5px) rotate(-3deg); }
  48% { transform: translateY(-50%) translateX(4px) rotate(3deg); }
  60% { transform: translateY(-50%) translateX(-2px) rotate(-1.5deg); }
  72%, 100% { transform: translateY(-50%) translateX(0) rotate(0deg); }
}

.ilp-story-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
  touch-action: none;
}

.ilp-story-modal.is-open {
  display: block;
}

.ilp-story-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.82);
}

.ilp-story-modal__frame {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(420px, calc(100vw - 28px));
  height: min(740px, calc(100vh - 36px));
  transform: translate(-50%, -50%);
  background: #111;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 24px 80px rgba(0,0,0,.42);
  color: #fff;
  touch-action: manipulation;
  user-select: none;
  -webkit-user-select: none;
}

.ilp-story-modal__progress {
  position: absolute;
  top: 10px;
  left: 10px;
  right: 10px;
  z-index: 5;
  display: grid;
  gap: 4px;
}

.ilp-story-modal__progress-segment {
  position: relative;
  height: 3px;
  border-radius: 999px;
  overflow: hidden;
  background: rgba(255,255,255,.35);
}

.ilp-story-modal__progress-bar {
  position: absolute;
  inset: 0 auto 0 0;
  width: 0%;
  background: #fff;
  border-radius: inherit;
  will-change: width;
}

.ilp-story-modal.is-paused .ilp-story-modal__frame {
  cursor: grabbing;
}

.ilp-story-modal.is-paused .ilp-story-modal__image {
  transform: scale(1.01);
  filter: brightness(.86);
}

.ilp-story-modal__header {
  position: absolute;
  top: 22px;
  left: 12px;
  right: 12px;
  z-index: 6;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  pointer-events: none;
}

.ilp-story-modal__profile {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-width: 0;
  color: #fff;
  text-shadow: 0 1px 10px rgba(0,0,0,.42);
}

.ilp-story-modal__avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid rgba(255,255,255,.65);
  background: rgba(255,255,255,.18);
}

.ilp-story-modal__avatar[src=""] {
  display: none;
}

.ilp-story-modal__name {
  font-family: var(--font-body-family);
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.ilp-story-modal__close {
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 50%;
  background: rgba(0,0,0,.28);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  pointer-events: auto;
}

.ilp-story-modal__close svg {
  width: 16px;
  height: 16px;
}

.ilp-story-modal__content {
  position: relative;
  width: 100%;
  height: 100%;
}

.ilp-story-modal__slide {
  position: absolute;
  inset: 0;
  display: none;
  background: #111;
}

.ilp-story-modal__slide.is-active {
  display: block;
}

.ilp-story-modal__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .2s ease, filter .2s ease;
}

.ilp-story-modal__caption {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 82px;
  z-index: 4;
  font-family: var(--font-body-family);
  font-size: 18px;
  font-weight: 800;
  line-height: 1.35;
  color: #fff;
  text-align: center;
  text-shadow: 0 2px 18px rgba(0,0,0,.55);
  pointer-events: none;
}

.ilp-story-modal__cta {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 24px;
  z-index: 7;
  min-height: 46px;
  border-radius: 999px;
  background: #fff;
  color: #111;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body-family);
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
}

body.ilp-story-lock {
  overflow: hidden;
}

@media (max-width: 749px) {
  .ilp-story-profile {
    right: 12px;
  }

  .ilp-story-profile__ring {
    width: var(--ilp-story-size, 74px);
    height: var(--ilp-story-size, 74px);
  }

  .ilp-story-modal__frame {
    width: 100vw;
    height: 100vh;
    height: 100dvh;
    border-radius: 0;
  }

  .ilp-story-modal__caption {
    font-size: 17px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .ilp-story-profile__ring,
  .ilp-story-profile__ring::after,
  .ilp-story-profile.is-scroll-idle-shake {
    animation: none !important;
  }
}
/* END_SECTION:influencer-landing-development */

/* START_SECTION:influencer-landing (INDEX:31) */
/* ── FAQ Block ── */
.ilp-faq {
  color: var(--ilp-faq-text, var(--ilp-text, #1a1a1a));
}

.ilp-faq__inner {
  background: var(--ilp-faq-bg, transparent);
  border-radius: var(--ilp-faq-radius, 0);
}

.ilp-faq__header {
  max-width: 760px;
  margin: 0 auto 24px;
  text-align: center;
}

.ilp-faq__eyebrow {
  margin-bottom: 8px;
  font-family: var(--font-body-family);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ilp-faq-muted, rgba(var(--color-foreground), 0.58));
}

.ilp-faq__heading {
  margin: 0;
  font-family: var(--font-heading-family);
  font-style: var(--font-heading-style);
  font-weight: var(--font-heading-weight);
  font-size: 28px;
  line-height: 1.22;
  color: var(--ilp-faq-text, var(--ilp-text, #1a1a1a));
}

.ilp-faq__description {
  margin-top: 12px;
  font-family: var(--font-body-family);
  font-size: 14px;
  line-height: 1.7;
  color: var(--ilp-faq-muted, rgba(var(--color-foreground), 0.68));
}

.ilp-faq__list {
  max-width: 860px;
  margin: 0 auto;
  background: var(--ilp-faq-panel-bg, #ffffff);
  border: 1px solid var(--ilp-faq-border, rgba(var(--color-foreground), 0.12));
  border-radius: var(--ilp-faq-radius, 0);
  overflow: hidden;
}

.ilp-faq__item + .ilp-faq__item {
  border-top: 1px solid var(--ilp-faq-border, rgba(var(--color-foreground), 0.12));
}

.ilp-faq__summary {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 20px;
  cursor: pointer;
  font-family: var(--font-body-family);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.45;
  color: var(--ilp-faq-text, var(--ilp-text, #1a1a1a));
  -webkit-tap-highlight-color: transparent;
}

.ilp-faq__summary::-webkit-details-marker {
  display: none;
}

.ilp-faq__icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(var(--color-foreground), 0.06);
  color: var(--ilp-faq-text, var(--ilp-text, #1a1a1a));
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 24px;
  font-size: 17px;
  line-height: 1;
  transition: transform 0.2s ease;
}

.ilp-faq__item[open] .ilp-faq__icon {
  transform: rotate(45deg);
}

.ilp-faq__answer {
  padding: 0 20px 20px;
  font-family: var(--font-body-family);
  font-size: 14px;
  line-height: 1.75;
  color: var(--ilp-faq-muted, rgba(var(--color-foreground), 0.72));
}

.ilp-faq__answer > *:first-child {
  margin-top: 0;
}

.ilp-faq__answer > *:last-child {
  margin-bottom: 0;
}

@media (max-width: 749px) {
  .ilp-faq__header {
    margin-bottom: 18px;
  }

  .ilp-faq__heading {
    font-size: 23px;
  }

  .ilp-faq__summary {
    padding: 16px;
    font-size: 14px;
  }

  .ilp-faq__answer {
    padding: 0 16px 16px;
    font-size: 13px;
  }
}


.ilp-qv__thumb {
  -webkit-tap-highlight-color: transparent;
}

.ilp-qv__thumb.is-active {
  opacity: 1;
}


/* ── Draggable Back To Top Block ── */
.ilp-scroll-top-block {
  display: flex;
  justify-content: center;
  text-align: center;
}

.ilp-scroll-top-block__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 44px;
  padding: 0 20px;
  border-radius: 999px;
  border: 1px solid var(--ilp-scroll-top-border, rgba(var(--color-foreground), 0.18));
  background: var(--ilp-scroll-top-bg, rgba(255,255,255,0.46));
  color: var(--ilp-scroll-top-text, var(--ilp-text, #1a1a1a));
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  font-family: var(--font-body-family);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease, opacity 0.2s ease;
  -webkit-tap-highlight-color: transparent;
}

.ilp-scroll-top-block__btn:hover {
  opacity: 0.86;
  transform: translateY(-1px);
}

.ilp-scroll-top-block__icon {
  width: 18px;
  height: 18px;
  display: inline-flex;
  flex-shrink: 0;
}

.ilp-scroll-top-block__icon svg {
  width: 100%;
  height: 100%;
  display: block;
  fill: currentColor;
}

.ilp-scroll-top-block__text {
  line-height: 1;
  white-space: nowrap;
}



/* ── Hide Footer On Influencer Landing Page ── */
body:has(.ilp-page) #shopify-section-footer,
body:has(.ilp-page) .footer,
body:has(.ilp-page) footer,
body:has(.ilp-page) .shopify-section-group-footer-group {
  display: none !important;
}


.ilp-page {
  background: var(--ilp-bg, #ffffff);
  color: var(--ilp-text, #1a1a1a);
}

/* ── Button ── */
.ilp-btn {
  display: inline-block;
  background: var(--ilp-btn-bg, #1a1a1a);
  color: var(--ilp-btn-text, #ffffff);
  font-family: var(--font-body-family);
  font-style: var(--font-body-style);
  font-weight: 600;
  font-size: var(--ilp-fs-btn, 14px);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 1.2rem 2.8rem;
  border: none;
  cursor: pointer;
  transition: background 0.2s ease;
  margin-top: 1.6rem;
}
.ilp-btn:hover {
  background: var(--ilp-btn-hover, #333333);
  color: var(--ilp-btn-text, #ffffff);
}

/* ── 1. Profile ── */
.ilp-profile__inner {
  display: flex;
  align-items: flex-start;
  gap: 3.2rem;
}
.ilp-profile__avatar-wrap {
  flex-shrink: 0;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid rgba(0,0,0,0.08);
}
.ilp-profile__avatar {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
}
.ilp-profile__content { flex: 1; min-width: 0; }
.ilp-profile__name {
  font-family: var(--font-heading-family);
  font-style: var(--font-heading-style);
  font-weight: var(--font-heading-weight);
  font-size: var(--ilp-fs-profile-name, 28px);
  line-height: 1.2;
  margin: 0 0 1rem;
  color: var(--ilp-text, #1a1a1a);
}
.ilp-profile__desc {
  font-family: var(--font-body-family);
  font-size: var(--ilp-fs-profile-desc, 16px);
  line-height: 1.7;
  color: var(--ilp-text, #1a1a1a);
  margin: 0;
}

/* ── 2. Banner ── */
.ilp-banner { position: relative; width: 100%; overflow: hidden; }
.ilp-banner__click { display: block; cursor: pointer; }
.ilp-banner__image--desktop { display: block; }
.ilp-banner__image--mobile  { display: none; }
.ilp-banner__img {
  width: 100%; height: auto; display: block;
  transition: transform 0.4s ease;
}
.ilp-banner__click:hover .ilp-banner__img { transform: scale(1.01); }
.ilp-banner__overlay {
  position: absolute;
  padding: 3.2rem 4rem;
  max-width: 560px;
  pointer-events: none;
}
.ilp-banner__overlay .ilp-btn--banner,
.ilp-banner__overlay a { pointer-events: auto; }
.ilp-banner__overlay--top-left     { top: 0; left: 0; }
.ilp-banner__overlay--top-right    { top: 0; right: 0; left: auto; text-align: right; }
.ilp-banner__overlay--center       { top: 50%; left: 50%; transform: translate(-50%,-50%); text-align: center; max-width: 640px; }
.ilp-banner__overlay--bottom-left  { bottom: 0; left: 0; top: auto; }
.ilp-banner__overlay--bottom-right { bottom: 0; right: 0; left: auto; top: auto; text-align: right; }
.ilp-banner__heading {
  font-family: var(--font-heading-family);
  font-style: var(--font-heading-style);
  font-weight: var(--font-heading-weight);
  font-size: var(--ilp-fs-banner-head, 36px);
  line-height: 1.15;
  margin: 0 0 1rem;
  color: #ffffff;
  text-shadow: 0 1px 4px rgba(0,0,0,0.4);
}
.ilp-banner__desc {
  font-family: var(--font-body-family);
  font-size: var(--ilp-fs-banner-desc, 16px);
  line-height: 1.6;
  color: #ffffff;
  text-shadow: 0 1px 3px rgba(0,0,0,0.35);
  margin: 0;
}
.ilp-btn--banner { background: #ffffff; color: #1a1a1a; }
.ilp-btn--banner:hover { background: rgba(255,255,255,0.85); color: #1a1a1a; }

/* ── 3. Countdown ── */
.ilp-countdown { background: var(--ilp-timer-bg, #1a1a1a); padding: 40px 0; border-bottom:1px solid #1a1a1a }
.ilp-countdown__inner {
  display: flex; flex-direction: column;
  align-items: center; gap: 1.6rem; text-align: center;
}
.ilp-countdown__heading {
  font-family: var(--font-body-family);
  font-size: var(--ilp-fs-timer-heading, 14px);
  font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--ilp-timer-label, rgba(255,255,255,0.6)); margin: 0;
}
.ilp-countdown__timer { display: flex; align-items: flex-start; gap: 0.8rem; }
.ilp-countdown__unit  { display: flex; flex-direction: column; align-items: center; min-width: 72px; }
.ilp-countdown__number {
  font-family: var(--font-heading-family);
  font-style: var(--font-heading-style);
  font-weight: var(--font-heading-weight);
  font-size: var(--ilp-fs-timer-number, 52px);
  line-height: 1;
  color: var(--ilp-timer-text, #ffffff);
  letter-spacing: -0.02em;
}
.ilp-countdown__label {
  font-family: var(--font-body-family);
  font-size: var(--ilp-fs-timer-label, 11px);
  font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--ilp-timer-label, rgba(255,255,255,0.55)); margin-top: 0.4rem;
}
.ilp-countdown__sep {
  font-family: var(--font-heading-family);
  font-size: var(--ilp-fs-timer-number, 52px);
  line-height: 1; color: var(--ilp-timer-text, #ffffff); opacity: 0.4; padding-top: 0.05em;
}
.ilp-countdown__subtext {
  font-family: var(--font-body-family);
  font-size: var(--ilp-fs-timer-label, 14px);
  color: var(--ilp-timer-label, rgba(255,255,255,0.55)); margin: 0;
}
.ilp-countdown__ended {
  font-family: var(--font-body-family);
  font-size: var(--ilp-fs-timer-heading, 16px);
  color: var(--ilp-timer-text, #ffffff); margin: 0;
}

/* ── 4. Video — YouTube style layout ── */
.ilp-video__inner { display: flex; flex-direction: column; gap: 2rem; }
.ilp-video__heading {
  font-family: var(--font-heading-family);
  font-style: var(--font-heading-style);
  font-weight: var(--font-heading-weight);
  font-size: var(--ilp-fs-video-head, 26px);
  line-height: 1.2; margin: 0;
  color: var(--ilp-text, #1a1a1a); text-align: center;
}

/* Two-column layout: left player, right info */
.ilp-video__yt-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: stretch;
  background: #F4F0E8;
}

/* Left: embed */
.ilp-video__yt-player { width: 100%; }
.ilp-video__wrap {
  position: relative; width: 100%;
  aspect-ratio: 16 / 9; overflow: hidden; background: #000;
  height: 100%;
}
.ilp-video__wrap iframe {
  position: absolute; top: 0; left: 0;
  width: 100%; height: 100%; border: none;
}

/* Right: info panel — YouTube dark style */
.ilp-video__yt-info {
  background: #F4F0E8;
  padding: 2.4rem 2.8rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  border-top: 1px solid #6E463A;
}

.ilp-video__yt-meta {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

/* Title — full text */
.ilp-video__yt-title {
  font-family: var(--font-body-family);
  font-weight: 600;
  font-size: var(--ilp-fs-video-head, 18px);
  line-height: 1.4;
  color: #000;
  margin: 0;
  white-space: normal;
  overflow: visible;
}

/* Watch link */
.ilp-video__yt-watch {
  font-family: var(--font-body-family);
  font-size: 1.3rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: #000;
  text-decoration: none;
  text-transform: uppercase;
  align-self: flex-start;
  margin-top: 0.6rem;
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  transition: opacity 0.2s ease;
}
.ilp-video__yt-watch:hover { opacity: 0.65; }
.ilp-video__yt-watch-icon {
  width: 28px;
  height: 28px;
  border: 1px solid #000;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.ilp-video__yt-watch-icon svg {
  width: 13px;
  height: 13px;
  fill: currentColor;
  margin-left: 2px;
}

/* ── 5. Collection Header ── */
.ilp-collection-header { text-align: center; }
.ilp-collection-header__heading {
  font-family: var(--font-heading-family);
  font-style: var(--font-heading-style);
  font-weight: var(--font-heading-weight);
  font-size: var(--ilp-fs-col-head, 32px);
  line-height: 1.2; margin: 0 0 0.8rem;
  color: var(--ilp-text, #1a1a1a);
}
.ilp-collection-header__sub {
  font-family: var(--font-body-family);
  font-size: var(--ilp-fs-col-sub, 16px);
  line-height: 1.6; color: rgba(var(--color-foreground), 0.65); margin: 0;
}

/* ── Max width — constrains the entire section ── */
#ILP-{{ section.id }}.ilp-page {
  max-width: var(--ilp-max-width, 1200px);
  margin-left: auto;
  margin-right: auto;
}

/* ── Inner containers fill section width ── */
#ILP-{{ section.id }} .page-width,
#ILP-{{ section.id }} .ilp-products {
  max-width: 100%;
  padding-left: 24px;
  padding-right: 24px;
  box-sizing: border-box;
}

#ilp-products { margin: 30px 0; }

.ilp-product-layout-toggle {
  display: none;
}

.ilp-product-layout-toggle__label {
  font-family: var(--font-body-family);
  font-size: 1.2rem;
  font-weight: 600;
  color: rgba(var(--color-foreground), 0.65);
}

.ilp-product-layout-toggle__btn {
  border: 1px solid rgba(var(--color-foreground), 0.18);
  background: #ffffff;
  color: var(--ilp-text, #1a1a1a);
  min-height: 32px;
  padding: 0 1.1rem;
  border-radius: 999px;
  font-family: var(--font-body-family);
  font-size: 1.2rem;
  font-weight: 600;
  cursor: pointer;
}

.ilp-product-layout-toggle__btn.is-active {
  background: var(--ilp-text, #1a1a1a);
  color: #ffffff;
  border-color: var(--ilp-text, #1a1a1a);
}


/* ── Product Group Overview Tabs ── */
.ilp-product-group-tabs__headline {
  margin: 0 0 18px;
  text-align: center;
  font-family: var(--font-heading-family);
  font-style: var(--font-heading-style);
  font-weight: var(--font-heading-weight);
  font-size: var(--ilp-group-tab-headline-size, 30px);
  line-height: 1.25;
  color: var(--ilp-group-tab-headline-color, #2f5132);
}

.ilp-product-group-tabs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 100%;
  margin: 0 auto 28px;
  text-align: center;
}

.ilp-product-group-tabs__btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 46px;
  padding: 0 22px;
  border: 1px solid var(--ilp-group-tab-border, rgba(46, 125, 50, 0.22));
  border-radius: 999px;
  background: var(--ilp-group-tab-bg, #ffffff);
  color: var(--ilp-group-tab-text, #2f5132);
  font-family: var(--font-body-family);
  font-size: var(--ilp-group-tab-font-size, 14px);
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: 0.02em;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(46, 125, 50, 0.08);
  transition: background 0.22s ease, color 0.22s ease, border-color 0.22s ease, transform 0.2s ease, box-shadow 0.22s ease;
}

.ilp-product-group-tabs__btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 28px rgba(46, 125, 50, 0.13);
}

.ilp-product-group-tabs__btn.is-active {
  background: var(--ilp-group-tab-active-bg, #2e7d32);
  color: var(--ilp-group-tab-active-text, #ffffff);
  border-color: var(--ilp-group-tab-active-border, #2e7d32);
  box-shadow: 0 14px 34px rgba(46, 125, 50, 0.22);
}

.ilp-product-group-tabs__btn.is-active::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -7px;
  width: 10px;
  height: 10px;
  background: var(--ilp-group-tab-active-bg, #2e7d32);
  transform: translateX(-50%) rotate(45deg);
}

@media (max-width: 749px) {
  .ilp-product-group-tabs__headline {
    margin-bottom: 14px;
    font-size: var(--ilp-group-tab-headline-mobile-size, 24px);
  }

  .ilp-product-group-tabs {
    grid-template-columns: 1fr;
    gap: 9px;
    margin-bottom: 24px;
  }

  .ilp-product-group-tabs__btn {
    min-height: 42px;
    padding: 0 18px;
    font-size: var(--ilp-group-tab-mobile-font-size, 13px);
  }
}

/* ── Product Group ── */
.ilp-product-group {
  margin: 0 0 34px;
}

.ilp-product-group[hidden] {
  display: none !important;
}

.ilp-product-group:last-child {
  margin-bottom: 0;
}

.ilp-product-group__subheadline {
  display: table;
  width: fit-content;
  max-width: 100%;
  margin: 0 auto 18px;
  padding: 10px 22px;
  border: 1px solid var(--ilp-product-group-subheadline-border, #d7ead9);
  border-radius: 999px;
  background: var(--ilp-product-group-subheadline-bg, #f2faf2);
  color: var(--ilp-product-group-subheadline-text, #2f5132);
  font-family: var(--font-heading-family);
  font-style: var(--font-heading-style);
  font-weight: var(--font-heading-weight);
  font-size: var(--ilp-product-group-subheadline-size, 22px);
  line-height: 1.35;
  text-align: center;
  letter-spacing: 0.02em;
  box-shadow: 0 10px 28px rgba(46, 125, 50, 0.08);
}

.ilp-product-group__subheadline::before {
  content: "✦";
  margin-right: 8px;
  color: var(--ilp-group-tab-active-bg, #2e7d32);
  font-size: 0.85em;
}

.ilp-product-group__subheadline::after {
  content: "✦";
  margin-left: 8px;
  color: var(--ilp-group-tab-active-bg, #2e7d32);
  font-size: 0.85em;
}

@media (max-width: 749px) {
  .ilp-product-group {
    margin-bottom: 28px;
  }

  .ilp-product-group__subheadline {
    margin: 0 auto 14px;
    padding: 8px 16px;
    font-size: var(--ilp-product-group-subheadline-mobile-size, 18px);
    text-align: center;
  }
}

/* ── Product Grid ── */
.ilp-products { padding-top: 0; }

.ilp-products__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.4rem 1.6rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.ilp-product-card__inner {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.ilp-product-card__image-link,
.ilp-product-card__title-link {
  text-decoration: none;
  color: inherit;
  display: block;
}

.ilp-product-card__image-link {
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}

.ilp-product-card__image-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  background: rgba(var(--color-foreground), 0.04);
  margin-bottom: 1.2rem;
}

.ilp-product-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.ilp-product-card__image-link:hover .ilp-product-card__image {
  transform: scale(1.04);
}

.ilp-product-card__sticker-stack {
  position: absolute;
  top: 0px;
  left: 0px;
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
  pointer-events: none;
}

.ilp-product-card__sticker {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 23px;
    padding: 12px 22px;
    border-radius: 0px;
    font-family: var(--font-body-family);
    font-size: 13px;
    font-weight: 500;
    line-height: 1;
    letter-spacing: 0px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    backdrop-filter: blur(8px);
}

@media screen and (max-width: 480px) {
  .ilp-product-card__sticker {
    font-size: 10px;
    padding: 4px 10px;
  }
}

.ilp-product-card__sticker--default,
.ilp-product-card__sticker--white {
  background: rgba(255,255,255,0.94);
  color: #111111;
  border: 1px solid rgba(0,0,0,0.08);
}

.ilp-product-card__sticker--red {
  background: #d92d20;
  color: #ffffff;
}

.ilp-product-card__sticker--green {
  background: #1f7a1f;
  color: #ffffff;
}

.ilp-product-card__sticker--black {
  background: #111111;
  color: #ffffff;
}

.ilp-product-card__sticker--orange {
  background: #FA8504;
  color: #ffffff;
}

.ilp-product-card__sticker--yellow {
  background: #ffe600;
  color: #000;
}

.ilp-product-card__info {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.ilp-product-card__title {
  font-family: var(--font-body-family);
  font-style: var(--font-body-style);
  font-weight: 600;
  font-size: var(--ilp-fs-product-title, 14px);
  line-height: 1.4;
  margin: 0;
  color: var(--ilp-text, #1a1a1a);
}

.ilp-product-card__features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  font-family: var(--font-body-family);
  font-size: 1.2rem;
  line-height: 1.4;
  color: rgba(var(--color-foreground), 0.65);
}

.ilp-product-card__features li::before {
  content: "✓";
  margin-right: 0.55rem;
  color: #2e7d32;
  font-weight: 700;
}

.ilp-product-card__bottom {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 0.4rem;
}

.ilp-product-card__price-wrap {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  flex-wrap: wrap;
  min-width: 0;
}

.ilp-product-card__price {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 0.45rem;
  min-width: 0;
  font-family: var(--font-body-family);
  font-size: var(--ilp-fs-product-price, 14px);
  margin: 0;
}

.ilp-product-card__price--compare {
  text-decoration: line-through;
  color: rgba(var(--color-foreground), 0.45);
  font-size: 0.9em;
}

.ilp-product-card__price--current {
  color: var(--ilp-text, #1a1a1a);
  font-weight: 700;
}

.ilp-product-card__price--sale {
  color: #c0392b;
}

.ilp-product-card__discount {
  font-family: var(--font-body-family);
  font-size: 1.15rem;
  font-weight: 700;
  color: #c0392b;
  white-space: nowrap;
  flex-shrink: 0;
}

.ilp-product-card__form {
  flex-shrink: 0;
}

.ilp-product-card__cart-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(var(--color-foreground), 0.18);
  background: #ffffff;
  color: #000000;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 0;
  transition: background 0.2s ease, transform 0.2s ease, color 0.2s ease;
}

.ilp-product-card__cart-icon svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.ilp-product-card__cart-loading {
  width: 18px;
  height: 18px;
  border: 2px solid currentColor;
  border-right-color: transparent;
  border-radius: 50%;
  display: none;
  animation: ilpSpin 0.65s linear infinite;
}

.ilp-product-card__cart-btn.is-loading .ilp-product-card__cart-icon {
  display: none;
}

.ilp-product-card__cart-btn.is-loading .ilp-product-card__cart-loading {
  display: inline-block;
}

@keyframes ilpSpin {
  to { transform: rotate(360deg); }
}

.ilp-product-card__cart-btn:hover {
  background: #000000;
  color: #ffffff;
  transform: translateY(-1px);
}

.ilp-product-card__cart-btn:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}




/* ── Three Feature Icons Row ── */
.ilp-three-features {
  color: var(--ilp-three-features-text, #1a1a1a);
}

.ilp-three-features__inner {
  background: var(--ilp-three-features-bg, #ffffff);
  border-radius: var(--ilp-three-features-radius, 0px);
  padding: 24px;
}

.ilp-three-features__heading {
  margin: 0 0 20px;
  text-align: center;
  font-family: var(--font-heading-family);
  font-style: var(--font-heading-style);
  font-weight: var(--font-heading-weight);
  font-size: 24px;
  line-height: 1.25;
  color: var(--ilp-three-features-text, #1a1a1a);
}

.ilp-three-features__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.ilp-three-features__item {
  background: var(--ilp-three-features-card-bg, #F7F4EE);
  border: 1px solid var(--ilp-three-features-border, rgba(0,0,0,0.08));
  border-radius: calc(var(--ilp-three-features-radius, 0px) * 0.75);
  padding: 25px 0px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
  text-align: center;
  min-height: 150px;
}

.ilp-three-features__icon-wrap {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.ilp-three-features__icon {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.ilp-three-features__content h3 {
  margin: 0;
  font-family: var(--font-body-family);
  font-size: 15px;
  line-height: 1.35;
  font-weight: 700;
  color: var(--ilp-three-features-text, #1a1a1a);
}

.ilp-three-features__content p {
  margin: 6px 0 0;
  font-family: var(--font-body-family);
  font-size: 13px;
  line-height: 1.55;
  color: var(--ilp-three-features-muted, rgba(0,0,0,0.65));
}

/* ── Brand Feature Block ── */
.ilp-brand-feature {
  color: var(--ilp-brand-feature-text, #1a1a1a);
}

.ilp-brand-feature__inner {
  background: var(--ilp-brand-feature-bg, #F7F4EE);
  padding: 32px;
  border-radius: var(--ilp-brand-feature-radius, 0px);
}

.ilp-brand-feature__eyebrow {
  display: inline-block;
  margin-bottom: 10px;
  font-family: var(--font-body-family);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ilp-brand-feature-accent, #8B7355);
}

.ilp-brand-feature__title {
  font-family: var(--font-heading-family);
  font-style: var(--font-heading-style);
  font-weight: var(--font-heading-weight);
  margin: 0 0 12px;
  font-size: 32px;
  line-height: 1.2;
  color: var(--ilp-brand-feature-text, #1a1a1a);
}

.ilp-brand-feature__desc {
  max-width: 760px;
  font-family: var(--font-body-family);
  font-size: 15px;
  line-height: 1.7;
  color: var(--ilp-brand-feature-muted, rgba(0,0,0,0.72));
}

.ilp-brand-feature__desc p {
  margin: 0;
}

.ilp-brand-feature__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
  margin-top: 30px;
}

.ilp-brand-feature__card {
  background: var(--ilp-brand-feature-card-bg, #ffffff);
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-height: 180px;
  border-radius: calc(var(--ilp-brand-feature-radius, 0px) * 0.65);
  border: 1px solid rgba(0,0,0,0.04);
}

.ilp-brand-feature__icon {
  font-size: 26px;
  line-height: 1;
}

.ilp-brand-feature__card h3 {
  margin: 0 0 6px;
  font-family: var(--font-body-family);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.4;
  color: var(--ilp-brand-feature-text, #1a1a1a);
}

.ilp-brand-feature__card p {
  margin: 0;
  font-family: var(--font-body-family);
  font-size: 13px;
  line-height: 1.6;
  color: var(--ilp-brand-feature-muted, rgba(0,0,0,0.65));
}

/* ── Gift With Purchase Block ── */
.ilp-gwp {
  color: var(--ilp-gwp-text, #1a1a1a);
}

.ilp-gwp__inner {
  background: var(--ilp-gwp-bg, #000000);
  padding: 36px 24px 28px;
  border-radius:50px;
}

.ilp-gwp__header {
  text-align: center;
  margin-bottom: 28px;
}

.ilp-gwp__eyebrow {
  font-family: var(--font-body-family);
  font-size: var(--ilp-gwp-eyebrow-size, 14px);
  font-weight: 800;
  letter-spacing: 0.06em;
  color: var(--ilp-gwp-accent, #ffc1d8);
  text-transform: uppercase;
  margin-bottom: 20px;
}

.ilp-gwp__heading {
  font-family: var(--font-heading-family);
  font-style: var(--font-heading-style);
  font-weight: 800;
  font-size: var(--ilp-gwp-heading-size, 42px);
  line-height: 1.05;
  color: var(--ilp-gwp-accent, #ffc1d8);
  margin: 0 0 10px;
  text-align: center;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.ilp-gwp__subheading {
  font-family: var(--font-body-family);
  font-size: var(--ilp-gwp-subheading-size, 18px);
  line-height: 1.45;
  color: var(--ilp-gwp-accent, #ffc1d8);
  text-align: center;
  font-weight: 600;
}

.ilp-gwp__panel {
  background: var(--ilp-gwp-panel-bg, #4f4f4f);
  border: var(--ilp-gwp-border-width, 4px) solid var(--ilp-gwp-border, #ffc1d8);
  border-radius: var(--ilp-gwp-radius, 14px);
  padding: var(--ilp-gwp-padding, 26px);
  overflow: hidden;
}

/* True desktop 50/50 layout */
.ilp-gwp__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: stretch;
  gap: 0;
}

.ilp-gwp__divider {
  display: none;
}

.ilp-gwp__item {
  display: grid;
  grid-template-columns: var(--ilp-gwp-image-width, 160px) minmax(0, 1fr);
  gap: 26px;
  align-items: center;
  min-width: 0;
  padding: 0 26px;
}

.ilp-gwp__item:first-child {
  border-right: 1px solid var(--ilp-gwp-divider, rgba(255,255,255,0.85));
  padding-left: 0;
}

.ilp-gwp__item:last-child {
  padding-right: 0;
}

.ilp-gwp__image-wrap {
  width: 100%;
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ilp-gwp__image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.ilp-gwp__content {
  min-width: 0;
  text-align: var(--ilp-gwp-align, left);
}

/* Position controls */
.ilp-gwp--image_right .ilp-gwp__image-wrap { order: 2; }
.ilp-gwp--image_right .ilp-gwp__content { order: 1; }

.ilp-gwp--image_top .ilp-gwp__item {
  grid-template-columns: 1fr;
  grid-template-rows: auto auto;
  text-align: center;
}
.ilp-gwp--image_top .ilp-gwp__image-wrap {
  max-width: var(--ilp-gwp-image-width, 160px);
  margin: 0 auto;
}

.ilp-gwp--text_top .ilp-gwp__item {
  grid-template-columns: 1fr;
  grid-template-rows: auto auto;
  text-align: center;
}
.ilp-gwp--text_top .ilp-gwp__content { order: 1; }
.ilp-gwp--text_top .ilp-gwp__image-wrap {
  order: 2;
  max-width: var(--ilp-gwp-image-width, 160px);
  margin: 0 auto;
}

.ilp-gwp__top-text {
  font-family: var(--font-heading-family);
  font-size: var(--ilp-gwp-top-text-size, 28px);
  line-height: 22px;
  font-weight: 800;
  color: var(--ilp-gwp-text, #ffffff);
  padding-bottom: 12px;
  border-bottom: 1px solid #E76D00;
  margin-bottom: 14px;
}

.ilp-gwp__bottom-text {
  font-family: var(--font-body-family);
  font-size: var(--ilp-gwp-bottom-text-size, 18px);
  line-height: 1.5;
  color: var(--ilp-gwp-text, #ffffff);
  font-weight: 600;
}

.ilp-gwp__note {
  margin-top: 22px;
  text-align: center;
  font-family: var(--font-body-family);
  font-size: var(--ilp-gwp-note-size, 14px);
  line-height: 1.5;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--ilp-gwp-text, #ffffff);
}

@media (max-width: 749px) {
  .ilp-gwp__inner {
    padding: 30px 14px 24px;
  }

  .ilp-gwp__eyebrow {
    font-size: calc(var(--ilp-gwp-eyebrow-size, 14px) * 0.86);
    margin-bottom: 16px;
  }

  .ilp-gwp__heading {
    font-size: calc(var(--ilp-gwp-heading-size, 42px) * 0.68);
  }

  .ilp-gwp__subheading {
    font-size: calc(var(--ilp-gwp-subheading-size, 18px) * 0.85);
  }

  .ilp-gwp__panel {
    padding: 18px 14px;
  }

  .ilp-gwp__grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .ilp-gwp__item,
  .ilp-gwp--image_right .ilp-gwp__item,
  .ilp-gwp--image_top .ilp-gwp__item,
  .ilp-gwp--text_top .ilp-gwp__item {
    grid-template-columns: 105px minmax(0, 1fr);
    gap: 14px;
    padding: 18px 0;
    text-align: left;
    align-items: center;
  }

  .ilp-gwp__item:first-child {
    border-right: 0;
    border-bottom: 1px solid var(--ilp-gwp-divider, rgba(255,255,255,0.85));
    padding-top: 0;
  }

  .ilp-gwp__item:last-child {
    padding-bottom: 0;
  }

  .ilp-gwp--image_right .ilp-gwp__image-wrap,
  .ilp-gwp--image_top .ilp-gwp__image-wrap,
  .ilp-gwp--text_top .ilp-gwp__image-wrap {
    order: initial;
    max-width: none;
    margin: 0;
  }

  .ilp-gwp--image_right .ilp-gwp__content,
  .ilp-gwp--text_top .ilp-gwp__content {
    order: initial;
  }

  .ilp-gwp__top-text {
    font-size: 14px;
  }

  .ilp-gwp__bottom-text {
    font-size: 12px;
  }

  .ilp-gwp__note {
    font-size: calc(var(--ilp-gwp-note-size, 14px) * 0.9);
  }
}


/* ── Fixed Shop Now Bar ── */
.ilp-shopbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: var(--ilp-shopbar-bg, #000000);
  color: var(--ilp-shopbar-text, #ffffff);
  transform: translateY(-110%);
  transition: transform 0.28s ease;
  box-shadow: 0 8px 22px rgba(0,0,0,0.12);
}
.ilp-shopbar.is-visible { transform: translateY(0); }
.ilp-shopbar__inner {
  min-height: var(--ilp-shopbar-height, 64px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.ilp-shopbar__left {
  display: flex;
  align-items: center;
  gap: 2rem;
  min-width: 0;
}
.ilp-shopbar__logo-link {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.ilp-shopbar__logo {
  display: block;
  width: auto;
  max-width: 120px;
  max-height: 34px;
  object-fit: contain;
}
.ilp-shopbar__details {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 1.2rem;
  min-width: 0;
  font-family: var(--font-body-family);
  font-size: 15px;
  font-weight: 600;
  line-height: 1.3;
  color: var(--ilp-shopbar-text, #ffffff);
}
.ilp-shopbar__event,
.ilp-shopbar__offer {
  white-space: normal;
  overflow: visible;
  text-overflow: unset;
  word-break: break-word;

}
.ilp-shopbar__sep {
  display: inline-block;
  width: 1px;
  height: 18px;
  background: currentColor;
  opacity: 0.35;
  flex-shrink: 0;
}
.ilp-shopbar__right {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.ilp-shopbar__cart-btn {
  position: relative;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  background: var(--ilp-shopbar-btn-bg, #ffffff);
  color: var(--ilp-shopbar-btn-text, #000000);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: opacity 0.2s ease, transform 0.2s ease;
  -webkit-tap-highlight-color: transparent;
}

.ilp-shopbar__cart-btn:hover {
  opacity: 0.86;
  transform: translateY(-1px);
}

.ilp-shopbar__cart-icon {
  width: 21px;
  height: 21px;
  display: inline-flex;
}

.ilp-shopbar__cart-icon svg {
  width: 100%;
  height: 100%;
  display: block;
  fill: currentColor;
}

.ilp-shopbar__cart-count {
  position: absolute;
  top: -5px;
  right: -5px;
  min-width: 20px;
  height: 20px;
  padding: 0 5px;
  border-radius: 999px;
  background: #d92d20;
  color: #ffffff;
  border: 2px solid var(--ilp-shopbar-bg, #000000);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body-family);
  font-size: 11px;
  font-weight: 800;
  line-height: 1;
}

.ilp-shopbar__cart-count.is-empty {
  display: none;
}


/* ── Product Quick View ── */
.ilp-product-card__media {
  min-width: 0;
}

.ilp-product-card__quick-view-btn {
  display: none;
  width: 100%;
  min-height: 30px;
  margin-top: 8px;
  border: 1px solid rgba(var(--color-foreground), 0.16);
  background: var(--ilp-btn-bg, #1a1a1a);
  color: var(--ilp-btn-text, #ffffff);
  font-family: var(--font-body-family);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-align: center;
  cursor: pointer;
  border-radius:50px;
}

.ilp-qv {
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  visibility: hidden;
}

.ilp-qv.is-open {
  pointer-events: auto;
  visibility: visible;
}

.ilp-qv__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  opacity: 0;
  transition: opacity 0.28s ease;
}

.ilp-qv.is-open .ilp-qv__overlay {
  opacity: 1;
}

.ilp-qv__drawer {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  max-height: 88vh;
  background: #ffffff;
  color: var(--ilp-text, #1a1a1a);
  border-radius: 18px 18px 0 0;
  box-shadow: 0 -18px 60px rgba(0,0,0,0.18);
  transform: translateY(105%);
  transition: transform 0.34s cubic-bezier(0.22, 1, 0.36, 1);
  overflow: hidden;
}

.ilp-qv.is-open .ilp-qv__drawer {
  transform: translateY(0);
}

.ilp-qv__handle {
  width: 44px;
  height: 4px;
  border-radius: 999px;
  background: rgba(0,0,0,0.18);
  margin: 10px auto 6px;
}

.ilp-qv__close {
  position: absolute;
  top: 12px;
  right: 14px;
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 50%;
  background: rgba(255,255,255,0.88);
  color: #111111;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 2;
}

.ilp-qv__close svg {
  width: 18px;
  height: 18px;
}

.ilp-qv__content {
  max-height: calc(88vh - 20px);
  overflow-y: auto;
  padding: 12px 18px 24px;
  -webkit-overflow-scrolling: touch;
}

.ilp-qv__product {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 24px;
  max-width: 980px;
  margin: 0 auto;
}

.ilp-qv__image-stage {
  position: relative;
  background: #f7f7f7;
  aspect-ratio: 1 / 1;
  overflow: hidden;
}


.ilp-qv__sticker-stack {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
  max-width: calc(100% - 92px);
  pointer-events: none;
}

.ilp-qv__sticker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 24px;
  padding: 4px 9px;
  border-radius: 999px;
  font-family: var(--font-body-family);
  font-size: 11px;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  box-shadow: 0 6px 14px rgba(0,0,0,0.12);
}

.ilp-qv__sticker--red { background: #d92d20; color: #ffffff; }
.ilp-qv__sticker--green { background: #157347; color: #ffffff; }
.ilp-qv__sticker--black { background: #111111; color: #ffffff; }
.ilp-qv__sticker--orange { background: #f97316; color: #ffffff; }
.ilp-qv__sticker--yellow { background: #facc15; color: #111111; }
.ilp-qv__sticker--white { background: #ffffff; color: #111111; border: 1px solid rgba(0,0,0,0.12); }
.ilp-qv__sticker--default { background: var(--ilp-accent, #1a1a1a); color: #ffffff; }

.ilp-qv__features {
  list-style: none;
  padding-left: 0;
}

.ilp-qv__features li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 7px;
}

.ilp-qv__features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  width: 17px;
  height: 17px;
  border-radius: 50%;
  background: rgba(21, 115, 71, 0.1);
  color: #157347;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 800;
  line-height: 1;
}

.ilp-qv__accordion-content ul {
  list-style: none;
  padding-left: 0;
}

.ilp-qv__accordion-content li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 7px;
}

.ilp-qv__accordion-content li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0.15em;
  color: #157347;
  font-weight: 800;
}

.ilp-qv__discount-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #d92d20;
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-family: var(--font-body-family);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: 0.02em;
  box-shadow: 0 8px 18px rgba(0,0,0,0.16);
}

.ilp-qv__price-save {
  font-size: 13px;
  font-weight: 700;
  color: #d92d20;
  background: rgba(217, 45, 32, 0.08);
  padding: 4px 8px;
  border-radius: 999px;
  white-space: nowrap;
}

.ilp-qv__main-image,
.ilp-qv__thumb-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.ilp-qv__thumbs {
  display: flex;
  gap: 8px;
  margin-top: 10px;
  overflow-x: auto;
  padding-bottom: 2px;
}

.ilp-qv__thumb {
  width: 54px;
  height: 54px;
  flex: 0 0 54px;
  border: 1px solid rgba(0,0,0,0.1);
  background: #f7f7f7;
  padding: 0;
  cursor: pointer;
  opacity: 0.72;
}

.ilp-qv__thumb.is-active {
  opacity: 1;
  border-color: var(--ilp-text, #1a1a1a);
}

.ilp-qv__title {
  font-family: var(--font-heading-family);
  font-size: 22px;
  line-height: 1.3;
  margin: 0 42px 8px 0;
  color: var(--ilp-text, #1a1a1a);
}


.ilp-qv__short-description {
  margin: 0 0 14px;
  font-family: var(--font-body-family);
  font-size: 14px;
  line-height: 1.65;
  color: rgba(var(--color-foreground), 0.78);
}

.ilp-qv__short-description p {
  margin: 0;
  background: #e6e6e6;
  padding: 10px 15px;
  border-radius: 10px;
}

.ilp-qv__price {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  font-family: var(--font-body-family);
}

.ilp-qv__price-current {
  font-size: 18px;
  font-weight: 700;
}

.ilp-qv__price-current--sale {
  color: #d92d20;
}

.ilp-qv__price-compare {
  font-size: 14px;
  color: rgba(var(--color-foreground), 0.5);
  text-decoration: line-through;
}

.ilp-qv__features,
.ilp-qv__description {
  margin: 0 0 16px;
  font-family: var(--font-body-family);
  font-size: 14px;
  line-height: 1.65;
  color: rgba(var(--color-foreground), 0.75);
}

.ilp-qv__label {
  display: block;
  margin: 0 0 6px;
  font-family: var(--font-body-family);
  font-size: 12px;
  font-weight: 700;
  color: rgba(var(--color-foreground), 0.72);
}

.ilp-qv__select,
.ilp-qv__qty-input {
  width: 100%;
  min-height: 44px;
  border: 1px solid rgba(var(--color-foreground), 0.18);
  background: #ffffff;
  color: var(--ilp-text, #1a1a1a);
  font-family: var(--font-body-family);
  font-size: 14px;
  padding: 0 12px;
  border-radius: 0;
}

.ilp-qv__select-wrap,
.ilp-qv__quantity-row {
  margin-bottom: 14px;
}

.ilp-qv__quantity-row {display:none}

.ilp-qv__quantity {
  display: grid;
  grid-template-columns: 42px 1fr 42px;
  max-width: 150px;
}

.ilp-qv__qty-btn {
  border: 1px solid rgba(var(--color-foreground), 0.18);
  background: #ffffff;
  color: var(--ilp-text, #1a1a1a);
  font-size: 18px;
  cursor: pointer;
}

.ilp-qv__qty-input {
  text-align: center;
  border-left: 0;
  border-right: 0;
  padding: 0;
}

.ilp-qv__add-btn {
  width: 100%;
  min-height: 48px;
  border: 0;
  background: var(--ilp-btn-bg, #1a1a1a);
  color: var(--ilp-btn-text, #ffffff);
  font-family: var(--font-body-family);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.06em;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.ilp-qv__add-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}


.ilp-qv__accordion {
  margin-top: 18px;
  border-top: 1px solid rgba(var(--color-foreground), 0.12);
}

.ilp-qv__accordion-item {
  border-bottom: 1px solid rgba(var(--color-foreground), 0.12);
}

.ilp-qv__accordion-summary {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 14px 0;
  cursor: pointer;
  font-family: var(--font-body-family);
  font-size: 14px;
  font-weight: 700;
  color: var(--ilp-text, #1a1a1a);
}

.ilp-qv__accordion-summary::-webkit-details-marker {
  display: none;
}

.ilp-qv__accordion-icon {
  font-size: 18px;
  line-height: 1;
  transition: transform 0.2s ease;
}

.ilp-qv__accordion-item[open] .ilp-qv__accordion-icon {
  transform: rotate(45deg);
}

.ilp-qv__accordion-content {
  padding: 0 0 16px;
  font-family: var(--font-body-family);
  font-size: 13px;
  line-height: 1.65;
  color: rgba(var(--color-foreground), 0.75);
}

.ilp-qv__accordion-content > *:first-child {
  margin-top: 0;
}

.ilp-qv__accordion-content > *:last-child {
  margin-bottom: 0;
}

.ilp-qv__details-link {
  display: block;
  margin-top: 14px;
  text-align: center;
  font-family: var(--font-body-family);
  font-size: 13px;
  color: rgba(var(--color-foreground), 0.7);
  text-decoration: underline;
  text-underline-offset: 3px;
}

body.ilp-qv-lock {
  overflow: hidden;
}

/* ── Mobile ── */
@media (max-width: 749px) {
  .ilp-product-layout-toggle {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 0.8rem;
    margin: 0 0 1.2rem;
  }

  .ilp-profile__inner {
    flex-direction: column; align-items: center;
    text-align: center; gap: 1.6rem;
  }
  .ilp-banner__image--desktop { display: none; }
  .ilp-banner__image--mobile  { display: block; }
  .ilp-banner__overlay { padding: 2rem 2.4rem; max-width: 100%; }
  .ilp-countdown__unit { min-width: 56px; }
  .ilp-video__yt-layout {
    grid-template-columns: 1fr;
  }
  .ilp-products__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.6rem 1.2rem;
  }
  .ilp-shopbar__inner {
    min-height: 80px;
    gap: 1rem;
    padding-left: 14px !important;
    padding-right: 14px !important;
  }
  .ilp-shopbar__left { gap: 1rem; }
  .ilp-shopbar__logo { max-width: 84px; max-height: 28px; }
  .ilp-shopbar__details {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.2rem;
    font-size: 15px;
  }
  .ilp-shopbar__event,
  .ilp-shopbar__offer {
    max-width: none;
  }
  .ilp-shopbar__sep { display: none; }
  .ilp-shopbar__btn {
    min-height: 34px;
    padding: 0 1.3rem;
    font-size: 1.1rem;
    white-space: nowrap;
  }

}

@media (max-width: 749px) {
  .ilp-products--mobile-grid_2 .ilp-products__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.6rem 1.2rem;
  }

  .ilp-products--mobile-list_1 .ilp-products__grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .ilp-products--mobile-list_1 .ilp-product-card {
    border-bottom: 1px solid rgba(var(--color-foreground), 0.12);
    padding: 14px 0;
  }

  .ilp-products--mobile-list_1 .ilp-product-card__inner {
    display: grid;
    grid-template-columns: 110px 1fr;
    gap: 14px;
    align-items: flex-start;
  }

  .ilp-products--mobile-list_1 .ilp-product-card__image-wrap {
    margin-bottom: 0;
    aspect-ratio: 1 / 1;
  }

  .ilp-products--mobile-list_1 .ilp-product-card__info {
    min-width: 0;
    gap: 0.55rem;
  }

  .ilp-products--mobile-list_1 .ilp-product-card__title {
    font-size: 16px;
    line-height: 1.5;
  }

  .ilp-products--mobile-list_1 .ilp-product-card__features {
    font-size: 14px;
    line-height: 1.5;
  }

  .ilp-products--mobile-list_1 .ilp-product-card__bottom {
    align-items: center;
    margin-top: 0.6rem;
  }

  .ilp-products--mobile-list_1 .ilp-product-card__price-wrap {
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
  }

  .ilp-products--mobile-list_1 .ilp-product-card__discount {
    text-align: left;
  }

  .ilp-products--mobile-list_1 .ilp-product-card__price {
    font-size: 1.35rem;
  }

  .ilp-products--mobile-list_1 .ilp-product-card__cart-btn {
    width: 36px;
    height: 36px;
  }

  .ilp-products--mobile-list_1 .ilp-product-card__quick-view-btn {
    display: block;
  }

  .ilp-products--mobile-grid_2 .ilp-product-card__quick-view-btn {
    display: none;
  }

  .ilp-qv__drawer {
    max-height: 92vh;
    border-radius: 18px 18px 0 0;
  }

  .ilp-qv__content {
    max-height: calc(92vh - 20px);
    padding: 12px 14px 24px;
  }

  .ilp-qv__product {
    display: block;
  }

  .ilp-qv__gallery {
    margin-bottom: 16px;
  }

  .ilp-qv__title {
    font-size: 20px;
  }

  .ilp-products--mobile-grid_2 .ilp-product-card__features {
    display: none;
  }

  .ilp-products--mobile-grid_2 .ilp-product-card__cart-btn {
    width: 34px;
    height: 34px;
  }


  .ilp-products--mobile-grid_2 .ilp-product-card__price-wrap {
    gap: 0.6rem;
  }

  .ilp-products--mobile-grid_2 .ilp-product-card__discount {
    font-size: 1.05rem;
  }
}


@media (max-width: 749px) {
  .ilp-brand-feature__inner {
    padding: 24px 18px;
  }

  .ilp-brand-feature__title {
    font-size: 24px;
  }

  .ilp-brand-feature__desc {
    font-size: 14px;
  }

  .ilp-brand-feature__grid {
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 22px;
  }

  .ilp-brand-feature__card {
    min-height: auto;
    flex-direction: row;
    align-items: flex-start;
    padding: 16px;
  }

  .ilp-brand-feature__icon {
    flex-shrink: 0;
    margin-top: 2px;
  }
}


@media (max-width: 749px) {
  .ilp-three-features__inner {
    padding: 18px 14px;
  }

  .ilp-three-features__heading {
    font-size: 20px;
    margin-bottom: 14px;
  }

  .ilp-three-features__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
  }

  .ilp-three-features__item {
    min-height: auto;
    padding: 25px 0px;
    gap: 8px;
  }

  .ilp-three-features__icon-wrap {
    width: 34px;
    height: 34px;
  }

  .ilp-three-features__content h3 {
    font-size: 12px;
    line-height: 1.25;
  }

  .ilp-three-features__content p {
    font-size: 11px;
    line-height: 1.35;
  }
}

.ilp-qv__nutrition .label-wrap {
  max-width: 680px;
  margin: 0 auto;
  font-family: inherit;
  font-size: 1em;
  line-height: 1.35;
  color: inherit;
}

.ilp-qv__nutrition .label-panel {
  border: 2px solid currentColor;
  padding: 12px;
  background: transparent;
}

.ilp-qv__nutrition .label-panel--spaced {
  margin-top: 16px;
}

.ilp-qv__nutrition .label-title {
  font-weight: 800;
  font-size: 1.6em;
  line-height: 1.05;
}

.ilp-qv__nutrition .label-meta {
  margin-top: 8px;
  font-size: 1.05em;
}

.ilp-qv__nutrition .label-meta--two {
  display: flex;
  justify-content: space-between;
  gap: 12px;
}

.ilp-qv__nutrition .rule {
  border-top: 1px solid currentColor;
  margin: 10px 0;
}

.ilp-qv__nutrition .rule--thick {
  border-top-width: 6px;
  margin: 10px 0 8px;
}

.ilp-qv__nutrition .label-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 1.05em;
}

.ilp-qv__nutrition .label-table th {
  font-weight: 700;
  border-bottom: 2px solid currentColor;
  padding: 7px 0;
}

.ilp-qv__nutrition .label-table td {
  border-bottom: 1px solid currentColor;
  padding: 7px 0;
  vertical-align: top;
}

.ilp-qv__nutrition .left {
  text-align: left;
}

.ilp-qv__nutrition .right {
  text-align: right;
  white-space: nowrap;
}

.ilp-qv__nutrition .divider-thick td {
  padding: 0;
  border-bottom: 5px solid currentColor;
}

.ilp-qv__nutrition .label-foot {
  margin-top: 10px;
  font-size: 0.95em;
  opacity: 0.9;
}

.ilp-qv__nutrition-page + .ilp-qv__nutrition-page {
  margin-top: 28px;
  padding-top: 28px;
  border-top: 1px solid rgba(0,0,0,.08);
}

@media (max-width: 480px) {
  .ilp-qv__nutrition .label-panel {
    padding: 10px;
  }

  .ilp-qv__nutrition .label-title {
    font-size: 1.45em;
  }

  .ilp-qv__nutrition .label-meta,
  .ilp-qv__nutrition .label-table {
    font-size: 1em;
  }

  .ilp-qv__nutrition .label-foot {
    font-size: 0.92em;
  }
}


/* Floating YouTube popup icon */
.ilp-floating-youtube {
  position: fixed;
  right: var(--ilp-float-yt-right, 18px);
  top: 50%;
  transform: translateY(-50%);
  z-index: 80;
  pointer-events: none;
}

.ilp-floating-youtube__trigger {
  position: relative;
  width: var(--ilp-float-yt-size, 64px);
  min-height: var(--ilp-float-yt-size, 64px);
  border: 0;
  background: transparent;
  padding: 0;
  cursor: pointer;
  pointer-events: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 6px;
}

.ilp-floating-youtube__ring {
  position: absolute;
  inset: -5px;
  border-radius: 999px;
  background: conic-gradient(from 0deg, var(--ilp-float-yt-ring, #ff0000), rgba(255,255,255,.85), var(--ilp-float-yt-ring, #ff0000));
  animation: ilpFloatingYoutubeSpin 2.8s linear infinite;
  opacity: .95;
}

.ilp-floating-youtube__icon {
  position: relative;
  z-index: 2;
  width: var(--ilp-float-yt-size, 64px);
  height: var(--ilp-float-yt-size, 64px);
  border-radius: 999px;
  background: var(--ilp-float-yt-bg, #ff0000);
  color: var(--ilp-float-yt-color, #ffffff);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 28px rgba(0,0,0,.18);
  transition: transform .22s ease, box-shadow .22s ease;
}

.ilp-floating-youtube__icon svg {
  width: 44%;
  height: 44%;
  fill: currentColor;
  margin-left: 4%;
}

.ilp-floating-youtube__trigger:hover .ilp-floating-youtube__icon {
  transform: scale(1.06);
  box-shadow: 0 14px 34px rgba(0,0,0,.24);
}

.ilp-floating-youtube__label {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  max-width: 120px;
  padding: 4px 8px;
  border-radius: 999px;
  background: var(--ilp-float-yt-label-bg, #ffffff);
  color: var(--ilp-float-yt-label-text, #111111);
  font-size: 11px;
  font-weight: 700;
  line-height: 1.2;
  white-space: nowrap;
  box-shadow: 0 4px 14px rgba(0,0,0,.12);
}

.ilp-floating-youtube.is-attention .ilp-floating-youtube__trigger {
  animation: ilpFloatingYoutubeShake .65s ease both;
}

@keyframes ilpFloatingYoutubeSpin {
  to { transform: rotate(360deg); }
}

@keyframes ilpFloatingYoutubeShake {
  0%, 100% { transform: translateX(0); }
  18% { transform: translateX(-3px) rotate(-2deg); }
  36% { transform: translateX(3px) rotate(2deg); }
  54% { transform: translateX(-2px) rotate(-1deg); }
  72% { transform: translateX(2px) rotate(1deg); }
}

.ilp-floating-youtube-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
}

.ilp-floating-youtube-modal.is-open {
  display: block;
}

.ilp-floating-youtube-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.72);
  backdrop-filter: blur(4px);
}

.ilp-floating-youtube-modal__dialog {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: min(920px, calc(100vw - 32px));
  background: #111;
  color: #fff;
  border-radius: 18px;
  padding: 18px;
  box-shadow: 0 24px 80px rgba(0,0,0,.38);
}

.ilp-floating-youtube-modal__close {
  position: absolute;
  top: -14px;
  right: -10px;
  width: 38px;
  height: 38px;
  border-radius: 999px;
  border: 0;
  background: #ffffff;
  color: #111111;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 2;
  box-shadow: 0 8px 24px rgba(0,0,0,.22);
}

.ilp-floating-youtube-modal__close svg {
  width: 18px;
  height: 18px;
}

.ilp-floating-youtube-modal__heading {
  margin: 0 46px 14px 0;
  color: #fff;
  font-size: 20px;
  line-height: 1.35;
}

.ilp-floating-youtube-modal__video {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 12px;
  background: #000;
}

.ilp-floating-youtube-modal__video iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

body.ilp-floating-youtube-lock {
  overflow: hidden;
}

@media (max-width: 749px) {
  .ilp-floating-youtube {
    right: max(12px, var(--ilp-float-yt-right, 14px));
  }

  .ilp-floating-youtube-modal__dialog {
    width: calc(100vw - 20px);
    padding: 12px;
    border-radius: 14px;
  }

  .ilp-floating-youtube-modal__heading {
    font-size: 16px;
    margin-bottom: 10px;
  }
}

.ilp-qv__stock-notice {
  margin-top: 10px;
  color: #d60000;
  font-size: 14px;
  font-weight: 700;
  text-align: center;
  line-height: 1.4;
}

.ilp-product-card__stock-notice{
  margin-top:8px;
  font-size:13px;
  font-weight:700;
  color:#d60000;
  text-align:center;
  line-height:1.3;
  animation: ilpStockPulse 1.8s ease-in-out infinite;
}

@keyframes ilpStockPulse{
  0%{ opacity:1; }
  50%{ opacity:.55; }
  100%{ opacity:1; }
}
/* END_SECTION:influencer-landing */

/* START_SECTION:liquid-advantage (INDEX:35) */
.liquid-advantage {
  padding: var(--la-padding-top, 60px) 0 var(--la-padding-bottom, 60px);
}

.liquid-advantage__inner {
  max-width: var(--page-width, 1200px);
  margin: 0 auto;
  padding: 0 var(--page-width-margin, 20px);
}

/* ── Heading — h2 ── */
.liquid-advantage__heading {
  font-family: var(--font-heading-family);
  font-style: var(--font-heading-style);
  font-weight: var(--font-heading-weight);
  font-size: calc(var(--font-heading-scale) * 2.5rem);
  line-height: 1.2;
  letter-spacing: -0.02em;
  text-align: center;
  margin: 0 0 48px;
}

/* ── Comparison columns ── */
.liquid-advantage__comparison {
  display: flex;
  justify-content: center;
  gap: 32px;
  margin-bottom: 56px;
}

.liquid-advantage__col {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 20px;
  flex-shrink: 0;
  width: var(--la-image-size, 340px);
}

/* ── Circle image — no border ── */
.liquid-advantage__image-wrap {
  width: var(--la-image-size, 340px);
  height: var(--la-image-size, 340px);
  border-radius: 50%;
  overflow: hidden;
  background: #f5f5f5;
  display: flex;
  align-items: center;
  justify-content: center;
}

.liquid-advantage__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.liquid-advantage__img--placeholder {
  padding: 20%;
  opacity: 0.3;
}

/* ── Caption — p ── */
.liquid-advantage__caption {
  font-family: var(--font-body-family);
  font-style: var(--font-body-style);
  font-weight: var(--font-body-weight);
  font-size: 1.5rem;
  line-height: 1.5;
  margin: 0;
  color: currentColor;
}

.liquid-advantage__caption strong {
  font-weight: 700;
}

/* ── Features row ── */
.liquid-advantage__features {
  display: flex;
  align-items: flex-start;
  gap: 0;
  padding-top: 40px;
}

.liquid-advantage__feature {
  flex: 1;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 14px;
  padding: 0 24px;
}

.liquid-advantage__feature:first-child { padding-left: 0; }
.liquid-advantage__feature:last-child  { padding-right: 0; }

.liquid-advantage__feature-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.liquid-advantage__feature-icon svg {
  width: 36px;
  height: 36px;
}

.liquid-advantage__feature-text {
  flex: 1;
}

/* ── Feature title — h3 ── */
.liquid-advantage__feature-title {
  font-family: var(--font-heading-family);
  font-style: var(--font-heading-style);
  font-weight: var(--font-heading-weight);
  font-size: calc(var(--font-heading-scale) * 1.8rem);
  line-height: 1.3;
  letter-spacing: -0.01em;
  margin: 0 0 6px;
}

/* ── Feature description — p ── */
.liquid-advantage__feature-desc {
  font-family: var(--font-body-family);
  font-style: var(--font-body-style);
  font-weight: var(--font-body-weight);
  font-size: 1.5rem;
  line-height: 1.6;
  margin: 0;
  opacity: 0.75;
}

.liquid-advantage__divider {
  width: 1.5px;
  align-self: stretch;
  background: rgba(0, 0, 0, 0.1);
  flex-shrink: 0;
}

/* ── Mobile ── */
@media (max-width: 749px) {
  .liquid-advantage__heading {
    font-size: calc(var(--font-heading-scale) * 2.5rem);
    margin-bottom: 32px;
  }

  .liquid-advantage__comparison {
    gap: 16px;
    margin-bottom: 40px;
  }

  .liquid-advantage__col {
    width: var(--la-image-size, 140px);
  }

  .liquid-advantage__image-wrap {
    width: var(--la-image-size, 140px);
    height: var(--la-image-size, 140px);
  }

  .liquid-advantage__caption {
    font-size: 1.5rem;
  }

  .liquid-advantage__features {
    flex-direction: column;
    gap: 28px;
    padding-top: 32px;
  }

  .liquid-advantage__feature {
    padding: 0;
  }

  .liquid-advantage__divider {
    display: none;
  }

  .liquid-advantage__feature-title {
    font-size: calc(var(--font-heading-scale) * 1.8rem);
  }

  .liquid-advantage__feature-desc {
    font-size: 1.5rem;
  }
}
/* END_SECTION:liquid-advantage */

/* START_SECTION:product-feature-table (INDEX:62) */
/* ── Section ── */
.pft-section {
  background: var(--pft-bg, #ffffff);
  padding: var(--pft-padding-top, 60px) 0 var(--pft-padding-bottom, 60px);
}

.pft-inner {
  max-width: var(--page-width, 1200px);
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Heading — h2 ── */
.pft-heading {
  font-family: var(--font-heading-family);
  font-style: var(--font-heading-style);
  font-weight: var(--font-heading-weight);
  font-size: calc(var(--font-heading-scale) * 2.5rem);
  line-height: 1.2;
  letter-spacing: -0.02em;
  text-align: center;
  margin: 0 0 12px;
  color: var(--pft-text, #1e2a1a);
}

/* ── Subtext — p ── */
.pft-subtext {
  font-family: var(--font-body-family);
  font-style: var(--font-body-style);
  font-weight: var(--font-body-weight);
  font-size: 1.6rem;
  line-height: 1.6;
  text-align: center;
  margin: 0 auto 40px;
  color: var(--pft-text-soft, #3d4f38);
  max-width: 640px;
}

/* ── Outer wrap — centers table on desktop ── */
.pft-wrap {
  display: flex;
  justify-content: center;
  width: 100%;
}

/* ── Scroll container ── */
.pft-scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  max-width: 100%;
}

/* ── Table ── */
.pft-table {
  border-collapse: collapse;
  width: calc(var(--pft-label-col, 100px) + {{ product_count }} * var(--pft-product-col, 128px));
}

/* ── Label / corner column — fixed width ── */
.pft-cell--corner,
.pft-cell--corner-name,
.pft-cell--label {
  width: var(--pft-label-col, 100px);
  min-width: var(--pft-label-col, 100px);
  max-width: var(--pft-label-col, 100px);
}

/* ── Product columns — fixed equal width ── */
.pft-cell--img-row,
.pft-cell--product-name-row,
.pft-cell--value,
.pft-cell--price,
.pft-cell--cta {
  width: var(--pft-product-col, 128px);
  min-width: var(--pft-product-col, 128px);
  max-width: var(--pft-product-col, 128px);
}

/* ── All cells ── */
.pft-cell {
  padding: 14px 12px;
  border: 1px solid var(--pft-border, #d4e0d0);
  vertical-align: middle;
  box-sizing: border-box;
}

/* ── Header rows — same border color as body ── */
.pft-row--head .pft-cell {
  background: var(--pft-header-bg, #4a6741);
  border-color: var(--pft-border, #d4e0d0);
}

/* ── Sticky first column ── */
.pft-cell--sticky {
  position: sticky;
  left: 0;
  z-index: 2;
}

.pft-cell--label.pft-cell--sticky {
  background: var(--pft-bg, #ffffff);
}

.pft-row--head .pft-cell--sticky {
  background: var(--pft-header-bg, #4a6741);
  z-index: 2;
}

.pft-row:nth-child(even) .pft-cell--sticky {
  background: var(--pft-bg, #ffffff);
}

/* ── Corner label ── */
.pft-cell--corner {
  vertical-align: bottom;
}

.pft-corner-label {
  font-family: var(--font-heading-family);
  font-style: var(--font-heading-style);
  font-weight: var(--font-heading-weight);
  font-size: calc(var(--font-heading-scale) * 2rem);
  color: var(--pft-header-text, #ffffff);
  line-height: 1.3;
  display: block;
}

/* ── Image row cell ── */
.pft-cell--img-row {
  text-align: center;
  vertical-align: middle;
  padding: 16px 12px 10px;
}

.pft-product-img-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}


/* ── Product image ── */
.pft-product-img-wrap {
  position: relative;
  width: var(--pft-img-size, 80px);
  height: var(--pft-img-size, 80px);
  flex-shrink: 0;
  flex-grow: 0;
  margin: 0 auto;
}

.pft-product-img-link {
  display: block;
  width: 100%;
  height: 100%;
}

.pft-product-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

/* ── Badge ── */
.pft-badge {
  position: absolute;
  top: -6px;
  right: -6px;
  background: var(--pft-badge-bg, #b5732a);
  color: var(--pft-badge-text, #ffffff);
  font-family: var(--font-body-family);
  font-style: var(--font-body-style);
  font-weight: 600;
  font-size: 1.1rem;
  line-height: 1.2;
  padding: 3px 6px;
  white-space: nowrap;
  letter-spacing: 0.02em;
  z-index: 1;
}

/* ── Product number ── */
.pft-product-number {
  font-family: var(--font-body-family);
  font-style: var(--font-body-style);
  font-weight: 600;
  font-size: 1.3rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1;
}

/* ── Product name — h3 ── */
.pft-product-name {
  font-family: var(--font-heading-family);
  font-style: var(--font-heading-style);
  font-weight: var(--font-heading-weight);
  font-size: calc(var(--font-heading-scale) * 2rem);
  color: var(--pft-header-text, #ffffff);
  margin: 0;
  line-height: 1.3;
  letter-spacing: -0.01em;
}

.pft-product-name-link {
  text-decoration: none;
  color: inherit;
}

.pft-product-name-link:hover .pft-product-name {
  text-decoration: underline;
}

/* ── Label cell ── */
.pft-cell--label {
  background: rgba(0, 0, 0, 0.02);
  vertical-align: middle;
}

.pft-label {
  font-family: var(--font-body-family);
  font-style: var(--font-body-style);
  font-weight: 700;
  font-size: 1.6rem;
  line-height: 1.5;
  margin: 0;
  color: var(--pft-text, #1e2a1a);
}

/* ── Value cell ── */
.pft-cell--value {
  text-align: center;
}

.pft-value-lines {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}

.pft-value {
  font-family: var(--font-body-family);
  font-style: var(--font-body-style);
  font-weight: var(--font-body-weight);
  font-size: 1.6rem;
  line-height: 1.5;
  margin: 0;
  color: var(--pft-text-soft, #3d4f38);
}

/* ── Featured column ── */
.is-featured {
  background: rgba(74, 103, 65, 0.06);
}

.pft-row--head .is-featured {
  background: rgba(0, 0, 0, 0.15);
}

/* ── Price row ── */
.pft-cell--price {
  text-align: center;
  padding: 12px 8px;
}

.pft-price {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}

.pft-price__compare {
  font-family: var(--font-body-family);
  font-size: 1.4rem;
  color: var(--pft-text-soft, #3d4f38);
  opacity: 0.6;
  text-decoration: line-through;
  line-height: 1.3;
}

.pft-price__current {
  font-family: var(--font-body-family);
  font-style: var(--font-body-style);
  font-weight: 700;
  font-size: 1.6rem;
  color: var(--pft-text, #1e2a1a);
  line-height: 1.3;
}

.pft-price__current--sale {
  color: #c0392b;
}

/* ── CTA row ── */
.pft-row--cta .pft-cell {
  padding: 12px 8px;
}

.pft-cell--cta {
  text-align: center;
}

/* ── Add to Cart form ── */
.pft-atc-form {
  margin: 0;
  padding: 0;
}

/* ── Button ── */
.pft-btn {
  display: block;
  width: 100%;
  font-family: var(--font-body-family);
  font-style: var(--font-body-style);
  font-weight: 600;
  font-size: 1.4rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--pft-btn-text, #ffffff);
  background: var(--pft-btn-bg, #4a6741);
  border: none;
  border-radius: 0;
  padding: 10px 8px;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
  text-align: center;
  box-sizing: border-box;
  line-height: 1.3;
}

.pft-btn:hover:not(:disabled) {
  background: var(--pft-btn-hover-bg, #2f4a2a);
  color: var(--pft-btn-hover-text, #ffffff);
}

.pft-btn--sold-out,
.pft-btn:disabled {
  background: rgba(0, 0, 0, 0.15);
  color: rgba(0, 0, 0, 0.4);
  cursor: not-allowed;
}

/* ── Mobile ── */
@media (max-width: 749px) {
  .pft-inner {
    padding: 0;
  }

  .pft-heading {
    font-size: calc(var(--font-heading-scale) * 1.8rem);
    padding: 0 16px;
  }

  .pft-subtext {
    font-size: 1.4rem;
    margin-bottom: 24px;
    padding: 0 16px;
  }

  .pft-wrap {
    justify-content: flex-start;
  }

  .pft-scroll {
    width: 100%;
  }

  .pft-table {
    width: calc(var(--pft-label-col-mobile, 72px) + {{ product_count }} * var(--pft-product-col-mobile, 92px));
  }

  .pft-cell--corner,
  .pft-cell--corner-name,
  .pft-cell--label {
    width: var(--pft-label-col-mobile, 72px);
    min-width: var(--pft-label-col-mobile, 72px);
    max-width: var(--pft-label-col-mobile, 72px);
  }

  .pft-cell--img-row,
  .pft-cell--product-name-row,
  .pft-cell--value,
  .pft-cell--price,
  .pft-cell--cta {
    width: var(--pft-product-col-mobile, 92px);
    min-width: var(--pft-product-col-mobile, 92px);
    max-width: var(--pft-product-col-mobile, 92px);
  }

  .pft-product-img-wrap {
    width: var(--pft-img-size-mobile, 56px);
    height: var(--pft-img-size-mobile, 56px);
  }

  .pft-product-name {
    font-size: calc(var(--font-heading-scale) * 1.5rem);
  }

  .pft-label,
  .pft-value,
  .pft-price__current {
    font-size: 1.4rem;
  }

  .pft-price__compare {
    font-size: 1.2rem;
  }

  .pft-cell {
    padding: 10px 6px;
  }

  .pft-btn {
    font-size: 1.1rem;
    padding: 8px 4px;
  }

  .pft-badge {
    font-size: 1rem;
    padding: 2px 4px;
  }
}

/* ── Product name row — same style as feature rows ── */
.pft-value--name {
  font-weight: 600;
  color: var(--pft-text, #1e2a1a);
}

.pft-name-link {
  text-decoration: none;
  color: inherit;
}

.pft-name-link:hover .pft-value--name {
  text-decoration: underline;
}
/* END_SECTION:product-feature-table */

/* START_SECTION:section-feature-highlight (INDEX:70) */
/* ── Outer wrapper ── */
.hi-outer {
  width: 100%;
}

/* ── Inner container ── */
.hi-container {
  position: relative;
  overflow: hidden;
  max-width: var(--page-width, 1200px);
  margin: 0 auto;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  padding: 40px 20px 0;
}

/* ── Content column ── */
.hi-content {
  position: relative;
  z-index: 2;
  max-width: 600px;
  padding-bottom: 40px;
}

/* ── Kicker — p ── */
.hi-kicker {
  font-family: var(--font-body-family);
  font-style: var(--font-body-style);
  font-weight: var(--font-body-weight);
  font-size: 1.5rem;
  line-height: 1.5;
  margin: 0 0 12px;
  color: currentColor;
}

/* ── Section heading — h2 ── */
.hi-heading {
  font-family: var(--font-heading-family);
  font-style: var(--font-heading-style);
  font-weight: var(--font-heading-weight);
  font-size: calc(var(--font-heading-scale) * 2.5rem);
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin: 0 0 16px;
  color: currentColor;
}

/* ── Subtext — p ── */
.hi-subtext {
  font-family: var(--font-body-family);
  font-style: var(--font-body-style);
  font-weight: var(--font-body-weight);
  font-size: 1.5rem;
  line-height: 1.6;
  margin: 0 0 28px;
  color: currentColor;
}

.hi-subtext p {
  margin: 0;
}

/* ── Benefits list ── */
.hi-benefits {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.hi-benefit {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 12px;
}

.hi-benefit__icon-wrap {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
}

.hi-benefit__icon {
  width: 40px;
  height: 40px;
  object-fit: contain;
  display: block;
}

.hi-benefit__body {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

/* ── Benefit title — h3 ── */
.hi-benefit__title {
  font-family: var(--font-heading-family);
  font-style: var(--font-heading-style);
  font-weight: var(--font-heading-weight);
  font-size: calc(var(--font-heading-scale) * 2rem);
  line-height: 1.3;
  letter-spacing: -0.01em;
  margin: 0;
  color: currentColor;
}

/* ── Benefit description — p ── */
.hi-benefit__desc {
  font-family: var(--font-body-family);
  font-style: var(--font-body-style);
  font-weight: var(--font-body-weight);
  font-size: 1.5rem;
  line-height: 1.6;
  margin: 0;
  color: currentColor;
}

/* ── Mobile image ── */
.hi-image-mobile {
  display: block;
  margin-top: 28px;
  width: 100%;
}

.hi-image-mobile__img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}

/* ── Desktop image (hidden on mobile) ── */
.hi-image-desktop {
  display: none;
}

/* ── Tablet (750px+) ── */
@media (min-width: 750px) {
  .hi-container {
    padding: 40px 40px 0;
  }
}

/* ── Desktop (990px+) ── */
@media (min-width: 990px) {
  .hi-container {
    padding: 0 0 0 40px;
    border-radius: 24px;
    border: 1px solid rgba(0, 0, 0, 0.08);
  }

  .hi-content {
    max-width: 700px;
    padding: 50px 0;
  }

  /* Two-column benefits grid on desktop */
  .hi-benefits {
    grid-template-columns: 1fr 1fr;
    column-gap: 50px;
    row-gap: 40px;
  }

  /* Icon stacks above text on desktop */
  .hi-benefit {
    flex-direction: column;
    gap: 12px;
  }

  /* Mobile image hidden, desktop image shown */
  .hi-image-mobile {
    display: none;
  }

  .hi-image-desktop {
    display: block;
    position: absolute;
    right: 0;
    top: 0;
    width: min(450px, 40%);
    height: 100%;
    z-index: 1;
  }

  .hi-image-desktop__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: left bottom;
    display: block;
  }

  /* Heading scales up on desktop */
  .hi-heading {
    font-size: calc(var(--font-heading-scale) * 2.5rem);
  }

  .hi-benefit__title {
    font-size: calc(var(--font-heading-scale) * 2rem);
  }
}

/* ── Large desktop (1440px+) ── */
@media (min-width: 1440px) {
  .hi-image-desktop {
    width: min(525px, 40%);
  }
}
/* END_SECTION:section-feature-highlight */

/* START_SECTION:stats (INDEX:73) */
.stats-section {
  margin-top: var(--stats-margin-top, 15px);
  margin-bottom: var(--stats-margin-bottom, 0px);
  overflow: hidden;
}

.stats-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem 30px;
}

/* ── Grid ── */
.stats-grid {
  display: grid;
  grid-template-columns: 1fr;
  margin-top: 16px;
}

/* ── Each stat row (mobile) ── */
.stats-item {
  display: flex;
  gap: 24px;
  align-items: center;
  justify-content: flex-start;
  padding: 12px 0;
  text-decoration: none;
  transition: all 0.25s ease;
}

.stats-item:not(:last-child) {
  border-bottom: 1px solid var(--stats-divider-color, #121212);
}

/* ── Number block ── */
.stats-number-wrap {
  display: flex;
  gap: 5px;
  width: 100px;
  flex-shrink: 0;
  align-items: center;
  justify-content: flex-start;
}

.stats-number {
  margin: 0;
  font-family: var(--font-heading-family);
  font-style: var(--font-heading-style);
  font-weight: var(--font-heading-weight);
  font-size: var(--stats-number-size-mobile, 40px);
  color: var(--stats-number-color, #121212);
  line-height: 1.3;
  text-decoration: none;
  transition: all 0.25s ease;
}

/* ── Description ── */
.stats-desc {
  width: 60%;
  text-align: left;
  font-family: var(--font-body-family);
  font-style: var(--font-body-style);
  font-weight: var(--font-body-weight);
}

.stats-desc p,
.stats-desc span {
  margin: 0;
  font-size: var(--stats-desc-size-mobile, 12px);
  color: var(--stats-desc-color, #121212);
  line-height: 1.5;
  transition: all 0.25s ease;
}

/* ── Footnote ── */
.stats-footnote {
  margin: 14px 0 0;
  font-family: var(--font-body-family);
  font-size: 12px;
  color: var(--stats-footnote-color, #757575);
  line-height: 1.5;
}

/* ── Desktop ── */
@media (min-width: 1024px) {
  .stats-inner {
    padding: 0 5rem 40px;
  }

  .stats-grid {
    grid-template-columns: repeat(3, 1fr);
    margin-top: 40px;
    gap: 24px;
  }

  .stats-item {
    justify-content: flex-start;
    padding: 0 48px 0 0;
    gap: 24px;
  }

  .stats-item:not(:last-child) {
    border-bottom: 0;
    border-right: 1px solid var(--stats-divider-color, #121212);
  }

  .stats-number-wrap {
    width: 120px;
  }

  .stats-number {
    font-size: var(--stats-number-size-desktop, 56px);
  }

  .stats-desc p,
  .stats-desc span {
    font-size: var(--stats-desc-size-desktop, 16px);
  }

  .stats-footnote {
    margin-top: 12px;
    font-size: 8px;
  }
}
/* END_SECTION:stats */

/* START_SECTION:text-comparison-table (INDEX:74) */
/* ── Section wrapper ── */
.tct-section {
  background: var(--tct-bg, #1e1e1e);
  color: var(--tct-text, #ffffff);
  padding: var(--tct-padding-top, 60px) 0 var(--tct-padding-bottom, 60px);
}

.tct-inner {
  max-width: var(--page-width, 1200px);
  margin: 0 auto;
  padding-left: 24px;
  padding-right: 24px;
}

/* ── Section heading — h2 ── */
.tct-heading {
  font-family: var(--font-heading-family);
  font-style: var(--font-heading-style);
  font-weight: var(--font-heading-weight);
  font-size: calc(var(--font-heading-scale) * 2.5rem);
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin: 0 0 32px;
  color: var(--tct-text, #ffffff);
  text-align:center;
}

/* ── Table scroll wrapper ── */
.tct-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

/* ── Table: flex column, each row is its own grid ── */
.tct-table {
  width: 100%;
  min-width: 480px;
  display: flex;
  flex-direction: column;
}

/* ── Each row ── */
.tct-row {
  display: grid;
  grid-template-columns: var(--tct-col1-width, 22%) 1fr 1fr;
  border-bottom: 1px solid var(--tct-border, rgba(255,255,255,0.12));
}

/* ── Header row ── */
.tct-row--head {
  background: var(--tct-heading-bg, transparent);
}

.tct-row--head .tct-cell {
  padding: 16px 20px 16px 10px;
}

/* ── Cells ── */
.tct-cell {
  padding: 24px 20px 24px 10px;
  display: flex;
  align-items: center;
}

.tct-cell--label {
  padding-right: 24px;
}

/* ── Column headers — h3 style ── */
.tct-col-header {
  font-family: var(--font-heading-family);
  font-style: var(--font-heading-style);
  font-weight: 600;
  font-size: 1.5rem;
  line-height: 1.3;
  color: var(--tct-text, #ffffff);
}

/* ── Row label — bold p ── */
.tct-label {
  font-family: var(--font-body-family);
  font-style: var(--font-body-style);
  font-weight: 700;
  font-size: 1.5rem;
  line-height: 1.5;
  margin: 0;
  color: var(--tct-text, #ffffff);
}

/* ── Row value — p ── */
.tct-value {
  font-family: var(--font-body-family);
  font-style: var(--font-body-style);
  font-weight: var(--font-body-weight);
  font-size: 1.5rem;
  line-height: 1.5;
  margin: 0;
  color: var(--tct-text, #ffffff);
  opacity: 0.9;
}

/* ── Footnote ── */
.tct-footnote {
  font-family: var(--font-body-family);
  font-size: 1.4rem;
  line-height: 1.5;
  margin: 16px 0 0;
  opacity: 0.65;
  color: var(--tct-text, #ffffff);
}

/* ── Mobile ── */
@media (max-width: 749px) {
  .tct-heading {
    margin-bottom: 20px;
  }

  .tct-cell {
    padding: 16px 12px 16px 10px;
  }
}
/* END_SECTION:text-comparison-table */

/* START_SECTION:tonik-about-manufacturing (INDEX:75) */
/* ── Section wrapper ── */
.tonik-about {
  background: var(--tonik-bg, #f5f5f5);
  padding: var(--tonik-pad-y, 60px) 0;
}

.tonik-about__inner {
  max-width: var(--tonik-max, 1200px);
  margin: 0 auto;
  padding-left: 24px;
  padding-right: 24px;
  text-align: center;
}

/* ── Heading — h2 ── */
.tonik-about__heading {
  margin: 0 auto 24px;
  font-family: var(--font-heading-family);
  font-style: var(--font-heading-style);
  font-weight: var(--font-heading-weight);
  font-size: calc(var(--font-heading-scale) * 2.5rem);
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.tonik-about__heading-line {
  display: block;
}

/* ── Body text — p ── */
.tonik-about__body {
  margin: 0 auto 24px;
  max-width: 820px;
  font-family: var(--font-body-family);
  font-style: var(--font-body-style);
  font-weight: var(--font-body-weight);
  font-size: 1.5rem;
  line-height: 1.8;
  opacity: 0.9;
}

.tonik-about__body p {
  margin: 0;
}

/* ── Subline — p ── */
.tonik-about__subline {
  margin: 0 auto 16px;
  font-family: var(--font-body-family);
  font-style: var(--font-body-style);
  font-weight: var(--font-body-weight);
  font-size: 1.5rem;
  line-height: 1.6;
  opacity: 0.85;
}

/* ── Bullets ── */
.tonik-about__bullets {
  list-style: none;
  padding: 0;
  margin: 0 auto 32px;
  display: inline-flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-start;
  text-align: left;
}

.tonik-about__bullet {
  display: grid;
  grid-template-columns: 20px 1fr;
  column-gap: 10px;
  align-items: start;
  font-family: var(--font-body-family);
  font-style: var(--font-body-style);
  font-weight: var(--font-body-weight);
  font-size: 1.5rem;
  line-height: 1.6;
  opacity: 0.9;
}

.tonik-about__check {
  font-weight: 600;
  line-height: 1.6;
}

/* ── Icons row ── */
.tonik-about__icons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
  padding-top: 14px;
}

.tonik-about__icon {
  width: var(--tonik-icon-size, 64px);
  height: var(--tonik-icon-size, 64px);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.tonik-about__icon-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.tonik-about__icon-placeholder {
  width: 100%;
  height: 100%;
  border: 1px dashed rgba(0, 0, 0, 0.15);
  border-radius: 999px;
}

/* ── Mobile ── */
@media (max-width: 749px) {
  .tonik-about__inner {
    padding-left: 18px;
    padding-right: 18px;
  }

  .tonik-about__heading {
    font-size: calc(var(--font-heading-scale) * 2.5rem);
  }

  .tonik-about__body,
  .tonik-about__subline,
  .tonik-about__bullet {
    font-size: 1.5rem;
  }

  .tonik-about__bullets {
    align-items: stretch;
  }
}
/* END_SECTION:tonik-about-manufacturing */