/** Shopify CDN: Minification failed

Line 136:13 Expected identifier but found whitespace
Line 136:14 Unexpected "var("
Line 207:0 Unexpected "}"

**/
/* LittleBear nasal strips product page body.
   Static, cacheable, no Liquid. Everything is scoped under .lb-st so it cannot
   reach the theme header, footer, cart drawer or any other section.
   Fonts and base ink come from the theme's own custom properties, declared in
   assets/base.css, so this section follows the theme's typography settings
   instead of hardcoding a font stack. Fallbacks are supplied on every var()
   in case the section is ever previewed outside the theme. */

/* Note on the theme's variables: --color-foreground on this theme is a hex
   string (#25282a), not the space separated rgb triplet Dawn uses, so it must
   be consumed directly and never wrapped in rgb()/rgba(). --font-body-style is
   also unrendered Liquid on this theme, so it is not used here. Derived tints
   are literal values for that reason. */
.lb-st {
  --st-ink: var(--color-foreground, #25282a);
  --st-soft: #5c666c;
  --st-navy: #1b4460;
  --st-line: #e4e8ea;
  --st-tint: #f5f8fa;
  --st-star: #f7b23c;
  --st-radius: 14px;

  color: var(--st-ink);
  font-family: var(--font-body-family, sans-serif);
  font-weight: var(--font-body-weight, 400);
}
.lb-st *{ box-sizing: border-box; }

.lb-st-wrap { max-width: 1080px; margin: 0 auto; padding: 0 20px; }
.lb-st-narrow { max-width: 720px; }
.lb-st-center { text-align: center; }
.lb-st-s { padding: 56px 0; }

.lb-st h2 {
  font-family: var(--font-heading-family, sans-serif);
  font-weight: var(--font-weight-bold, 700);
  font-size: clamp(25px, 3.4vw, 36px);
  line-height: 1.22;
  letter-spacing: -0.01em;
  margin: 0 0 18px;
  color: var(--st-ink);
}
.lb-st h3 {
  font-family: var(--font-heading-family, sans-serif);
  font-weight: var(--font-weight-bold, 700);
  font-size: 17px;
  line-height: 1.35;
  margin: 0 0 7px;
  color: var(--st-ink);
}
.lb-st p { margin: 0 0 15px; font-size: 16.5px; line-height: 1.65; color: var(--st-soft); }
.lb-st-narrow p, .lb-st-copy p { font-size: 17px; }
.lb-st p:last-child { margin-bottom: 0; }
.lb-st em { font-style: italic; }

.lb-st p.lb-st-eyebrow, .lb-st-eyebrow {
  font-family: var(--font-heading-family, sans-serif);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 11.5px;
  font-weight: var(--font-weight-bold, 700);
  color: var(--st-navy);
  margin: 0 0 10px;
}
.lb-st p.lb-st-sub, .lb-st-sub { text-align: center; max-width: 600px; margin: -6px auto 26px; }

.lb-st-benefits { background: var(--st-tint); border-top: 1px solid var(--st-line); border-bottom: 1px solid var(--st-line); }
.lb-st-grid { list-style: none; margin: 26px 0 0; padding: 0; display: grid; gap: 22px; grid-template-columns: repeat(3, 1fr); }
.lb-st-grid li {
  background: #fff; border: 1px solid var(--st-line); border-radius: 16px;
  padding: 30px 22px 30px; text-align: center;
  transition: border-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}
.lb-st-grid li:hover { border-color: #c8d7e0; box-shadow: 0 10px 26px -14px rgba(27, 68, 96, 0.42); transform: translateY(-2px); }
/* Icon is its own element rather than a ::before on the heading, so a headline
   that wraps to two lines stays aligned instead of hanging under the mark. */
.lb-st-ico {
  display: inline-flex; align-items: center; justify-content: center;
  width: 54px; height: 54px; border-radius: 50%;
  background: #e9f0f4; color: var(--st-navy); margin: 0 0 16px;
}
.lb-st-grid h3 { font-size: 17.5px; line-height: 1.32; margin: 0 0 8px; }
.lb-st-grid p { font-size: 15.5px; line-height: 1.6; margin: 0; }

.lb-st-dots { display: none; }
.lb-st-cards { display: grid; gap: 20px; grid-template-columns: repeat(3, 1fr); margin-top: 30px; }
.lb-st-card {
  margin: 0; background: #fff; border: 1px solid var(--st-line); border-radius: 16px;
  padding: 28px 24px 24px; display: flex; flex-direction: column; text-align: center;
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
}
.lb-st-card:hover { border-color: #c8d7e0; box-shadow: 0 10px 26px -14px rgba(27, 68, 96, 0.42); }
/* Centred so the row of stars reads as part of the card rather than floating
   against its left edge. */
.lb-st-stars { display: flex; justify-content: center; gap: 3px; margin-bottom: 14px; }
.lb-st-stars svg { fill: var(--st-star); }
.lb-st-card blockquote { margin: 0 0 20px; flex: 1; }
.lb-st-card blockquote p { font-size: 15.5px; line-height: 1.62; color: var(--st-ink); margin: 0; }
.lb-st-card figcaption {
  display: flex; align-items: center; justify-content: center; gap: 11px;
  padding-top: 17px; border-top: 1px solid var(--st-line); text-align: left;
}
.lb-st-av {
  flex: none; display: inline-flex; align-items: center; justify-content: center;
  width: 38px; height: 38px; border-radius: 50%; background: #e8eff3; color: var(--st-navy);
  font-family: var(--font-heading-family, sans-serif); font-weight: var(--font-weight-bold, 700);
  font-size: 13.5px; letter-spacing: 0.02em;
}
.lb-st-who { display: flex; flex-direction: column; gap: 1px; }
.lb-st-name { font-family: var(--font-heading-family, sans-serif); font-weight: var(--font-weight-bold, 700); font-size: 14.5px; }
.lb-st-cred { font-size: 12.5px; color: var(--st-soft); }

.lb-st-essay { border-top: 1px solid var(--st-line); }
.lb-st-row { display: grid; grid-template-columns: 1fr 460px; gap: 48px; align-items: center; }
.lb-st-row + .lb-st-row { margin-top: 56px; }
.lb-st-row-alt { grid-template-columns: 460px 1fr; }
.lb-st-row-alt .lb-st-copy { order: 2; }
.lb-st-row-alt .lb-st-media { order: 1; }
.lb-st-copy h2 { margin-top: 0; }
.lb-st-copy p { margin-bottom: 0; }
.lb-st-media img { display: block; width: 100%; height: auto; border-radius: var(--st-radius); border: 1px solid var(--st-line); }
.lb-st-ph {
  width: 100%; aspect-ratio: 4 / 3; border-radius: var(--st-radius); border: 1px dashed #c3cfd6;
  background: repeating-linear-gradient(45deg, #f5f8fa, #f5f8fa 12px, #eef3f6 12px, #eef3f6 24px);
  display: flex; align-items: center; justify-content: center;
}
.lb-st-ph span { font-family: var(--font-heading-family, sans-serif); font-size: 12px; font-weight: var(--font-weight-bold, 700); letter-spacing: 0.18em; text-transform: uppercase; color: #556a77; }

  background: var(--st-navy); color: #fff; font-family: var(--font-heading-family, sans-serif);
  font-weight: var(--font-weight-bold, 700); font-size: 13px; letter-spacing: 0.04em; text-transform: uppercase; border-bottom: 0;
}

.lb-st-steps-s { background: var(--st-tint); border-top: 1px solid var(--st-line); border-bottom: 1px solid var(--st-line); }
.lb-st-steps { list-style: none; margin: 30px 0 0; padding: 0; display: grid; gap: 20px; grid-template-columns: repeat(3, 1fr); counter-reset: none; }
.lb-st-steps li { background: #fff; border: 1px solid var(--st-line); border-radius: 16px; padding: 26px 24px 28px; }
.lb-st-num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--st-navy); color: #fff; margin-bottom: 15px;
  font-family: var(--font-heading-family, sans-serif); font-weight: var(--font-weight-bold, 700);
  font-size: 16px; box-shadow: 0 6px 14px -6px rgba(27, 68, 96, 0.55);
}
.lb-st-steps h3 { font-size: 17.5px; line-height: 1.32; margin: 0 0 8px; }
.lb-st-steps p { font-size: 15.5px; line-height: 1.6; margin: 0; }

.lb-st-close { padding-top: 52px; }
.lb-st-cta {
  display: inline-block; margin-top: 8px;
  font-family: var(--font-body-family, sans-serif);
  font-size: var(--st-cta-size, 20px);
  font-weight: var(--st-cta-weight, 500);
  color: var(--st-cta-fg, #fff);
  background: var(--st-cta-bg, #0606c0);
  border: 0; border-radius: var(--st-cta-radius, 14px);
  padding: 16px 34px; cursor: pointer; transition: filter 0.15s ease;
}
.lb-st-cta:hover { filter: brightness(1.12); }
.lb-st-cta:focus-visible { outline: 3px solid var(--st-navy); outline-offset: 3px; }

@media (max-width: 900px) {
  .lb-st-grid, .lb-st-cards, .lb-st-steps { grid-template-columns: repeat(2, 1fr); }
  .lb-st-row, .lb-st-row-alt { grid-template-columns: 1fr; gap: 24px; }
  .lb-st-row-alt .lb-st-copy, .lb-st-row-alt .lb-st-media { order: 0; }
  .lb-st-row + .lb-st-row { margin-top: 44px; }
}
@media (max-width: 640px) {
  .lb-st-s { padding: 40px 0; }
  .lb-st-wrap { padding: 0 18px; }
  .lb-st-grid, .lb-st-steps { grid-template-columns: 1fr; gap: 16px; }
  /* Reviews become a real swipeable slider on phones: native touch scrolling
     with scroll snapping, the next card peeking so the gesture is discoverable.
     No JS for the swipe itself, so momentum and accessibility stay native. */
  .lb-st-cards {
    display: flex; grid-template-columns: none; gap: 14px;
    overflow-x: auto; scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch;
    scrollbar-width: none; -ms-overflow-style: none;
    margin: 30px -18px 0; padding: 0 18px 4px; scroll-padding: 0 18px;
    overscroll-behavior-x: contain;
  }
  .lb-st-cards::-webkit-scrollbar { display: none; }
  .lb-st-card { flex: 0 0 86%; scroll-snap-align: center; }
  .lb-st-dots { display: flex; justify-content: center; gap: 4px; margin-top: 4px; }
  .lb-st-dots button {
    appearance: none; border: 0; background: none; padding: 0; cursor: pointer;
    /* 44px tall touch target around a 7px dot */
    width: 32px; height: 44px; display: flex; align-items: center; justify-content: center;
  }
  .lb-st-dots button::before {
    content: ""; display: block; width: 7px; height: 7px; border-radius: 50%;
    background: #c3cfd6; transition: background 0.18s ease, transform 0.18s ease;
  }
  .lb-st-dots button[aria-current="true"]::before { background: var(--st-navy); transform: scale(1.25); }

  .lb-st-cta { display: block; width: 100%; padding: 17px 18px; }

    content: attr(data-label); display: block; font-family: var(--font-heading-family, sans-serif);
    font-size: 11px; font-weight: var(--font-weight-bold, 700); letter-spacing: 0.1em;
    text-transform: uppercase; color: var(--st-navy); opacity: 0.75; margin-bottom: 3px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .lb-st-cta, .lb-st-grid li, .lb-st-card { transition: none; }
  .lb-st-grid li:hover { transform: none; }
}
