/** Shopify CDN: Minification failed

Line 1818:0 Unexpected "}"

**/
/* ==========================================================================
   Dr. Mark Leong — Wellness Promo Landing Page
   Scoped stylesheet. Every class is prefixed with .wlp- to avoid theme
   conflicts. Colors and spacing are driven by CSS custom properties so
   sections can override them from Theme Editor settings.
   ========================================================================== */

/* ---- Design tokens (defaults; sections may override per instance) ---- */
.wlp-section,
.wlp-announcement,
.wlp-sticky-cta {
  --wlp-coral: #f26c4f;
  --wlp-coral-dark: #d8512f;
  --wlp-coral-soft: #fde7df;
  --wlp-ink: #0c192a;
  --wlp-ink-60: rgba(12, 25, 42, 0.64);
  --wlp-ink-12: rgba(12, 25, 42, 0.12);
  --wlp-white: #ffffff;
  --wlp-bg: #ffffff;
  --wlp-text: #0c192a;
  --wlp-radius-lg: 24px;
  --wlp-radius-md: 16px;
  --wlp-radius-pill: 999px;
  --wlp-shadow-soft: 0 10px 30px rgba(12, 25, 42, 0.07);
  --wlp-shadow-hover: 0 16px 40px rgba(12, 25, 42, 0.12);
  --wlp-container: 1200px;
  --wlp-pad-top: 64px;
  --wlp-pad-bottom: 64px;
  --wlp-font-heading: 'Georgia', 'Times New Roman', serif;
  --wlp-font-body: 'Helvetica Neue', Arial, sans-serif;
}

/* Free Wellness Gifts header: left logo with native cart drawer trigger. */
.wlp-header__actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.8rem;
  flex: 0 0 auto;
}

.wlp-header:not(.wlp-header--center) .wlp-header__inner {
  justify-content: space-between;
}

.wlp-header--center .wlp-header__actions {
  grid-column: 3;
  justify-self: end;
}

.wlp-header__cart {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  flex: 0 0 54px;
  color: #d8512f;
  background: #fde7df;
  border: 2px solid #f26c4f;
  border-radius: 999px;
  box-shadow: 0 8px 22px rgba(216, 81, 47, 0.16);
  text-decoration: none;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.wlp-header__cart:hover {
  color: #d8512f;
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(216, 81, 47, 0.24);
}

.wlp-header__cart .svg-wrapper {
  display: inline-flex;
  width: 25px;
  height: 25px;
}

.wlp-header__cart .icon {
  width: 100%;
  height: 100%;
}

.wlp-header__cart .cart-count-bubble {
  position: absolute;
  top: -5px;
  right: -5px;
  left: auto;
  width: auto;
  min-width: 21px;
  height: 21px;
  padding: 0 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #fff;
  border-radius: 999px;
  background: #0c192a;
  color: #fff;
  font-size: 11px;
  line-height: 1;
}

@media (max-width: 767px) {
  .wlp-header:not(.wlp-header--center) .wlp-header__inner {
    min-height: 72px;
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .wlp-header:not(.wlp-header--center) .wlp-header__logo-link {
    margin: 0;
  }

  .wlp-header__logo {
    max-width: min(180px, 58vw) !important;
  }

  .wlp-header__cart {
    width: 46px;
    height: 46px;
    flex-basis: 46px;
  }

  .wlp-header__cart .svg-wrapper {
    width: 22px;
    height: 22px;
  }
}

/* ---- Section shell ---- */
.wlp-section {
  background: var(--wlp-bg);
  color: var(--wlp-text);
  padding-top: var(--wlp-pad-top);
  padding-bottom: var(--wlp-pad-bottom);
  font-family: var(--wlp-font-body);
  overflow-x: clip;
}

.wlp-container {
  max-width: var(--wlp-container);
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}

@media (min-width: 750px) {
  .wlp-container { padding-left: 40px; padding-right: 40px; }
}

@media (max-width: 749px) {
  .wlp-section {
    padding-top: calc(var(--wlp-pad-top) * 0.72);
    padding-bottom: calc(var(--wlp-pad-bottom) * 0.72);
  }
}

/* ---- Typography ---- */
.wlp-eyebrow {
  display: inline-block;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--wlp-coral-dark);
  margin: 0 0 1.15rem;
  line-height: 1.2;
}

.wlp-h1,
.wlp-h2,
.wlp-h3 {
  font-family: var(--wlp-font-heading);
  color: var(--wlp-text);
  line-height: 1.15;
  margin: 0 0 1rem;
  overflow-wrap: break-word;
  font-weight: 700;
}

.wlp-h1 { font-size: clamp(3.5rem, 6.8vw, 5.8rem); }
.wlp-h2 { font-size: clamp(2.2rem, 4.4vw, 3.4rem); }
.wlp-h3 { font-size: clamp(1.125rem, 2vw, 1.375rem); }

.wlp-lead {
  font-size: clamp(1.3rem, 2.1vw, 1.75rem);
  line-height: 1.58;
  color: var(--wlp-ink-60);
  max-width: 34em;
  margin: 0 0 2.8rem;
}

.wlp-section-header .wlp-h2 {
  margin-bottom: 1.45rem;
}

.wlp-section-header .wlp-lead {
  font-size: clamp(1.52rem, 2.2vw, 1.9rem);
  line-height: 1.5;
  margin-bottom: 2.4rem;
}

.wlp-section-header {
  text-align: center;
  max-width: none;
  margin: 0 auto 2.5rem;
}

.wlp-section-header .wlp-lead {
  margin-left: auto;
  margin-right: auto;
  max-width: 100%;
  text-wrap: balance;
}

/* ---- Buttons ---- */
.wlp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 56px;
  padding: 0.95rem 2.2rem;
  border-radius: var(--wlp-radius-pill);
  font-family: var(--wlp-font-body);
  font-size: 1.1rem;
  font-weight: 600;
  line-height: 1.2;
  text-decoration: none;
  text-align: center;
  border: 2px solid transparent;
  cursor: pointer;
  transition: background-color 0.2s ease, border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.wlp-btn--primary {
  background: var(--wlp-coral);
  color: #fff;
}

.wlp-btn--primary:hover {
  background: var(--wlp-coral-dark);
  box-shadow: 0 8px 20px rgba(216, 81, 47, 0.28);
  transform: translateY(-1px);
}

.wlp-btn--secondary {
  background: transparent;
  color: var(--wlp-ink);
  border-color: var(--wlp-ink-12);
}

.wlp-btn--secondary:hover {
  border-color: var(--wlp-coral);
  color: var(--wlp-coral-dark);
}

.wlp-btn:focus-visible,
.wlp-faq__summary:focus-visible,
.wlp-slider__btn:focus-visible,
a.wlp-link:focus-visible {
  outline: 3px solid var(--wlp-coral);
  outline-offset: 3px;
}

.wlp-btn[disabled],
.wlp-btn[aria-disabled='true'] {
  opacity: 0.55;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

@media (max-width: 749px) {
  .wlp-btn--full-mobile { width: 100%; }
}

.wlp-link {
  color: var(--wlp-coral-dark);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ---- Badges & pills ---- */
.wlp-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.375rem 0.875rem;
  border-radius: var(--wlp-radius-pill);
  background: var(--wlp-coral-soft);
  color: var(--wlp-coral-dark);
  font-size: 0.8125rem;
  font-weight: 600;
  line-height: 1.3;
}

.wlp-badge--ink { background: var(--wlp-ink); color: #fff; }

/* Badges inside card bodies hug their text instead of stretching full width */
.wlp-card__body .wlp-badge { align-self: flex-start; }

.wlp-save-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0.7rem;
  border-radius: var(--wlp-radius-pill);
  background: var(--wlp-coral);
  color: #fff;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.wlp-badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.25rem;
}

/* ---- Landing-page header ---- */
.wlp-header {
  background: var(--wlp-header-bg, #fff);
  border-top: 1px solid rgba(242, 108, 79, 0.75);
  border-bottom: 1px solid rgba(12, 25, 42, 0.08);
  font-family: var(--wlp-font-body, 'Helvetica Neue', Arial, sans-serif);
}

.wlp-header--sticky {
  position: sticky;
  top: 0;
  z-index: 50;
}

.wlp-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 82px;
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}

.wlp-header__logo-link {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  color: #0c192a;
  min-width: 0;
}

.wlp-header__logo { display: block; height: auto; }

.wlp-header__wordmark {
  font-family: var(--wlp-font-heading, Georgia, serif);
  font-weight: 700;
  font-size: 1.25rem;
  letter-spacing: 0.01em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.wlp-header__cta {
  flex: 0 0 auto;
  min-height: 42px;
  padding: 0.55rem 1.4rem;
  font-size: 0.9375rem;
}

@media (max-width: 749px) {
  .wlp-header__inner { min-height: 64px; }
  .wlp-header__wordmark { font-size: 1.05rem; }
}

/* Centered-logo layout: logo in the middle, CTA pinned to the right */
.wlp-header--center .wlp-header__inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
}

.wlp-header--center .wlp-header__logo-link {
  grid-column: 2;
  justify-self: center;
}

.wlp-header--center .wlp-header__cta {
  grid-column: 3;
  justify-self: end;
}

@media (max-width: 749px) {
  /* Keep the CTA reachable on small screens without crowding the logo */
  .wlp-header--center .wlp-header__inner { grid-template-columns: 0 auto 1fr; }
  .wlp-header--center .wlp-header__cta { padding: 0.5rem 1rem; font-size: 0.85rem; }
}

/* ---- Announcement bar ---- */
.wlp-announcement {
  background: var(--wlp-bar-bg, var(--wlp-ink));
  color: var(--wlp-bar-text, #ffffff);
  text-align: center;
  padding: 0.9rem 1rem;
  font-size: 1.38rem;
  line-height: 1.45;
  font-family: var(--wlp-font-body);
}

.wlp-announcement a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 3px;
  font-weight: 600;
}

/* ---- Hero ---- */
.wlp-hero .wlp-container {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

@media (min-width: 990px) {
  .wlp-hero .wlp-container { grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr); }

  .wlp-hero__content {
    align-self: start;
    padding-top: 3rem;
  }

  .wlp-hero .wlp-btn--primary {
    min-height: 78px;
    min-width: 420px;
    padding: 1.35rem 4.8rem;
    font-size: 1.75rem;
  }
}

.wlp-hero__media {
  position: relative;
  border-radius: var(--wlp-radius-lg);
  overflow: hidden;
  background: var(--wlp-coral-soft);
}

.wlp-hero__media img {
  display: block;
  width: 100%;
  height: auto;
}

.wlp-hero__gift-badge {
  position: absolute;
  bottom: 16px;
  left: 16px;
  background: #fff;
  color: var(--wlp-ink);
  border-radius: var(--wlp-radius-pill);
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  font-weight: 600;
  box-shadow: var(--wlp-shadow-soft);
}

.wlp-hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1rem;
}

.wlp-hero__ctas .wlp-btn {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.wlp-hero__ctas .wlp-btn::after {
  content: '';
  position: absolute;
  inset: -20% auto -20% -35%;
  width: 34%;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.42) 50%, rgba(255, 255, 255, 0) 100%);
  transform: skewX(-22deg) translateX(-220%);
  opacity: 0;
  pointer-events: none;
  z-index: 1;
}

