/** Shopify CDN: Minification failed

Line 29:8 Expected identifier but found whitespace
Line 29:10 Unexpected "{"
Line 29:19 Expected ":"
Line 49:12 Expected identifier but found whitespace
Line 49:14 Unexpected "{"
Line 49:23 Expected ":"
Line 49:47 Expected ":"
Line 57:12 Expected identifier but found whitespace
Line 57:14 Unexpected "{"
Line 57:23 Expected ":"
... and 57 more hidden warnings

**/
/* SHOPIFY_STYLESHEETS_VERSION: 1.0 */


/* CSS from section stylesheet tags */
/* START_SECTION:bp-fomo (INDEX:11, SCOPED:FALSE) */
.biopro-signal {
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  background: linear-gradient(
    180deg,
    {{ section.settings.bg_color }} 0%,
    {{ section.settings.bg_color_secondary }} 100%
  );
  color: {{ section.settings.text_color }};
  padding: clamp(6rem, 10vw, 8rem) 1.5rem;
  position: relative;
  overflow: hidden;
}

/* Ambient signal beam */
.biopro-signal::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at 50% 0%,
    {{ section.settings.accent_color | color_modify: 'alpha', 0.25 }},
    transparent 60%
  );
  pointer-events: none;
}

.biopro-signal__wrap {
  max-width: {{ section.settings.max_width }}px;
  margin: 0 auto;
}

/* Eyebrow */
.biopro-signal__eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: {{ section.settings.eyebrow_size }}px;
  color: {{ section.settings.accent_color }};
  margin-bottom: 1rem;
}

/* Headline */
.biopro-signal h2 {
  font-size: {{ section.settings.headline_size }}px;
  font-weight: 900;
  line-height: 1.05;
  max-width: {{ section.settings.headline_width }}px;
}

.biopro-signal h2 span {
  color: {{ section.settings.accent_color }};
}

/* Subheadline */
.biopro-signal__sub {
  margin-top: 1.25rem;
  max-width: {{ section.settings.subheadline_width }}px;
  font-size: {{ section.settings.subheadline_size }}px;
  opacity: 0.75;
}

/* Grid */
.biopro-signal__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  margin-top: 5.5rem;
}

@media (min-width: 900px) {
  .biopro-signal__grid {
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
  }
}

/* Column label */
.biopro-signal__label {
  font-size: {{ section.settings.label_size }}px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
  opacity: 0.6;
}

/* Cards */
.biopro-signal__card {
  padding: 2rem 0;
  border-top: 1px solid {{ section.settings.divider_color }};
}

.biopro-signal__card:last-child {
  border-bottom: 1px solid {{ section.settings.divider_color }};
}

.biopro-signal__title {
  font-size: {{ section.settings.card_title_size }}px;
  font-weight: 800;
  letter-spacing: 0.03em;
}

.biopro-signal__support {
  margin-top: 0.5rem;
  font-size: {{ section.settings.card_support_size }}px;
  opacity: 0.65;
  max-width: 420px;
}

/* Highlight column */
.biopro-signal__col--active {
  background: radial-gradient(
    circle at top,
    {{ section.settings.accent_color | color_modify: 'alpha', 0.18 }},
    transparent 70%
  );
  padding: 2.5rem;
  border-radius: 18px;
}

/* CTA */
.biopro-signal__cta {
  display: inline-block;
  margin-top: 5rem;
  padding: 1.2rem 3.2rem;
  background: {{ section.settings.cta_bg }};
  color: {{ section.settings.cta_text_color }};
  border-radius: 999px;
  font-weight: 900;
  text-decoration: none;
  font-size: {{ section.settings.cta_size }}px;
}

/* Disclaimer */
.biopro-signal__note {
  margin-top: 1.75rem;
  font-size: {{ section.settings.disclaimer_size }}px;
  opacity: 0.5;
  max-width: 720px;
}
/* END_SECTION:bp-fomo */

/* START_SECTION:sb-credibility (INDEX:122, SCOPED:FALSE) */
/* HIGH-SPECIFICITY, NO LIQUID, EDITOR-SAFE */