.wlp-hero__ctas .wlp-btn > * {
  position: relative;
  z-index: 2;
}

.wlp-hero__ctas .wlp-btn--primary {
  box-shadow: 0 12px 30px rgba(216, 81, 47, 0.2);
}

@media (hover: hover) {
  .wlp-hero__ctas .wlp-btn:hover::after {
    opacity: 1;
    animation: wlp-btn-sheen 0.9s ease;
  }

  .wlp-hero__ctas .wlp-btn--primary:hover {
    box-shadow: 0 14px 34px rgba(216, 81, 47, 0.3);
  }
}

.wlp-hero__ctas .wlp-btn:focus-visible::after {
  opacity: 1;
  animation: wlp-btn-sheen 0.9s ease;
}

@keyframes wlp-btn-sheen {
  from { transform: skewX(-22deg) translateX(-220%); }
  to { transform: skewX(-22deg) translateX(420%); }
}

.wlp-hero__promo-badge { margin-bottom: 1rem; }

/* Optional soft coral wash behind the hero (schema checkbox) */
.wlp-hero--wash {
  background: linear-gradient(180deg, var(--wlp-bg) 0%, var(--wlp-coral-soft) 140%);
}

/* Floating-cutout image style: for transparent PNGs of products/gifts.
   Replaces the card box with a soft radial glow + drop shadow. */
.wlp-hero__media--float {
  background: none;
  border-radius: 0;
  overflow: visible;
  padding: 3% 2% 6%;
}

.wlp-hero__media--float::before {
  content: '';
  position: absolute;
  inset: 4% 4% 14%;
  border-radius: 46% / 28%;
  background: radial-gradient(closest-side, var(--wlp-coral-soft) 58%, rgba(253, 231, 223, 0) 100%);
  z-index: 0;
}

.wlp-hero__media--float img {
  position: relative;
  z-index: 1;
  width: 86%;
  margin: 0 auto;
  transform: translateY(-40px);
  filter: drop-shadow(0 28px 44px rgba(12, 25, 42, 0.18));
  animation: wlp-float 7s ease-in-out infinite;
}

@keyframes wlp-float {
  0%, 100% { transform: translateY(-40px); }
  50% { transform: translateY(-50px); }
}

.wlp-hero__media--float .wlp-hero__gift-badge {
  bottom: 6%;
  left: 2%;
  border: 1px solid var(--wlp-ink-12);
  z-index: 2;
}

/* Headline highlight word (e.g. "FREE") */
.wlp-hl {
  position: relative;
  z-index: 0;
  color: var(--wlp-coral-dark);
  white-space: nowrap;
}

.wlp-hl::after {
  content: '';
  position: absolute;
  left: -3%;
  right: -3%;
  bottom: 0.06em;
  height: 0.32em;
  background: var(--wlp-coral-soft);
  border-radius: 6px;
  z-index: -1;
  transform: rotate(-1.2deg);
}

.wlp-hero__line1,
.wlp-hero__line2 {
  display: inline;
}

.wlp-hero__eyebrow-line {
  display: inline;
}

/* Dashed orbit ring slowly rotating behind the floating cutout */
.wlp-hero__media--float::after {
  content: '';
  position: absolute;
  inset: 8% 11% 22%;
  border: 1px dashed rgba(242, 108, 79, 0.35);
  border-radius: 50%;
  animation: wlp-spin 70s linear infinite;
  z-index: 0;
  pointer-events: none;
}

@keyframes wlp-spin {
  from { transform: scaleX(1.12) rotate(0deg); }
  to { transform: scaleX(1.12) rotate(360deg); }
}

@keyframes wlp-spin-mobile {
  from { transform: scaleX(1.22) rotate(0deg); }
  to { transform: scaleX(1.22) rotate(360deg); }
}

/* Floating gift callout chips around the hero image */
.wlp-chip {
  position: absolute;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.8rem 1.35rem;
  background: #fff;
  border: 1px solid var(--wlp-ink-12);
  border-radius: var(--wlp-radius-pill);
  font-size: 1.26rem;
  font-weight: 700;
  color: var(--wlp-ink);
  box-shadow: var(--wlp-shadow-soft);
  animation: wlp-float 6s ease-in-out infinite;
}

.wlp-chip__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--wlp-coral);
  flex: 0 0 auto;
}

.wlp-chip--top-left { top: 6%; left: 10%; }
.wlp-chip--top-right { top: 14%; right: 11%; animation-delay: 1.6s; }
.wlp-chip--bottom-right { bottom: 24%; right: 13%; animation-delay: 3.1s; }
.wlp-chip--bottom-left { bottom: 9%; left: 4%; animation-delay: 2.2s; }

@media (max-width: 749px) {
  .wlp-chip { font-size: 0.72rem; padding: 0.35rem 0.7rem; }
}

/* Sparkle accents */
.wlp-hero { position: relative; }

.wlp-hero__sparkle {
  position: absolute;
  color: var(--wlp-coral);
  animation: wlp-pulse 3.5s ease-in-out infinite;
  pointer-events: none;
}

.wlp-hero__sparkle--2 { animation-delay: 1.2s; }
.wlp-hero__sparkle--3 { animation-delay: 2.4s; }

@keyframes wlp-pulse {
  0%, 100% { opacity: 0.25; transform: scale(0.85); }
  50% { opacity: 0.6; transform: scale(1.1); }
}

/* Show mobile image only on small screens when provided */
.wlp-media--mobile { display: none; }
@media (max-width: 749px) {
  .wlp-media--has-mobile .wlp-media--desktop { display: none; }
  .wlp-media--has-mobile .wlp-media--mobile { display: block; }
}

/* ---- Generic card grid ---- */
.wlp-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
}

@media (min-width: 600px) { .wlp-grid--2plus { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 990px) {
  .wlp-grid--3 { grid-template-columns: repeat(3, 1fr); }
  .wlp-grid--4 { grid-template-columns: repeat(4, 1fr); }
}

.wlp-card {
  background: var(--wlp-card-bg, #fff);
  border: 1px solid var(--wlp-ink-12);
  border-radius: var(--wlp-radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

@media (hover: hover) {
  .wlp-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--wlp-shadow-hover);
  }
}

.wlp-card__media {
  background: var(--wlp-coral-soft);
  aspect-ratio: 4 / 3;
}

/* Gift/reward cards: shorter image area (less empty coral space)
   and consistent text-box height across the row */
.wlp-gift-card .wlp-card__media {
  aspect-ratio: 5 / 2.6;
  background: radial-gradient(circle at 32% 28%, #fde7df 0%, #fbd6c9 62%, #f8c4b2 100%);
}

/* Gift cards always stretch to equal height within their row */
.wlp-gift-card {
  height: 100%;
  min-height: 100%;
}

.wlp-gift-card .wlp-card__media img {
  width: 84%;
  height: 84%;
  object-fit: contain;
  margin: 0 auto;
  padding-top: 2.25rem;
}

.wlp-gift-card .wlp-card__body,
.wlp-gift-reveal .wlp-gift-card .wlp-card__body {
  justify-content: flex-start;
  padding: 1.55rem 1.6rem 1.65rem;
  gap: 0.7rem;
}

.wlp-gift-card .wlp-card__body--no-badge,
.wlp-gift-reveal .wlp-gift-card .wlp-card__body--no-badge {
  justify-content: center;
}

.wlp-gift-card .wlp-card__text {
  font-size: 1.5rem;
  line-height: 1.58;
}

.wlp-gift-reveal .wlp-section-header {
  max-width: none;
  margin-bottom: 4rem;
}

.wlp-rewards .wlp-section-header {
  margin-bottom: 4rem;
}

.wlp-gift-reveal .wlp-section-header .wlp-lead {
  max-width: 100%;
}

@media (min-width: 990px) {
  .wlp-rewards .wlp-section-header .wlp-lead {
    max-width: 34em;
  }
}

.wlp-gift-reveal .wlp-gift-card {
  width: 94%;
  max-width: none;
  margin: 0 auto;
}

.wlp-gift-card .wlp-card__title,
.wlp-gift-reveal .wlp-gift-card .wlp-card__title {
  font-size: 2.2rem;
  line-height: 1.22;
  font-weight: 700;
}

.wlp-gift-reveal .wlp-gift-card .wlp-card__text {
  font-size: 1.68rem;
  line-height: 1.58;
}

.wlp-gift-reveal .wlp-gift-card .wlp-badge {
  font-size: 1.3rem;
  padding: 0.54rem 1.15rem;
}

.wlp-gift-reveal .wlp-gift-card .wlp-card__media {
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

.wlp-gift-reveal .wlp-gift-card .wlp-card__media img {
  width: 92%;
  height: 100%;
  object-fit: contain;
  box-sizing: border-box;
  padding-top: 2.75rem;
  padding-bottom: 0.45rem;
  margin: 0 auto;
}

.wlp-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.wlp-card__body {
  padding: 1.25rem 1.375rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  flex: 1;
}

.wlp-card__title {
  font-family: var(--wlp-font-heading);
  font-size: 1.125rem;
  margin: 0;
  color: var(--wlp-text);
}

.wlp-card__text {
  color: var(--wlp-ink-60);
  font-size: 0.9375rem;
  line-height: 1.6;
  margin: 0;
}

/* ---- Product cards ---- */
.wlp-product-card { position: relative; height: 100%; }

.wlp-product-card .wlp-card__media {
  aspect-ratio: 1 / 1;
  background: radial-gradient(circle at 32% 28%, #fde7df 0%, #fbd6c9 62%, #f8c4b2 100%);
}
.wlp-product-card .wlp-card__media img { object-fit: contain; padding: 8%; }

.wlp-product-card__badge {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
}

.wlp-product-card__best-for {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--wlp-coral-dark);
  margin: 0;
  line-height: 1.4;
  min-height: 2.28em; /* reserves 2 lines so cards align */
}

.wlp-product-card .wlp-card__title {
  line-height: 1.25;
  min-height: 2.5em; /* reserves 2 lines so cards align */
}

.wlp-product-card__price-row {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.25rem;
}

.wlp-product-card__price {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--wlp-ink);
}

.wlp-product-card__compare {
  color: var(--wlp-ink-60);
  text-decoration: line-through;
  font-size: 0.9375rem;
}

.wlp-product-card__unit {
  font-size: 0.8125rem;
  color: var(--wlp-ink-60);
}

.wlp-product-card__plan-meta {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding: 0.75rem 0.875rem;
  margin: 0.5rem 0;
  border-radius: var(--wlp-radius-md);
  background: var(--wlp-coral-soft);
  font-size: 0.8438rem;
  color: var(--wlp-ink);
}

.wlp-product-card__plan-meta strong { color: var(--wlp-coral-dark); }

.wlp-product-card__reviews {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  gap: 0.4rem;
  font-size: 0.8125rem;
  color: var(--wlp-ink-60);
}

.wlp-product-card__reviews span { white-space: nowrap; }

.wlp-product-card__form { margin-top: auto; padding-top: 0.75rem; }
.wlp-product-card__form .wlp-btn { width: 100%; }

.wlp-product-card__selling-plan {
  width: 100%;
  margin-bottom: 0.75rem;
  padding: 0.625rem 0.75rem;
  border: 1px solid var(--wlp-ink-12);
  border-radius: var(--wlp-radius-md);
  font-family: var(--wlp-font-body);
  font-size: 0.875rem;
  color: var(--wlp-ink);
  background: #fff;
}

.wlp-product-card__sold-out {
  font-size: 0.875rem;
  color: var(--wlp-coral-dark);
  font-weight: 600;
}

/* ---- Stars ---- */
.wlp-stars {
  display: inline-flex;
  gap: 2px;
  color: var(--wlp-coral);
}

.wlp-stars svg { width: 16px; height: 16px; display: block; }
.wlp-stars .wlp-star--empty { color: var(--wlp-ink-12); }

/* ---- How it works ---- */
.wlp-steps {
  counter-reset: wlp-step;
  list-style: none; /* hide default 1. 2. 3. markers; circles inside the boxes do the numbering */
  padding-left: 0;
  margin: 0;
}

.wlp-step {
  text-align: center;
  padding: 2rem 1.5rem;
  border-radius: var(--wlp-radius-lg);
  background: var(--wlp-card-bg, #fff);
  border: 1px solid var(--wlp-ink-12);
}

.wlp-step__number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--wlp-coral);
  color: #fff;
  font-weight: 700;
  font-size: 1.125rem;
  margin-bottom: 1rem;
}

.wlp-step__icon {
  width: 56px;
  height: 56px;
  object-fit: contain;
  margin: 0 auto 1rem;
  display: block;
}

.wlp-how .wlp-section-header {
  margin-bottom: 3.5rem;
}

.wlp-how .wlp-eyebrow {
  margin-bottom: 0.9rem;
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #f15a37;
}

.wlp-how .wlp-h2 { color: #142238; }

.wlp-how .wlp-steps {
  gap: 1.2rem;
}

.wlp-how .wlp-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  min-height: 16.5rem;
  padding: 2rem 1.9rem 1.8rem;
  border-radius: 1.7rem;
  background: #fff;
  border: 1px solid rgba(20, 34, 56, 0.1);
  box-shadow: 0 0 0 1px rgba(20, 34, 56, 0.03);
}

.wlp-how .wlp-step__number {
  width: 4rem;
  height: 4rem;
  margin-bottom: 1.25rem;
  background: #f56d4b;
  font-size: 2.2rem;
  font-weight: 800;
}

.wlp-how .wlp-step .wlp-h3 {
  font-size: clamp(1.95rem, 2.5vw, 2.55rem);
  line-height: 1.08;
  margin: 0 0 0.75rem;
  color: #142238;
}

.wlp-how .wlp-step .wlp-card__text {
  font-size: 1.48rem;
  line-height: 1.65;
  color: #606b7d;
  margin: 0;
  max-width: 100%;
}

@media (min-width: 990px) {
  .wlp-how .wlp-steps {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.35rem;
  }
}

@media (max-width: 749px) {
  .wlp-how .wlp-section-header {
    margin-bottom: 2.2rem;
  }

  .wlp-how .wlp-eyebrow {
    font-size: 1.5rem;
    letter-spacing: 0.14em;
  }

  .wlp-how .wlp-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.9rem;
  }

  .wlp-how .wlp-step {
    min-height: auto;
    padding: 1.5rem 1.15rem;
    border-radius: 1.4rem;
  }

  .wlp-how .wlp-step__number {
    width: 3.8rem;
    height: 3.8rem;
    margin-bottom: 1rem;
    font-size: 1.85rem;
  }

  .wlp-how .wlp-step .wlp-h3 {
    font-size: 1.75rem;
    margin-bottom: 0.6rem;
  }

  .wlp-how .wlp-step .wlp-card__text {
    font-size: 1.32rem;
    line-height: 1.65;
    max-width: 100%;
  }
}

/* ---- Certifications (large individual badge tiles) ---- */
.wlp-certs__strip {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.2rem;
}

.wlp-certs .wlp-section-header {
  margin-bottom: 4rem;
}

.wlp-cert {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  min-height: 13rem;
  padding: 1.6rem;
  border: 1px solid var(--wlp-ink-12);
  border-radius: 2rem;
  background: #fff;
  box-shadow: var(--wlp-shadow-soft);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.wlp-cert:hover {
  transform: translateY(-3px);
  box-shadow: var(--wlp-shadow-hover);
}

.wlp-cert__logo {
  width: 132px;
  height: 132px;
  object-fit: contain;
  display: block;
  margin: 0;
  opacity: 1;
  transition: opacity 0.25s ease;
}

.wlp-cert:hover .wlp-cert__logo { opacity: 1; }

.wlp-cert .wlp-card__title { font-size: 0.8125rem; margin: 0; }
.wlp-cert .wlp-card__text { display: none; }

@media (min-width: 990px) {
  .wlp-certs__strip {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.4rem;
  }
}

@media (max-width: 749px) {
  .wlp-certs .wlp-section-header {
    margin-bottom: 2.6rem;
  }

  .wlp-certs__strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.9rem;
  }

  .wlp-cert {
    min-height: 10.5rem;
    padding: 1.1rem;
    border-radius: 1.5rem;
  }

  .wlp-cert__logo { width: 100px; height: 100px; }
}

/* ---- Pillars (alternating rows) ---- */
.wlp-pillar {
  display: grid;
  gap: 1.5rem;
  align-items: center;
  margin-bottom: 2.5rem;
}

.wlp-pillars .wlp-section-header {
  margin-bottom: 4rem;
}

.wlp-pillar:last-child { margin-bottom: 0; }

@media (min-width: 900px) {
  .wlp-pillar { grid-template-columns: 1fr 1fr; gap: 3.5rem; }
  .wlp-pillar--flip .wlp-pillar__media { order: 2; }
}

.wlp-pillar__media {
  border-radius: var(--wlp-radius-lg);
  overflow: hidden;
  background: var(--wlp-coral-soft);
}

.wlp-pillar__media img { display: block; width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4 / 3; }

.wlp-pillars .wlp-pillar .wlp-h3 {
  font-size: clamp(2.25rem, 3.2vw, 3rem);
  line-height: 1.08;
  margin: 0 0 1rem;
}

.wlp-pillars .wlp-pillar .wlp-lead {
  margin-bottom: 0;
}

@media (max-width: 749px) {
  .wlp-pillars .wlp-pillar .wlp-h3 {
    font-size: 1.8rem;
    margin-bottom: 0.75rem;
  }

  .wlp-pillar {
    gap: 1rem;
  }

  .wlp-pillar__media img {
    aspect-ratio: 1 / 0.75;
  }

  .wlp-pillars .wlp-pillar .wlp-lead {
    font-size: 1.42rem;
    line-height: 1.75;
  }
}

/* ---- Member perks ---- */
.wlp-perks-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}

@media (min-width: 600px) { .wlp-perks-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 990px) { .wlp-perks-grid { grid-template-columns: repeat(3, 1fr); } }

.wlp-perk {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  background: #fff;
  border: 1px solid var(--wlp-ink-12);
  border-radius: var(--wlp-radius-md);
  padding: 1.6rem 1.4rem;
}

.wlp-perk__icon {
  position: relative;
  flex: 0 0 auto;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(140deg, #fff0ea 0%, var(--wlp-coral-soft) 55%, #f9cbba 100%);
  color: var(--wlp-coral-dark);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 0 6px rgba(242, 108, 79, 0.09), 0 8px 20px rgba(242, 108, 79, 0.22);
  animation: wlp-glow 3.2s ease-in-out infinite;
}

.wlp-perk:nth-child(2n) .wlp-perk__icon { animation-delay: 0.5s; }
.wlp-perk:nth-child(3n) .wlp-perk__icon { animation-delay: 1s; }

@keyframes wlp-glow {
  0%, 100% { box-shadow: 0 0 0 6px rgba(242, 108, 79, 0.09), 0 8px 20px rgba(242, 108, 79, 0.20); }
  50%      { box-shadow: 0 0 0 10px rgba(242, 108, 79, 0.14), 0 10px 28px rgba(242, 108, 79, 0.34); }
}

.wlp-perk__icon svg { width: 36px; height: 36px; }
.wlp-perk__icon img { width: 38px; height: 38px; object-fit: contain; }

@media (prefers-reduced-motion: reduce) {
  .wlp-perk__icon { animation: none; }
}

.wlp-perk__label {
  font-weight: 600;
  font-size: 1.65rem;
  line-height: 1.4;
  color: var(--wlp-text);
}

/* ---- Experts ---- */
.wlp-expert { text-align: left; }

.wlp-expert__photo {
  aspect-ratio: 1 / 1;
}

.wlp-expert__title {
  color: var(--wlp-coral-dark);
  font-size: 0.875rem;
  font-weight: 600;
  margin: 0;
}

.wlp-expert__credentials {
  font-size: 0.8125rem;
  color: var(--wlp-ink-60);
  margin: 0;
}

/* ---- Reviews ---- */
.wlp-review-card blockquote {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.65;
  color: var(--wlp-text);
}

.wlp-review-card__meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: auto;
  padding-top: 0.75rem;
}

.wlp-review-card__avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  object-fit: cover;
  background: var(--wlp-coral-soft);
  flex: 0 0 auto;
}

.wlp-review-card__name {
  font-weight: 700;
  font-size: 0.875rem;
  margin: 0;
}

.wlp-review-card__sub {
  font-size: 0.78rem;
  color: var(--wlp-ink-60);
  margin: 0;
}

.wlp-verified {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--wlp-coral-dark);
}

/* Full customer photo at the top of a review card */
.wlp-review-card__photo {
  aspect-ratio: 1 / 1;
  background: var(--wlp-coral-soft);
  overflow: hidden;
}

.wlp-review-card__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Slider layout (opt-in via data-layout="slider") */
.wlp-slider {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: min(85%, 340px);
  gap: 1rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 0.5rem;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
}

.wlp-slider > * { scroll-snap-align: start; }

.wlp-slider__controls {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1rem;
}

.wlp-slider__btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--wlp-ink-12);
  background: #fff;
  color: var(--wlp-ink);
  font-size: 1.1rem;
  cursor: pointer;
  transition: border-color 0.2s ease, color 0.2s ease;
}

.wlp-slider__btn:hover { border-color: var(--wlp-coral); color: var(--wlp-coral-dark); }

/* ---- Photo wall (image-only testimonials) ---- */
.wlp-photo-wall__row {
  list-style: none;
  margin: 0;
  padding: 0.5rem 0;
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(2, 1fr);
  justify-items: center;
}