section.sb-trusted-section {
  background: var(--sb-bg);
}

/* Heading */
section.sb-trusted-section .sb-trusted-heading-0 {
  color: var(--sb-heading-main);
}

section.sb-trusted-section .sb-trusted-heading-1 {
  background: linear-gradient(
    90deg,
    var(--sb-heading-grad-a),
    var(--sb-heading-grad-b)
  );
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

section.sb-trusted-section .sb-trusted-p {
  color: var(--sb-paragraph);
}

/* Doctor cards */
section.sb-trusted-section .sb-trusted-item {
  background: var(--sb-card-bg);
}

section.sb-trusted-section .sb-trusted-doctor-title,
section.sb-trusted-section .sb-trusted-doctor-place,
section.sb-trusted-section .sb-trusted-testimonial-text {
  color: var(--sb-card-text);
}

/* Disclaimer */
section.sb-trusted-section .sb-hero-disclaimer {
  color: var(--sb-disclaimer);
  text-align: center;
  max-width: 420px;
  margin: 0 auto;
}

/* CTA */
section.sb-trusted-section .buy-box-link {
  background: var(--sb-cta-bg);
}

section.sb-trusted-section .sb-cta-text {
  color: var(--sb-cta-text);
}

/* Below CTA */
section.sb-trusted-section .sb-steps-below-cta-text {
  color: var(--sb-below-cta);
}
/* END_SECTION:sb-credibility */

/* START_SECTION:sb-logos (INDEX:130, SCOPED:FALSE) */
/* ===== Background engine (LIVE editor safe) ===== */
.sb-featured-section {
  background: transparent;
}

.sb-featured-section[data-bg-mode="solid"] {
  background: var(--sb-bg-a);
}

.sb-featured-section[data-bg-mode="gradient"] {
  background: linear-gradient(180deg, var(--sb-bg-a), var(--sb-bg-b));
}

/* ===== Headline ===== */
.sb-featured-section .sb-featured-wrapper {
  text-align: center;
}

.sb-featured-section .sb-hero-p {
  margin-left: auto;
  margin-right: auto;
  max-width: clamp(320px, 80vw, 820px);
  color: var(--sb-headline-color);
}

/* ===== Logos ===== */
.sb-featured-logo-v2 {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(14px, 3vw, 40px);
  flex-wrap: wrap;
}

.sb-featured-logo-item {
  flex: 0 0 auto;
}

.sb-featured-logo-image {
  height: clamp(28px, 3.5vw, 60px);
  width: auto;
  max-width: 180px;
  object-fit: contain;
  display: block;
  filter: var(--sb-logo-filter);
}

/* ===== Mobile behavior ===== */
@media (max-width: 767px) {

  .sb-featured-logo-v2.is-scroll {
    flex-wrap: nowrap;
    justify-content: flex-start;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding: 0 16px;
    scroll-snap-type: x mandatory;
  }

  .sb-featured-logo-v2.is-scroll::-webkit-scrollbar {
    display: none;
  }

  .sb-featured-logo-v2.is-scroll .sb-featured-logo-item {
    scroll-snap-align: start;
  }

  .sb-featured-logo-v2.is-marquee {
    position: relative;
    overflow: hidden;
    flex-wrap: nowrap;
    justify-content: flex-start;
  }

  .sb-featured-logo-v2.is-marquee .sb-marquee-track {
    display: flex;
    align-items: center;
    gap: clamp(14px, 4vw, 40px);
    width: max-content;
    animation: sb-marquee var(--sb-marquee-duration, 18s) linear infinite;
    will-change: transform;
  }

  @keyframes sb-marquee {
    from { transform: translateX(0); }
    to   { transform: translateX(calc(-1 * var(--sb-marquee-distance, 50%))); }
  }

  @media (prefers-reduced-motion: reduce) {
    .sb-featured-logo-v2.is-marquee .sb-marquee-track {
      animation: none;
    }
  }
}
/* END_SECTION:sb-logos */