@media (min-width: 750px) { .wlp-photo-wall__row { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 990px) {
  .wlp-photo-wall__row {
    grid-template-columns: repeat(5, 1fr);
    gap: 1.25rem;
  }
}

.wlp-photo {
  width: 100%;
  background: #fff;
  padding: 10px 10px 12px;
  border-radius: 10px;
  box-shadow: var(--wlp-shadow-soft);
  border: 1px solid var(--wlp-ink-12);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.wlp-photo img,
.wlp-photo svg {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 6px;
  background: var(--wlp-coral-soft);
}

/* Gentle alternating tilt for a hand-pinned photo-wall feel */
.wlp-photo:nth-child(odd)  { transform: rotate(-1.6deg); }
.wlp-photo:nth-child(even) { transform: rotate(1.4deg) translateY(8px); }

@media (hover: hover) {
  .wlp-photo:hover {
    transform: rotate(0deg) translateY(-6px) scale(1.03);
    box-shadow: var(--wlp-shadow-hover);
    z-index: 2;
  }
}

@media (prefers-reduced-motion: reduce) {
  .wlp-photo,
  .wlp-photo:nth-child(odd),
  .wlp-photo:nth-child(even) { transform: none !important; }
}

/* ---- FAQ ---- */
.wlp-faq { max-width: 820px; margin: 0 auto; }

.wlp-faq__item {
  border: 1px solid var(--wlp-ink-12);
  border-radius: var(--wlp-radius-md);
  background: #fff;
  margin-bottom: 0.75rem;
  overflow: hidden;
}

.wlp-faq__summary {
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1.125rem 1.25rem;
  cursor: pointer;
  font-weight: 600;
  color: var(--wlp-text);
}

@media (min-width: 1024px) {
  .wlp-faq__summary {
    font-size: 1.36rem;
    line-height: 1.5;
  }
}

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

.wlp-faq__icon {
  flex: 0 0 auto;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--wlp-coral-soft);
  color: var(--wlp-coral-dark);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.25s ease;
}

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

.wlp-faq__answer {
  padding: 0 1.25rem 1.25rem;
  color: var(--wlp-ink-60);
  line-height: 1.65;
  font-size: 0.9375rem;
}

.wlp-faq__answer p { margin: 0 0 0.75rem; }
.wlp-faq__answer p:last-child { margin-bottom: 0; }

/* Keep expanded answers comfortably readable on every screen. */
.wlp-faq-section .wlp-faq__answer {
  font-size: clamp(1.4rem, 1.2vw, 1.55rem);
  line-height: 1.7;
}

/* ---- Final CTA ---- */
.wlp-final-cta .wlp-container {
  background: var(--wlp-panel-bg, var(--wlp-ink));
  color: var(--wlp-panel-text, #ffffff);
  border-radius: var(--wlp-radius-lg);
  padding: clamp(2rem, 5vw, 4rem);
  display: grid;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 900px) {
  .wlp-final-cta .wlp-container { grid-template-columns: 1.1fr 0.9fr; }
}

.wlp-final-cta .wlp-h2,
.wlp-final-cta .wlp-lead { color: inherit; }
.wlp-final-cta .wlp-lead { opacity: 0.85; }

.wlp-final-cta__media {
  border-radius: var(--wlp-radius-md);
  overflow: hidden;
}

.wlp-final-cta__media img { display: block; width: 100%; height: auto; }

.wlp-final-cta .wlp-btn--secondary {
  color: inherit;
  border-color: rgba(255, 255, 255, 0.35);
}

.wlp-final-cta .wlp-btn--secondary:hover { border-color: var(--wlp-coral); color: var(--wlp-coral); }

/* ---- Terms ---- */
.wlp-terms {
  font-size: 0.8125rem;
  color: var(--wlp-ink-60);
  line-height: 1.7;
}

.wlp-terms .wlp-h3 { font-size: 1rem; }
.wlp-terms ul { padding-left: 1.1rem; margin: 0.5rem 0; }

/* ---- Disclosure notes ---- */
.wlp-disclosure {
  text-align: center;
  font-size: 0.8125rem;
  color: var(--wlp-ink-60);
  max-width: 46em;
  margin: 1.5rem auto 0;
}

.wlp-gift-reveal .wlp-disclosure,
.wlp-products .wlp-disclosure,
.wlp-rewards .wlp-disclosure {
  font-size: 1.18rem;
  line-height: 1.6;
}

/* ---- Sticky mobile CTA ---- */
.wlp-sticky-cta {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 40;
  width: min(460px, calc(100vw - 48px));
  padding: 12px;
  background: rgba(12, 25, 42, 0.97);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  box-shadow: 0 24px 48px rgba(12, 25, 42, 0.28);
  display: flex;
  align-items: center;
  gap: 14px;
  transform: translateY(20px);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.wlp-sticky-cta.is-visible {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.wlp-sticky-cta__info {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 1 1 auto;
  min-width: 0;
}

.wlp-sticky-cta__image {
  width: 72px;
  height: 72px;
  flex: 0 0 72px;
  border-radius: 12px;
  object-fit: cover;
  background: var(--wlp-coral-soft);
}

.wlp-sticky-cta__label {
  font-size: 13.5px;
  line-height: 1.35;
  font-weight: 600;
  color: #fff;
  flex: 1;
  min-width: 0;
}

.wlp-sticky-cta .wlp-btn {
  flex: 0 0 auto;
  min-height: 48px;
  padding: 12px 20px;
  white-space: nowrap;
}

@media (min-width: 990px) {
  .wlp-sticky-cta:not(.wlp-sticky-cta--desktop) { display: none; }
}

@media (max-width: 600px) {
  .wlp-sticky-cta {
    left: 12px;
    right: 12px;
    bottom: max(12px, env(safe-area-inset-bottom));
    width: auto;
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }

  .wlp-sticky-cta__image {
    width: 60px;
    height: 60px;
    flex-basis: 60px;
  }

  .wlp-sticky-cta__label {
    font-size: 13px;
    line-height: 1.3;
  }

  .wlp-sticky-cta .wlp-btn { width: 100%; }
}

/* ---- Scroll reveal (JS adds .wlp-revealed) ---- */
.wlp-reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.wlp-reveal.wlp-revealed { opacity: 1; transform: none; }

/* ---- Reduced motion ---- */
@media (prefers-reduced-motion: reduce) {
  .wlp-section *,
  .wlp-sticky-cta,
  .wlp-reveal {
    transition: none !important;
    animation: none !important;
    transform: none !important;
  }
  .wlp-reveal { opacity: 1; }
}

/* ---- Utility ---- */
.wlp-visually-hidden {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}


/* ==========================================================================
   RESPONSIVE REFINEMENTS — tablet (750–989px) and mobile (<750px)
   Added after a full audit of every section.
   ========================================================================== */

/* --- Global overflow safety: nothing may push the page sideways --- */
.wlp-section,
.wlp-container { max-width: 100%; }
.wlp-section img { max-width: 100%; }

/* --- Tablet: 2-across for 3-up and 4-up card grids (was 1-across 600–989) --- */
@media (min-width: 750px) and (max-width: 989px) {
  .wlp-grid--3,
  .wlp-grid--4 { grid-template-columns: repeat(2, 1fr); }

  /* Perks read better as 2 columns on tablet */
  .wlp-perks-grid { grid-template-columns: repeat(2, 1fr); }

  /* Pillars: image above text, comfortably wide */
  .wlp-pillar { grid-template-columns: 1fr; gap: 1.5rem; }
  .wlp-pillar--flip .wlp-pillar__media { order: 0; }
  .wlp-pillars .wlp-section-header { margin-bottom: 2.5rem; }
}

/* --- Hero: image first on mobile so the kit is seen immediately --- */
@media (max-width: 989px) {
  .wlp-hero .wlp-container { grid-template-columns: 1fr; }
  .wlp-hero__media { order: -1; }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .wlp-hero .wlp-container {
    gap: 0.15rem;
  }

  .wlp-hero__content {
    text-align: center;
  }

  .wlp-hero .wlp-eyebrow,
  .wlp-hero .wlp-h1,
  .wlp-hero .wlp-lead,
  .wlp-hero__promo-badge {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }

  .wlp-hero__ctas {
    justify-content: center;
    margin-top: 1.25rem;
    margin-bottom: 2.4rem;
  }

  .wlp-hero__ctas .wlp-btn,
  .wlp-hero__ctas .wlp-btn--primary {
    min-height: 72px;
    min-width: 0;
    padding: 1.2rem 2.8rem;
    font-size: 1.45rem;
  }

  .wlp-hero .wlp-lead {
    margin-bottom: 1.1rem;
  }

  .wlp-hero__media--float {
    max-width: 720px;
    margin: 0 auto;
    padding: 0 0 0.5%;
  }

  .wlp-hero__media--float img {
    width: 84%;
    max-width: 560px;
    transform: translateY(-28px);
  }

  .wlp-hero__media--float::before {
    inset: 6% 7% 15%;
  }

  .wlp-hero__media--float::after {
    inset: 10% 12% 21%;
  }

  .wlp-chip {
    padding: 0.55rem 1rem;
    font-size: 0.98rem;
  }

  .wlp-chip__dot {
    width: 7px;
    height: 7px;
  }

  .wlp-chip--top-left { top: 7%; left: 11%; }
  .wlp-chip--top-right { top: 13%; right: 12%; }
  .wlp-chip--bottom-right { bottom: 22%; right: 14%; }

}
}

/* --- Mobile refinements --- */
@media (max-width: 749px) {
  html:has([data-wlp-hero]),
  body:has([data-wlp-hero]) {
    overflow-x: hidden;
  }

  .wlp-container { padding-left: 16px; padding-right: 16px; }
  .wlp-hero .wlp-container { gap: 0.25rem; }

  /* Headings sized for small screens */
  .wlp-h1 { font-size: clamp(2.5rem, 9.4vw, 3.1rem); }
  .wlp-h2 { font-size: clamp(1.85rem, 7vw, 2.2rem); }
  .wlp-h3 { font-size: 1.2rem; }
  .wlp-eyebrow { font-size: 1.5rem; letter-spacing: 0.14em; }
  .wlp-lead { font-size: 1.12rem; line-height: 1.65; }
  .wlp-section-header { margin-bottom: 1.75rem; }

  /* Hero: centered text and centered CTA on mobile */
  .wlp-hero__content {
    text-align: center;
    margin-top: -1.25rem;
  }
  .wlp-hero .wlp-eyebrow,
  .wlp-hero .wlp-h1 { text-align: center; }
  .wlp-hero .wlp-lead {
    font-size: 1.52rem;
    line-height: 1.5;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }
  .wlp-hero__promo-badge { text-align: center; }

  .wlp-hero__ctas {
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .wlp-hero__ctas .wlp-btn {
    width: 100%;
    max-width: 340px;
    font-size: 1.3rem;
    line-height: 1.25;
    min-height: 64px;
    padding: 0.95rem 1.15rem;
    white-space: normal;
    text-wrap: balance;
  }

  .wlp-hero__ctas .wlp-btn--primary {
    font-size: 1.7rem;
    line-height: 1.2;
    min-height: 72px;
    padding: 1.15rem 1.25rem;
  }

  .wlp-hero .wlp-badge-row { justify-content: center; }

  /* Hero chips: smaller and pulled inside the frame so they never clip */
  .wlp-chip { font-size: 0.9rem; padding: 0.42rem 0.82rem; }
  .wlp-chip--top-left { top: 3%; left: 2%; }
  .wlp-chip--top-right { top: 10%; right: 2%; }
  .wlp-chip--bottom-right { bottom: 16%; right: 3%; }
  .wlp-chip--bottom-left { bottom: 6%; left: 4%; }
  .wlp-hero__media--float {
    padding: 0;
    margin-bottom: -1rem;
    text-align: center;
  }

  .wlp-hero__media--float img {
    width: min(100%, 420px);
    margin-left: auto;
    margin-right: auto;
    transform: translateY(-28px);
  }

  .wlp-hero__media--float::after {
    inset: auto;
    width: 88%;
    height: 60%;
    left: 6%;
    top: 12%;
    border-radius: 50%;
    animation-name: wlp-spin-mobile;
  }

  /* Header: keep logo truly centered on mobile */
  .wlp-header--center .wlp-header__inner { grid-template-columns: 1fr auto 1fr; }
  .wlp-header--center .wlp-header__logo-link { grid-column: 2; justify-self: center; }
  .wlp-header--center .wlp-header__cta { grid-column: 3; justify-self: end; padding: 0.5rem 1rem; font-size: 0.92rem; min-height: 42px; }
  .wlp-header__logo { max-width: 168px !important; }

  /* Product cards: full-width buttons, tidy price row */
  .wlp-product-card__price-row { gap: 0.4rem; }
  .wlp-product-card__price { font-size: 1.15rem; }
  .wlp-product-card .wlp-btn { width: 100%; }

  /* Keep consistent text rows so the 2-up mobile cards align cleanly */
  .wlp-products .wlp-product-card__best-for { min-height: 3.2em; }
  .wlp-products .wlp-product-card .wlp-card__title { min-height: 2.8em; }
  .wlp-products .wlp-product-card__reviews { min-height: 1.4em; }

  /* Perks: bigger tap targets, icon slightly smaller */
  .wlp-perk { padding: 1.25rem 1.2rem; gap: 0.95rem; }
  .wlp-perk__icon { width: 58px; height: 58px; }
  .wlp-perk__icon svg { width: 28px; height: 28px; }

  /* Photo wall: 2 up, no tilt (tilting crowds small screens) */
  .wlp-photo-wall__row { grid-template-columns: repeat(2, 1fr); gap: 0.75rem; }
  .wlp-photo,
  .wlp-photo:nth-child(odd),
  .wlp-photo:nth-child(even) { transform: none; padding: 6px 6px 8px; }

  /* Reviews stack; keep the customer photo generous */
  .wlp-review-card__photo { aspect-ratio: 4 / 3; }

  /* Final CTA panel: stack, image below the buttons */
  .wlp-final-cta .wlp-container { grid-template-columns: 1fr; padding: 1.75rem 1.25rem; }
  .wlp-final-cta__media { order: 2; }

  /* FAQ: comfortable touch targets */
  .wlp-faq__summary { padding: 1rem; font-size: 1.42rem; line-height: 1.58; }

  /* Announcement text wraps cleanly */
  .wlp-announcement { font-size: 1.18rem; line-height: 1.6; }

  /* Certification strip stays compact */
  .wlp-certs .wlp-section-header { margin-bottom: 1.25rem; }
}

/* --- Small phones (<=380px): prevent any cramped overlap --- */
@media (max-width: 380px) {
  .wlp-photo-wall__row { grid-template-columns: 1fr; }
  .wlp-header__cta { display: none; } /* logo keeps its space; CTAs are on-page */
  .wlp-chip {
    display: inline-flex;
    font-size: 0.72rem;
    padding: 0.32rem 0.62rem;
  }
}


/* ---- Reward showcase: 4-up on desktop ---- */
.wlp-rewards .wlp-grid {
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
}

.wlp-rewards .wlp-card__media { aspect-ratio: 16 / 10; }

.wlp-rewards .wlp-card__media {
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
}

.wlp-rewards .wlp-card__media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
  padding: 0;
  margin: 0 auto;
}

.wlp-rewards .wlp-card__body {
  padding: 0.875rem 1rem 1.5rem;
  gap: 0.3rem;
}

.wlp-rewards .wlp-card__title { font-size: 1.85rem; line-height: 1.16; }

.wlp-rewards .wlp-card__text {
  font-size: 1.35rem;
  line-height: 1.5;
}

.wlp-rewards .wlp-badge {
  font-size: 1.12rem;
  padding: 0.36rem 0.78rem;
}

@media (max-width: 599px) {
  .wlp-rewards .wlp-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
  }
  .wlp-rewards .wlp-card__body { padding: 0.75rem 0.875rem 1.15rem; }
  .wlp-rewards .wlp-card__text { font-size: 1rem; }
  .wlp-rewards .wlp-badge { font-size: 0.86rem; }
}

@media (max-width: 749px) {
  .wlp-rewards .wlp-card__title {
    font-size: 1.75rem !important;
    line-height: 1.26 !important;
  }
}


/* ---- Product bundles: 4-up on desktop, 2-up on mobile ---- */
.wlp-products .wlp-grid {
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.wlp-products .wlp-section-header .wlp-lead {
  max-width: 36em;
}

.wlp-products .wlp-section-header {
  margin-bottom: 4rem;
}

/* Roomier cards suit the 2-up layout */
.wlp-products .wlp-product-card .wlp-card__media { aspect-ratio: 4 / 3; }

.wlp-products .wlp-product-card {
  width: 92%;
  margin-left: auto;
  margin-right: auto;
}

.wlp-products .wlp-product-card .wlp-card__body {
  padding: 1.3rem 1.1rem 1.4rem;
  gap: 0.7rem;
}

.wlp-products .wlp-product-card__best-for {
  font-size: 1.4rem;
  line-height: 1.45;
}

.wlp-products .wlp-product-card .wlp-card__title {
  font-size: 1.9rem;
  line-height: 1.22;
}

.wlp-products .wlp-product-card__title-link {
  color: var(--wlp-text);
  text-decoration: none;
  font-weight: 800;
}

.wlp-products .wlp-product-card__title-link:hover,
.wlp-products .wlp-product-card__title-link:focus {
  text-decoration: none;
}

.wlp-products .wlp-product-card .wlp-card__text {
  font-size: 1.35rem;
  line-height: 1.55;
}

.wlp-products .wlp-product-card__reviews {
  font-size: 1.24rem;
  gap: 0.45rem;
}

.wlp-products .wlp-stars svg {
  width: 18px;
  height: 18px;
}

.wlp-products .wlp-product-card__price {
  font-size: 2.05rem;
}

.wlp-products .wlp-product-card__compare {
  font-size: 1.2rem;
}

.wlp-products .wlp-product-card__unit {
  font-size: 1.22rem;
}

.wlp-products .wlp-save-badge {
  font-size: 1.08rem;
  padding: 0.34rem 0.76rem;
}

.wlp-products .wlp-product-card__plan-meta {
  font-size: 1.24rem;
  line-height: 1.45;
  padding: 0.95rem 1rem;
}

.wlp-products .wlp-product-card__selling-plan {
  font-size: 1.16rem;
  padding: 0.82rem 0.88rem;
}

.wlp-products .wlp-product-card__form .wlp-btn {
  font-size: 1.22rem;
  min-height: 52px;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  box-shadow: 0 10px 24px rgba(216, 81, 47, 0.18);
}

.wlp-products .wlp-product-card__form .wlp-btn::after {
  content: '';
  position: absolute;
  inset: -20% auto -20% -35%;
  width: 34%;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.42) 50%, rgba(255, 255, 255, 0) 100%);
  transform: skewX(-22deg) translateX(-220%);
  opacity: 0;
  pointer-events: none;
  z-index: 1;
}

.wlp-products .wlp-product-card__form .wlp-btn > * {
  position: relative;
  z-index: 2;
}

@media (hover: hover) {
  .wlp-products .wlp-product-card__form .wlp-btn:hover::after {
    opacity: 1;
    animation: wlp-btn-sheen 0.9s ease;
  }

  .wlp-products .wlp-product-card__form .wlp-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 14px 30px rgba(216, 81, 47, 0.26);
  }
}

.wlp-products .wlp-product-card__form .wlp-btn:focus-visible::after {
  opacity: 1;
  animation: wlp-btn-sheen 0.9s ease;
}

.wlp-products .wlp-product-card .wlp-card__media {
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.wlp-products .wlp-product-card .wlp-card__media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
  padding: 0;
  transform: scale(1.6);
  transform-origin: center;
}

.wlp-products .wlp-grid > *:first-child .wlp-card__media img {
  transform: translateX(-2%) scale(1.6);
}

@media (min-width: 768px) and (max-width: 1023px) {
  .wlp-products .wlp-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .wlp-products .wlp-product-card {
    width: 100%;
  }

  .wlp-products .wlp-product-card .wlp-card__body {
    padding: 1.1rem 1rem 1.2rem;
    gap: 0.55rem;
  }

  .wlp-products .wlp-product-card__best-for {
    font-size: 1.22rem;
  }

  .wlp-products .wlp-product-card .wlp-card__title {
    font-size: 1.75rem;
    line-height: 1.2;
    min-height: 2.4em;
    word-break: normal;
    overflow-wrap: normal;
    hyphens: none;
    text-wrap: balance;
  }
}

@media (max-width: 749px) {
  /* 2 x 2 on phones: two products per row */
  .wlp-products .wlp-grid { grid-template-columns: repeat(2, 1fr); gap: 0.75rem; }

  /* Compact card internals so everything still fits in a half-width card */
  .wlp-products .wlp-card__body { padding: 0.85rem 0.85rem 1rem; gap: 0.35rem; }
  .wlp-products .wlp-card__title {
    font-size: 1.1rem;
    line-height: 1.3;
    word-break: normal;
    overflow-wrap: normal;
    hyphens: none;
    text-wrap: balance;
  }
  .wlp-products .wlp-product-card__best-for { font-size: 1.16rem; line-height: 1.6; }
  .wlp-products .wlp-card__text { font-size: 0.98rem; line-height: 1.55; }

  .wlp-products .wlp-product-card__price-row { gap: 0.3rem; }
  .wlp-products .wlp-product-card__price { font-size: 1.18rem; }
  .wlp-products .wlp-product-card__unit { font-size: 0.9rem; }
  .wlp-products .wlp-save-badge { font-size: 1rem; padding: 0.28rem 0.62rem; }

  .wlp-products .wlp-product-card__reviews { font-size: 0.88rem; gap: 0.25rem; }
  .wlp-products .wlp-stars svg { width: 13px; height: 13px; }

  .wlp-products .wlp-product-card__plan-meta {
    font-size: 1rem;
    padding: 0.7rem 0.8rem;
    margin: 0.35rem 0;
    line-height: 1.5;
  }

  .wlp-products .wlp-product-card__form .wlp-btn {
    font-size: 1.08rem;
    padding: 0.72rem 0.6rem;
    min-height: 48px;
  }

  .wlp-products .wlp-product-card {
    width: 100%;
  }

  .wlp-products .wlp-product-card__badge { font-size: 0.75rem; padding: 0.22rem 0.54rem; top: 8px; left: 8px; }
}

@media (max-width: 380px) {
  .wlp-products .wlp-card__title {
    font-size: 0.98rem;
    line-height: 1.24;
  }
}


/* ---- Reviews: compact 3-up row, swipeable on mobile ---- */
.wlp-reviews .wlp-grid {
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  max-width: 1040px;
  margin-left: auto;
  margin-right: auto;
}

/* Shorter photo + tighter text = much less height */
.wlp-reviews .wlp-review-card__photo { aspect-ratio: 16 / 11; }

.wlp-reviews .wlp-card__body {
  padding: 1.15rem 1.15rem 1.25rem;
  gap: 0.6rem;
}

.wlp-reviews .wlp-review-card blockquote {
  font-size: 1.45rem;
  line-height: 1.7;
}

.wlp-reviews .wlp-review-card__meta { padding-top: 0.5rem; }
.wlp-reviews .wlp-review-card__name { font-size: 1.25rem; line-height: 1.25; }
.wlp-reviews .wlp-review-card__sub { font-size: 1.1rem; line-height: 1.4; }
.wlp-reviews .wlp-verified { font-size: 1rem; }
.wlp-reviews .wlp-stars svg { width: 20px; height: 20px; }

/* Tablet: keep all three visible, slightly tighter */
@media (min-width: 750px) and (max-width: 989px) {
  .wlp-reviews .wlp-grid { grid-template-columns: repeat(3, 1fr); gap: 0.75rem; }
  .wlp-reviews .wlp-review-card blockquote { font-size: 1.18rem; }
}

@media (max-width: 749px) {
  .wlp-reviews .wlp-review-card blockquote { font-size: 1.24rem; line-height: 1.65; }
  .wlp-reviews .wlp-review-card__name { font-size: 1.16rem; }
  .wlp-reviews .wlp-review-card__sub { font-size: 1.04rem; }
  .wlp-reviews .wlp-verified { font-size: 0.98rem; }
}

/* Mobile: horizontal swipe instead of a tall stack — keeps the block short */
@media (max-width: 749px) {
  .wlp-reviews .wlp-grid {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: 78%;
    grid-template-columns: none;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 0.75rem;
    padding-bottom: 0.5rem;
    -webkit-overflow-scrolling: touch;
  }

  .wlp-reviews .wlp-grid > * { scroll-snap-align: center; }
  .wlp-reviews .wlp-review-card__photo { aspect-ratio: 4 / 3; }
}


/* ---- Final CTA: centered content ---- */
.wlp-final-cta__content { text-align: center; }

.wlp-final-cta__content .wlp-eyebrow,
.wlp-final-cta__content .wlp-h2 { text-align: center; }

.wlp-final-cta__content .wlp-lead {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.wlp-final-cta__content .wlp-hero__ctas {
  justify-content: center;
}

.wlp-final-cta__content .wlp-disclosure {
  text-align: center !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

@media (max-width: 749px) {
  .wlp-final-cta .wlp-container {
    padding: 2.2rem 1.15rem 1.35rem;
    gap: 0.75rem;
  }

  .wlp-final-cta__content .wlp-hero__ctas { align-items: center; }
  .wlp-final-cta__content .wlp-btn { width: 100%; max-width: 340px; }
  .wlp-final-cta__content .wlp-lead {
    font-size: 1.34rem;
    line-height: 1.7;
  }

  .wlp-final-cta__media {
    max-width: 250px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: -1rem;
  }

  .wlp-final-cta__content .wlp-eyebrow,
  .wlp-final-cta__content .wlp-h2,
  .wlp-final-cta__content .wlp-lead {
    margin-bottom: 0.45rem;
  }

  .wlp-final-cta__actions {
    gap: 0;
    padding-bottom: 1.1rem;
  }

  .wlp-final-cta__actions .wlp-hero__ctas {
    margin-top: -0.75rem;
  }
}


/* ---- Final CTA: stacked layout — content, image, then buttons below ---- */
.wlp-final-cta .wlp-container {
  grid-template-columns: 1fr;
  justify-items: center;
  gap: 1.5rem;
  text-align: center;
}

.wlp-final-cta__content { max-width: 640px; }

.wlp-final-cta__media {
  max-width: 440px;
  width: 100%;
}

.wlp-final-cta__actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  width: 100%;
}

.wlp-final-cta__actions .wlp-hero__ctas {
  justify-content: center;
  margin-top: 0;
}

@media (min-width: 900px) {
  .wlp-final-cta .wlp-container { grid-template-columns: 1fr; }
  .wlp-final-cta__media { max-width: 520px; }
}

@media (max-width: 749px) {
  .wlp-final-cta__media { order: 0; }
  .wlp-final-cta__actions .wlp-btn { width: 100%; max-width: 340px; }
}


/* ---- Final CTA buttons: force true centering ---- */
.wlp-final-cta__actions {
  display: flex !important;
  flex-direction: column;
  align-items: center !important;
  justify-content: center;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.wlp-final-cta__actions .wlp-hero__ctas {
  display: flex !important;
  flex-wrap: wrap;
  justify-content: center !important;
  align-items: center;
  width: 100%;
  margin: 0 auto;
  padding: 0;
}

.wlp-final-cta__actions .wlp-btn {
  flex: 0 0 auto;
  margin-left: 0;
  margin-right: 0;
}

@media (min-width: 900px) {
  .wlp-final-cta .wlp-container {
    grid-template-columns: minmax(0, 1.05fr) minmax(380px, 0.95fr);
    align-items: center;
    justify-items: stretch;
    gap: 2.5rem;
    text-align: left;
  }

  .wlp-final-cta__content {
    max-width: 100%;
    text-align: left;
  }

  .wlp-final-cta__content .wlp-eyebrow,
  .wlp-final-cta__content .wlp-h2,
  .wlp-final-cta__content .wlp-lead {
    text-align: left;
    margin-left: 0;
    margin-right: 0;
  }

  .wlp-final-cta__media {
    grid-column: 2;
    grid-row: 1 / span 2;
    max-width: 100%;
    justify-self: end;
  }

  .wlp-final-cta__actions {
    align-items: flex-start !important;
    justify-content: flex-start;
    margin-left: 0;
    margin-right: 0;
    align-self: start;
    margin-top: -0.75rem;
  }

  .wlp-final-cta__actions .wlp-hero__ctas {
    justify-content: flex-start !important;
    width: auto;
    margin: 0;
    gap: 1rem;
  }

  .wlp-final-cta__actions .wlp-btn {
    min-height: 84px;
    max-width: 320px;
    padding: 1.15rem 1.75rem;
    font-size: 1.55rem;
    line-height: 1.15;
    white-space: normal;
    text-wrap: balance;
    text-align: center;
  }

  .wlp-final-cta__content .wlp-disclosure,
  .wlp-final-cta__actions .wlp-disclosure {
    text-align: left !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
}


/* ---- Gift reveal: compact on mobile only (2 per row, shorter images) ---- */
@media (max-width: 749px) {
  .wlp-gift-reveal .wlp-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
  }

  /* Shorter, wider image area so the cards stop dominating the screen */
  .wlp-gift-card .wlp-card__media { aspect-ratio: 1.55 / 1; }

  .wlp-gift-card .wlp-card__body,
  .wlp-gift-reveal .wlp-gift-card .wlp-card__body {
    padding: 0.95rem 0.8rem 1.05rem;
    gap: 0.45rem;
  }

  .wlp-gift-card .wlp-card__title,
  .wlp-gift-reveal .wlp-gift-card .wlp-card__title {
    font-size: 1.34rem !important;
    line-height: 1.22 !important;
    word-break: normal;
    overflow-wrap: normal;
    hyphens: none;
    text-wrap: balance;
  }
  .wlp-gift-card .wlp-card__text { font-size: 1.08rem; line-height: 1.7; }
  .wlp-gift-card .wlp-badge,
  .wlp-gift-reveal .wlp-gift-card .wlp-badge { font-size: 0.92rem; padding: 0.26rem 0.58rem; }
  .wlp-gift-reveal .wlp-gift-card { width: 100%; }
  .wlp-gift-reveal .wlp-gift-card .wlp-card__media img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding-top: 0.85rem;
    padding-bottom: 0;
  }

  /* Third card sits centered under the first two */
  .wlp-gift-reveal .wlp-grid > *:nth-child(3):last-child {
    grid-column: 1 / -1;
    max-width: 50%;
    margin: 0 auto;
  }

  .wlp-gift-reveal .wlp-section-header { margin-bottom: 1.25rem; }
  .wlp-gift-reveal .wlp-disclosure,
  .wlp-products .wlp-disclosure,
  .wlp-rewards .wlp-disclosure { margin-top: 1rem; }
}

@media (max-width: 380px) {
  .wlp-gift-card .wlp-card__body,
  .wlp-gift-reveal .wlp-gift-card .wlp-card__body {
    padding-left: 0.72rem;
    padding-right: 0.72rem;
  }

  .wlp-gift-card .wlp-card__title,
  .wlp-gift-reveal .wlp-gift-card .wlp-card__title {
    font-size: 1.18rem !important;
    line-height: 1.18 !important;
  }
}

/* ==========================================================================
   CANONICAL RESPONSIVE CARD LAYOUTS
   Source of truth for:
   - Your Welcome Gifts
   - Your Wellness Bundle
   - Along Your Journey
   ========================================================================== */

/* Desktop: 1024px+ */
.wlp-gift-reveal .wlp-gift-card {
  width: 94%;
  margin-left: auto;
  margin-right: auto;
}

.wlp-gift-reveal .wlp-gift-card .wlp-card__body {
  padding: 1.55rem 1.6rem 1.65rem;
  gap: 0.7rem;
}

.wlp-gift-reveal .wlp-gift-card .wlp-card__title {
  font-size: 2.2rem;
  line-height: 1.22;
  font-weight: 700;
}

.wlp-products .wlp-grid {
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.wlp-products .wlp-product-card {
  width: 92%;
  margin-left: auto;
  margin-right: auto;
}

.wlp-products .wlp-product-card .wlp-card__body {
  padding: 1.3rem 1.1rem 1.4rem;
  gap: 0.7rem;
}

.wlp-products .wlp-product-card .wlp-card__title {
  font-size: 1.9rem;
  line-height: 1.22;
}

.wlp-rewards .wlp-grid {
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.wlp-rewards .wlp-card__body {
  padding: 0.875rem 1rem 1.5rem;
  gap: 0.3rem;
}

.wlp-rewards .wlp-card__title {
  font-size: 1.85rem;
  line-height: 1.16;
}

/* Tablet: 768px–1023px */
@media (min-width: 768px) and (max-width: 1023px) {
  .wlp-gift-reveal .wlp-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 0.9rem;
  }

  .wlp-gift-reveal .wlp-gift-card {
    width: 100%;
  }

  .wlp-gift-reveal .wlp-gift-card .wlp-card__body {
    padding: 1.1rem 1rem 1.15rem;
    gap: 0.5rem;
  }

  .wlp-gift-reveal .wlp-gift-card .wlp-card__title {
    font-size: 1.35rem;
    line-height: 1.24;
  }

  .wlp-products .wlp-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .wlp-products .wlp-product-card {
    width: 100%;
  }

  .wlp-products .wlp-product-card .wlp-card__body {
    padding: 1.1rem 1rem 1.2rem;
    gap: 0.55rem;
  }

  .wlp-products .wlp-product-card__best-for {
    font-size: 1.22rem;
    line-height: 1.5;
  }

  .wlp-products .wlp-product-card .wlp-card__title {
    font-size: 1.75rem;
    line-height: 1.2;
    min-height: 2.4em;
    word-break: normal;
    overflow-wrap: normal;
    hyphens: none;
    text-wrap: balance;
  }

  .wlp-rewards .wlp-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 0.85rem;
  }

  .wlp-rewards .wlp-card__body {
    padding: 0.8rem 0.85rem 1.15rem;
  }

  .wlp-rewards .wlp-card__title {
    font-size: 1.45rem;
    line-height: 1.18;
  }
}

/* Mobile: 0px–767px */
@media (max-width: 767px) {
  .wlp-gift-reveal .wlp-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
  }

  .wlp-gift-reveal .wlp-gift-card {
    width: 100%;
  }

  .wlp-gift-reveal .wlp-gift-card .wlp-card__body {
    padding: 0.95rem 0.8rem 1.05rem;
    gap: 0.45rem;
  }

  .wlp-gift-reveal .wlp-gift-card .wlp-card__title {
    font-size: 1.12rem;
    line-height: 1.24;
    word-break: normal;
    overflow-wrap: normal;
    hyphens: none;
    text-wrap: balance;
  }

  .wlp-gift-reveal .wlp-gift-card .wlp-card__text {
    font-size: 1.08rem;
    line-height: 1.7;
  }

  .wlp-gift-reveal .wlp-gift-card .wlp-badge {
    font-size: 0.92rem;
    padding: 0.26rem 0.58rem;
  }

  .wlp-products .wlp-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
  }

  .wlp-products .wlp-product-card {
    width: 100%;
  }

  .wlp-products .wlp-product-card .wlp-card__body {
    padding: 0.85rem 0.85rem 1rem;
    gap: 0.35rem;
  }

  .wlp-products .wlp-product-card .wlp-card__title {
    font-size: 1.1rem;
    line-height: 1.3;
    word-break: normal;
    overflow-wrap: normal;
    hyphens: none;
    text-wrap: balance;
  }

  .wlp-products .wlp-product-card__best-for {
    font-size: 1.16rem;
    line-height: 1.6;
  }

  .wlp-rewards .wlp-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
  }

  .wlp-rewards .wlp-card__body {
    padding: 0.75rem 0.875rem 1.15rem;
  }

  .wlp-rewards .wlp-card__title {
    font-size: 1.75rem !important;
    line-height: 1.26 !important;
  }

  .wlp-rewards .wlp-card__text {
    font-size: 1rem;
  }

  .wlp-rewards .wlp-badge {
    font-size: 0.86rem;
  }
}

/* Small mobile */
@media (max-width: 380px) {
  .wlp-gift-reveal .wlp-gift-card .wlp-card__body {
    padding-left: 0.72rem;
    padding-right: 0.72rem;
  }

  .wlp-gift-reveal .wlp-gift-card .wlp-card__title {
    font-size: 1rem;
    line-height: 1.18;
  }

  .wlp-products .wlp-product-card .wlp-card__title {
    font-size: 0.98rem;
    line-height: 1.24;
  }
}

/* ==========================================================================
   CANONICAL RESPONSIVE SECTION LAYOUTS
   Source of truth for the remaining landing-page sections.
   ========================================================================== */

/* Desktop: 1024px+ */
.wlp-announcement {
  font-size: 1.38rem;
  line-height: 1.45;
}

.wlp-header__inner {
  min-height: 82px;
}

.wlp-header__wordmark {
  font-size: 1.25rem;
}

.wlp-hero .wlp-container {
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  gap: 2.5rem;
}

.wlp-hero__content {
  align-self: start;
  padding-top: 3rem;
  text-align: left;
}

.wlp-hero .wlp-btn--primary {
  min-height: 78px;
  min-width: 420px;
  padding: 1.35rem 4.8rem;
  font-size: 1.75rem;
}

.wlp-hero__media--float {
  max-width: none;
  margin: 0;
  padding: 3% 2% 6%;
}

.wlp-hero__media--float img {
  width: 86%;
  max-width: none;
  transform: translateY(-40px);
}

.wlp-chip {
  padding: 0.8rem 1.35rem;
  font-size: 1.26rem;
}

.wlp-how .wlp-steps {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.35rem;
}

.wlp-how .wlp-step {
  min-height: 16.5rem;
  padding: 2rem 1.9rem 1.8rem;
}

.wlp-how .wlp-step .wlp-h3 {
  font-size: clamp(1.95rem, 2.5vw, 2.55rem);
}

.wlp-how .wlp-step .wlp-card__text {
  font-size: 1.48rem;
}

.wlp-certs__strip {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.4rem;
}

.wlp-cert {
  min-height: 13rem;
  padding: 1.6rem;
}

.wlp-cert__logo {
  width: 132px;
  height: 132px;
}

.wlp-pillar {
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
}

.wlp-pillar--flip .wlp-pillar__media {
  order: 2;
}

.wlp-pillars .wlp-pillar .wlp-h3 {
  font-size: clamp(2.25rem, 3.2vw, 3rem);
}

.wlp-perks-grid {
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.wlp-perk__label {
  font-size: 1.65rem;
  line-height: 1.4;
}

.wlp-photo-wall__row {
  grid-template-columns: repeat(5, 1fr);
  gap: 1.25rem;
}

.wlp-faq__summary {
  padding: 1.125rem 1.25rem;
  font-size: 1.48rem;
  line-height: 1.5;
}

.wlp-faq__answer {
  font-size: 0.9375rem;
}

.wlp-reviews .wlp-grid {
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.wlp-reviews .wlp-review-card blockquote {
  font-size: 1.45rem;
  line-height: 1.7;
}

.wlp-final-cta .wlp-container {
  grid-template-columns: minmax(0, 1.05fr) minmax(380px, 0.95fr);
  justify-items: stretch;
  gap: 2.5rem;
  padding: clamp(2rem, 5vw, 4rem);
  text-align: left;
}

.wlp-final-cta__content,
.wlp-final-cta__content .wlp-eyebrow,
.wlp-final-cta__content .wlp-h2,
.wlp-final-cta__content .wlp-lead,
.wlp-final-cta__content .wlp-disclosure,
.wlp-final-cta__actions .wlp-disclosure {
  text-align: left !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
}

.wlp-final-cta__media {
  grid-column: 2;
  grid-row: 1 / span 2;
  max-width: 100%;
  justify-self: end;
  order: 0;
}

.wlp-final-cta__actions {
  align-items: flex-start !important;
  justify-content: flex-start;
  align-self: start;
  margin-top: -0.75rem;
}

.wlp-final-cta__actions .wlp-hero__ctas {
  justify-content: flex-start !important;
  width: auto;
  gap: 1rem;
}

.wlp-final-cta__actions .wlp-btn {
  min-height: 84px;
  max-width: 320px;
  padding: 1.15rem 1.75rem;
  font-size: 1.55rem;
  line-height: 1.15;
}

/* Tablet: 768px–1023px */
@media (min-width: 768px) and (max-width: 1023px) {
  .wlp-announcement {
    font-size: 1.28rem;
    line-height: 1.5;
  }

  .wlp-header__inner {
    min-height: 72px;
  }

  .wlp-header__wordmark {
    font-size: 1.15rem;
  }

  .wlp-hero .wlp-container {
    grid-template-columns: 1fr;
    gap: 0.15rem;
    justify-items: center;
  }

  .wlp-hero__media {
    order: -1;
  }

  .wlp-hero__content,
  .wlp-hero .wlp-eyebrow,
  .wlp-hero .wlp-h1,
  .wlp-hero .wlp-lead,
  .wlp-hero__promo-badge {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }

  .wlp-hero__content {
    align-self: center;
    padding-top: 0;
  }

  .wlp-hero__ctas {
    justify-content: center;
    margin-top: 1.25rem;
    margin-bottom: 2.4rem;
  }

  .wlp-hero__ctas .wlp-btn,
  .wlp-hero__ctas .wlp-btn--primary {
    min-height: 72px;
    min-width: 360px;
    padding: 1.2rem 2.8rem;
    font-size: 1.45rem;
  }

  .wlp-hero .wlp-lead {
    margin-bottom: 1.1rem;
  }

  .wlp-hero__media--float {
    max-width: 720px;
    margin: 0 auto;
    padding: 0 0 0.5%;
  }

  .wlp-hero__media--float img {
    width: 84%;
    max-width: 560px;
    transform: translateY(-28px);
  }

  .wlp-hero__media--float::before {
    inset: 6% 7% 15%;
  }

  .wlp-hero__media--float::after {
    inset: 10% 12% 21%;
  }

  .wlp-chip {
    padding: 0.55rem 1rem;
    font-size: 0.98rem;
  }

  .wlp-chip--top-left { top: 7%; left: 11%; }
  .wlp-chip--top-right { top: 13%; right: 12%; }
  .wlp-chip--bottom-right { bottom: 22%; right: 14%; }

  .wlp-how .wlp-steps {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
  }

  .wlp-how .wlp-step {
    min-height: 15rem;
    padding: 1.75rem 1.35rem 1.55rem;
  }

  .wlp-how .wlp-step .wlp-h3 {
    font-size: 1.85rem;
  }

  .wlp-how .wlp-step .wlp-card__text {
    font-size: 1.28rem;
  }

  .wlp-certs__strip {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
  }

  .wlp-cert {
    min-height: 11.5rem;
    padding: 1.2rem;
  }

  .wlp-cert__logo {
    width: 108px;
    height: 108px;
  }

  .wlp-pillar {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .wlp-pillar--flip .wlp-pillar__media {
    order: 0;
  }

  .wlp-perks-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .wlp-photo-wall__row {
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
  }

  .wlp-faq__summary {
    font-size: 1.26rem;
    line-height: 1.5;
  }

  .wlp-faq__answer {
    font-size: 1.02rem;
  }

  .wlp-reviews .wlp-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
  }

  .wlp-reviews .wlp-review-card blockquote {
    font-size: 1.18rem;
  }

  .wlp-final-cta .wlp-container {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 1.5rem;
    text-align: center;
  }

  .wlp-final-cta__content,
  .wlp-final-cta__content .wlp-eyebrow,
  .wlp-final-cta__content .wlp-h2,
  .wlp-final-cta__content .wlp-lead,
  .wlp-final-cta__content .wlp-disclosure,
  .wlp-final-cta__actions .wlp-disclosure {
    text-align: center !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .wlp-final-cta__media {
    grid-column: auto;
    grid-row: auto;
    max-width: 520px;
    justify-self: center;
  }

  .wlp-final-cta__actions {
    align-items: center !important;
    margin-top: 0;
  }

  .wlp-final-cta__actions .wlp-hero__ctas {
    justify-content: center !important;
    width: 100%;
  }
}

/* Mobile: 0px–767px */
@media (max-width: 767px) {
  .wlp-final-cta .wlp-container {
    grid-template-columns: 1fr !important;
    grid-auto-flow: row !important;
  }

  .wlp-final-cta .wlp-container > .wlp-final-cta__content,
  .wlp-final-cta .wlp-container > .wlp-final-cta__media,
  .wlp-final-cta .wlp-container > .wlp-final-cta__actions {
    grid-column: 1 !important;
    width: 100% !important;
  }

  .wlp-announcement {
    font-size: 1.18rem;
    line-height: 1.6;
  }

  .wlp-header__inner {
    min-height: auto;
    padding-top: 0.35rem;
    padding-bottom: 0.35rem;
    justify-content: center;
  }

  .wlp-header__wordmark {
    font-size: 1.05rem;
  }

  .wlp-header--center .wlp-header__inner {
    grid-template-columns: 1fr;
    justify-items: center;
  }

  .wlp-header--center .wlp-header__logo-link {
    grid-column: 1;
    justify-self: center;
    margin-left: auto;
    margin-right: auto;
  }

  .wlp-header__cta {
    display: none;
  }

  .wlp-hero .wlp-container {
    grid-template-columns: 1fr;
    gap: 0.25rem;
    justify-items: center;
    width: 100%;
    overflow: visible;
  }

  .wlp-hero__media {
    order: -1;
  }

  .wlp-hero__content {
    align-self: center;
    padding-top: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-top: -0.2rem;
    max-width: 100%;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    overflow: visible;
  }

  .wlp-hero .wlp-eyebrow,
  .wlp-hero .wlp-h1,
  .wlp-hero .wlp-lead,
  .wlp-hero__promo-badge {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }

  .wlp-hero .wlp-lead {
    font-size: 1.24rem;
    line-height: 1.7;
    max-width: 24.5rem;
    margin-bottom: 1.4rem;
  }

  .wlp-hero__ctas {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 270px;
    margin-top: 0.8rem;
    margin-bottom: 0.4rem;
    margin-left: auto;
    margin-right: auto;
  }

  .wlp-hero__ctas .wlp-btn {
    width: 100%;
    max-width: 270px;
    min-width: 0;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
  }

  .wlp-hero__ctas .wlp-btn--primary {
    min-height: 56px;
    min-width: 0;
    padding: 0.78rem 1.2rem;
    font-size: 1.08rem;
    font-weight: 700;
    border-radius: 999px;
  }

  .wlp-hero__media--float {
    width: 100%;
    max-width: 430px;
    margin: 0 auto -0.35rem;
    padding: 0 0 2%;
    overflow: visible;
  }

  .wlp-hero__media--float img {
    width: 100%;
    max-width: 430px;
    margin-left: auto;
    margin-right: auto;
    transform: translateY(-10px);
  }

  .wlp-hero__media--float::before {
    inset: 6% 5% 15%;
  }

  .wlp-hero__media--float::after {
    inset: 5% 8% 18%;
  }

  .wlp-hero__media--float::after {
    animation: wlp-spin-mobile 70s linear infinite;
  }

  .wlp-chip {
    display: inline-flex;
    visibility: visible;
    opacity: 1;
    z-index: 5;
    font-size: 0.92rem;
    padding: 0.42rem 0.82rem;
    white-space: nowrap;
  }

  .wlp-hero__media,
  .wlp-hero__media--float {
    position: relative;
    z-index: 1;
  }

  .wlp-chip--top-left { top: 3%; left: 1%; }
  .wlp-chip--top-right { top: 8%; right: 1%; }
  .wlp-chip--bottom-right { bottom: 16%; right: 3%; }

  .wlp-hero .wlp-h1 {
    font-size: clamp(2.38rem, 9.9vw, 2.7rem);
    line-height: 1.01;
    text-wrap: auto;
    margin-bottom: 0.85rem;
    max-width: 100%;
    width: 100%;
    text-align: center;
  }

  .wlp-hero__line1 {
    display: block;
    white-space: nowrap;
    text-align: inherit;
    max-width: 100%;
  }

  .wlp-hero__line2 {
    display: block;
    text-align: inherit;
  }

  .wlp-hero .wlp-eyebrow {
    font-size: 1.5rem;
    letter-spacing: 0.12em;
    margin-bottom: 0.8rem;
    line-height: 1.22;
    text-align: center;
  }

  .wlp-hero__eyebrow-line {
    display: block;
  }

  .wlp-how .wlp-section-header {
    margin-bottom: 2.2rem;
  }

  .wlp-how .wlp-steps {
    grid-template-columns: 1fr;
    gap: 0.9rem;
  }

  .wlp-how .wlp-step {
    min-height: auto;
    padding: 1.5rem 1.15rem;
    border-radius: 1.4rem;
  }

  .wlp-how .wlp-step__number {
    width: 3.8rem;
    height: 3.8rem;
    font-size: 1.85rem;
  }

  .wlp-how .wlp-step .wlp-h3 {
    font-size: 1.75rem;
  }

  .wlp-how .wlp-step .wlp-card__text {
    font-size: 1.32rem;
    line-height: 1.65;
  }

  .wlp-certs__strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.9rem;
  }

  .wlp-cert {
    min-height: 10.5rem;
    padding: 1.1rem;
    border-radius: 1.5rem;
  }

  .wlp-cert__logo {
    width: 100px;
    height: 100px;
  }

  .wlp-pillar {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .wlp-pillar--flip .wlp-pillar__media {
    order: 0;
  }

  .wlp-pillar__media img {
    aspect-ratio: 4 / 3;
  }

  .wlp-pillars .wlp-pillar .wlp-h3 {
    font-size: 1.8rem;
    margin-bottom: 0.75rem;
  }

  .wlp-pillars .wlp-pillar .wlp-lead {
    font-size: 1.42rem;
    line-height: 1.75;
  }

  .wlp-perks-grid {
    grid-template-columns: 1fr;
  }

  .wlp-photo-wall__row {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
  }

  .wlp-faq__summary {
    padding: 1rem;
    font-size: 1.42rem;
    line-height: 1.58;
  }

  .wlp-faq__answer {
    font-size: 1rem;
    line-height: 1.65;
  }

  .wlp-reviews .wlp-grid {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: 78%;
    grid-template-columns: none;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 0.75rem;
    padding-bottom: 0.5rem;
  }

  .wlp-reviews .wlp-grid > * {
    scroll-snap-align: center;
  }

  .wlp-reviews .wlp-review-card blockquote {
    font-size: 1.24rem;
    line-height: 1.65;
  }

  .wlp-final-cta .wlp-container {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 0.75rem;
    padding: 2.2rem 1.15rem 1.35rem;
    text-align: center;
  }

  .wlp-final-cta__content {
    width: 100%;
    max-width: 26rem;
    margin-left: auto;
    margin-right: auto;
    text-align: center !important;
  }

  .wlp-final-cta__content,
  .wlp-final-cta__content .wlp-eyebrow,
  .wlp-final-cta__content .wlp-h2,
  .wlp-final-cta__content .wlp-lead,
  .wlp-final-cta__content .wlp-disclosure,
  .wlp-final-cta__actions .wlp-disclosure {
    text-align: center !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .wlp-final-cta__content .wlp-eyebrow,
  .wlp-final-cta__content .wlp-h2,
  .wlp-final-cta__content .wlp-lead {
    width: 100%;
  }

  .wlp-final-cta__media {
    order: 2;
    max-width: 250px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: -1rem;
    justify-self: center;
  }

  .wlp-final-cta__actions {
    order: 3;
    align-items: center !important;
    gap: 0;
    margin-top: 1.5rem;
    padding-bottom: 1.1rem;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  .wlp-final-cta__actions .wlp-hero__ctas {
    justify-content: center !important;
    margin-top: -0.75rem;
    width: 100%;
    align-items: center;
  }

  .wlp-final-cta__actions .wlp-btn {
    width: 100%;
    max-width: 340px;
    margin-left: auto;
    margin-right: auto;
  }
}

/* Very small mobile */
@media (max-width: 380px) {
  .wlp-photo-wall__row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767px) {
  .wlp-final-cta .wlp-container {
    display: grid !important;
    grid-template-columns: 1fr !important;
    justify-items: center !important;
    text-align: center !important;
  }

  .wlp-final-cta .wlp-container > * {
    width: 100% !important;
    justify-self: center !important;
  }

  .wlp-final-cta__content,
  .wlp-final-cta__content .wlp-eyebrow,
  .wlp-final-cta__content .wlp-h2,
  .wlp-final-cta__content .wlp-lead,
  .wlp-final-cta__actions,
  .wlp-final-cta__actions .wlp-hero__ctas,
  .wlp-final-cta__actions .wlp-disclosure {
    text-align: center !important;
    justify-content: center !important;
    align-items: center !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .wlp-final-cta__content,
  .wlp-final-cta__actions {
    width: 100% !important;
    max-width: 26rem !important;
  }

  .wlp-final-cta__content .wlp-eyebrow,
  .wlp-final-cta__content .wlp-h2,
  .wlp-final-cta__content .wlp-lead {
    text-align: center !important;
    width: 100% !important;
  }

  .wlp-final-cta__media {
    order: 2 !important;
    display: block !important;
    width: 100% !important;
    max-width: 250px !important;
    justify-self: center !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .wlp-final-cta__actions {
    order: 3 !important;
    display: flex !important;
    flex-direction: column !important;
  }

  .wlp-final-cta__actions .wlp-hero__ctas {
    display: flex !important;
    flex-direction: column !important;
    width: 100% !important;
  }

  .wlp-final-cta__actions .wlp-btn,
  .wlp-final-cta__actions .wlp-btn--full-mobile {
    display: flex !important;
    width: 100% !important;
    max-width: 340px !important;
    min-height: 60px !important;
    padding: 0.95rem 1.25rem !important;
    font-size: 1.18rem !important;
    line-height: 1.2 !important;
    justify-content: center !important;
    text-align: center !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .wlp-final-cta__actions .wlp-disclosure,
  .wlp-final-cta__actions .wlp-disclosure[style] {
    text-align: center !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }
}
