/**
 * Landing page styles — lp.css
 * All classes are prefixed with `lp-` to avoid conflicts with the parent theme.
 * Uses CSS variables defined in hypro-typography.css and hypro-fonts.css.
 *
 * Variables available (from parent files):
 *   --hypro-blue         #1526BE
 *   --hypro-blue-dark    #0B1590
 *   --hypro-off-white    #F4F3EF
 *   --hypro-near-black   #0C0C0A
 *   --hypro-lime         oklch(82% 0.27 130)
 *   --hypro-muted        #6B6B68
 *   --hypro-font-display Yumex
 *   --hypro-font-ui      DM Sans
 *   --hypro-font-section Yumex
 *
 * @package Hypro_Child
 */

/* ==========================================================================
   1. Reset / base overrides for the LP main wrapper
   ========================================================================== */

.lp {
  font-family: var(--hypro-font-ui, 'DM Sans', sans-serif);
  color: var(--hypro-near-black, #0c0c0a);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Shared inner container */
.lp-inner {
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: 24px;
}

/* ==========================================================================
   2. Buttons
   ========================================================================== */

.lp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 100px;
  font-family: var(--hypro-font-ui, 'DM Sans', sans-serif);
  font-size: 1rem;
  font-weight: 600;
  line-height: 1;
  text-decoration: none;
  cursor: pointer;
  border: 2px solid transparent;
  transition: background-color 0.2s ease, color 0.2s ease,
    border-color 0.2s ease, transform 0.15s ease;
  white-space: nowrap;
}

.lp-btn:hover {
  transform: translateY(-1px);
}

.lp-btn:active {
  transform: translateY(0);
}

/* White button — white bg, blue text */
.lp-btn--white {
  background-color: #fff;
  color: var(--hypro-blue, #1526be);
  border-color: #fff;
}

.lp-btn--white:hover {
  background-color: var(--hypro-off-white, #f4f3ef);
  border-color: var(--hypro-off-white, #f4f3ef);
  color: var(--hypro-blue, #1526be);
}

/* Ghost button — transparent, white border + text */
.lp-btn--ghost {
  background-color: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.6);
}

.lp-btn--ghost:hover {
  background-color: rgba(255, 255, 255, 0.1);
  border-color: #fff;
  color: #fff;
}

/* Blue button — blue bg, white text */
.lp-btn--blue {
  background-color: var(--hypro-blue, #1526be);
  color: #fff;
  border-color: var(--hypro-blue, #1526be);
}

.lp-btn--blue:hover {
  background-color: var(--hypro-blue-dark, #0b1590);
  border-color: var(--hypro-blue-dark, #0b1590);
  color: #fff;
}

/* ==========================================================================
   3. Shared eyebrow label
   ========================================================================== */

.lp-eyebrow {
  font-family: var(--hypro-font-ui, 'DM Sans', sans-serif);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  margin: 0 0 16px;
}

.lp-eyebrow--dark {
  color: var(--hypro-muted, #6b6b68);
}

/* ==========================================================================
   4. Ticker Strip
   ========================================================================== */

@keyframes lp-ticker-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(calc(-100% / 3));
  }
}

.lp-ticker {
  overflow: hidden;
  background-color: var(--hypro-near-black, #0c0c0a);
  padding: 12px 0;
}

.lp-ticker__track {
  display: flex;
  width: max-content;
  animation: lp-ticker-scroll 24s linear infinite;
  will-change: transform;
}

.lp-ticker__track.is-paused {
  animation-play-state: paused;
}

@media (hover: hover) {
  .lp-ticker:hover .lp-ticker__track {
    animation-play-state: paused;
  }
}

.lp-ticker__item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding-inline: 24px;
  font-family: var(--hypro-font-display, 'DM Sans', sans-serif);
  font-size: 1.5rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  white-space: nowrap;
}

.lp-ticker__drop {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
}

/* ==========================================================================
   5. Hero Section
   ========================================================================== */

.lp-hero {
  background-color: var(--hypro-blue, #1526be);
  color: #fff;
  overflow: hidden;
  position: relative;
}

.lp-hero__inner {
  display: block;
  padding-top: 140px; /* 40px announce bar + 68px nav + 32px breathing room */
  padding-bottom: 100px;
}

body.announce-dismissed .lp-hero__inner {
  padding-top: 100px;
}

.lp-hero__text {
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 52%;
  position: relative;
  z-index: 1;
}

.lp-hero__eyebrow {
  font-family: var(--hypro-font-ui, 'DM Sans', sans-serif);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #fff;
  margin: 0;
}

.lp-hero__heading {
  font-family: var(--hypro-font-display, 'Yumex', serif);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  line-height: 1.1;
  color: #fff;
  margin: 0;
}

.lp-hero__subtext {
  font-size: 1.0625rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
  max-width: 520px;
}

.lp-hero__stats {
  display: flex;
  gap: 8px;
  background: transparent;
  border-radius: 0;
  overflow: visible;
  width: fit-content;
  flex-wrap: wrap;
}

.lp-hero__stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 14px 24px;
  gap: 4px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 12px;
}

.lp-hero__stat + .lp-hero__stat {
  border-left: 1px solid rgba(255, 255, 255, 0.22);
}

.lp-hero__stat-number {
  font-family: var(--hypro-font-display, 'Yumex', serif);
  font-size: 1.5rem;
  font-weight: 800;
  line-height: 1;
  color: #fff;
}

.lp-hero__stat-label {
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.8);
  opacity: 1;
}

.lp-hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.lp-hero__proof {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.65);
  margin: 0;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Product image slot — background-image so the photo is never cropped */
.lp-hero__image-slot {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: calc(100% + 250px) bottom;
  pointer-events: none;
}

.lp-hero__floating-can {
  display: none;
}

.lp-hero__image-placeholder {
  width: 100%;
  aspect-ratio: 3 / 4;
  max-width: 360px;
  background: rgba(255, 255, 255, 0.08);
  border: 2px dashed rgba(255, 255, 255, 0.25);
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.875rem;
}

/* ==========================================================================
   6. Benefits / Stats Section
   ========================================================================== */

.lp-benefits {
  background: linear-gradient(135deg, #0b1590 0%, #1526be 60%, #0e1a8e 100%);
  color: #fff;
  padding: 100px 24px;
}

.lp-benefits__header {
  text-align: center;
  margin-bottom: 64px;
}

.lp-benefits__heading {
  font-family: var(--hypro-font-display, 'Yumex', serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.05;
  margin: 12px 0 16px;
}

.lp-benefits__subtext {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
}

/* 4-column stats grid */
.lp-benefits__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  border-left: 1px solid rgba(255, 255, 255, 0.15);
  margin-bottom: 48px;
}

.lp-benefits__stat {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 40px 32px;
  border-right: 1px solid rgba(255, 255, 255, 0.15);
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.lp-benefits__number {
  font-family: var(--hypro-font-display, 'Yumex', serif);
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 700;
  line-height: 1;
  color: #fff;
}

.lp-benefits__stat {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.lp-benefits__stat.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.lp-benefits__label {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
}

.lp-benefits__desc {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.5;
}

.lp-benefits__cta {
  display: flex;
  justify-content: center;
  padding-top: 48px;
}

/* ==========================================================================
   7. Why Section
   ========================================================================== */

.lp-why {
  background-color: var(--hypro-near-black, #0c0c0a);
  color: #fff;
  padding: 100px 24px;
}

.lp-why__inner {
  max-width: 860px;
}

.lp-why__header {
  margin-bottom: 56px;
}

.lp-why__heading {
  font-family: var(--hypro-font-display, 'Yumex', serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  color: #fff;
  margin: 0 0 20px;
}

.lp-why__subtext {
  font-size: 1.0625rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
}

.lp-why__checklist {
  list-style: none;
  margin: 0 0 48px;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px 40px;
}

.lp-why__check-item {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 1.0625rem;
  font-weight: 500;
  color: #fff;
  line-height: 1.4;
}

.lp-why__check-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
}

.lp-why__cta {
  text-align: center;
}

/* ==========================================================================
   8. Clear Protein Section
   ========================================================================== */

.lp-cp {
  background-color: #fff;
  padding-block: 100px;
  overflow: hidden;
}

.lp-cp__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.lp-cp__image-col {
  position: relative;
}

.lp-cp__image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 24px;
  object-fit: cover;
}

.lp-cp__text-col {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.lp-cp__heading {
  font-family: var(--hypro-font-display, 'Yumex', serif);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--hypro-near-black, #0c0c0a);
  margin: 0;
}

.lp-cp__block {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.lp-cp__block--tech {
  padding-top: 24px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.lp-cp__block-label {
  font-family: var(--hypro-font-ui, 'DM Sans', sans-serif);
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--hypro-blue, #1526be);
  margin: 0;
}

.lp-cp__block-text {
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--hypro-near-black, #0c0c0a);
  margin: 0;
}


.lp-cp__cta {
  align-self: flex-start;
}

@media (max-width: 767px) {
  .lp-cp {
    padding-block: 60px;
  }

  .lp-cp__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .lp-cp__image {
    max-height: 420px;
    object-fit: cover;
    object-position: center top;
  }
}

/* ==========================================================================
   8b. Contains Section (¿Qué contiene cada lata?)
   ========================================================================== */

.lp-co {
  background-color: var(--hypro-off-white, #f4f3ef);
  padding-block: 100px;
  overflow: hidden;
}

.lp-co__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.lp-co__text-col {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.lp-co__heading {
  font-family: var(--hypro-font-display, 'Yumex', serif);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--hypro-near-black, #0c0c0a);
  margin: 0;
}

.lp-co__items {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.lp-co__item {
  display: flex;
  gap: 20px;
  padding: 24px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.lp-co__item:first-child {
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.lp-co__item-num {
  font-family: var(--hypro-font-display, 'Yumex', serif);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--hypro-blue, #1526be);
  opacity: 0.4;
  flex-shrink: 0;
  line-height: 1.3;
  width: 28px;
}

.lp-co__item-body {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.lp-co__item-title {
  font-family: var(--hypro-font-ui, 'DM Sans', sans-serif);
  font-size: 1rem;
  font-weight: 700;
  color: var(--hypro-near-black, #0c0c0a);
  margin: 0;
  line-height: 1.3;
}

.lp-co__item-text {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--hypro-muted, #6b6b68);
  margin: 0;
}

.lp-co__image-col {
  position: relative;
}

.lp-co__image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 24px;
  object-fit: cover;
}

@media (max-width: 767px) {
  .lp-co {
    padding-block: 60px;
  }

  .lp-co__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .lp-co__image-col {
    order: -1;
  }

  .lp-co__image {
    max-height: 420px;
    object-fit: cover;
    object-position: center top;
  }
}

/* ==========================================================================
   9. When Section
   ========================================================================== */

.lp-when {
  background-color: #fff;
  padding: 100px 24px;
}

.lp-when__inner {
  display: grid;
  grid-template-columns: 2fr 3fr;
  gap: 80px;
  align-items: start;
}

.lp-when__left {
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: sticky;
  top: 80px;
}

.lp-when__heading {
  font-family: var(--hypro-font-display, 'Yumex', serif);
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--hypro-near-black, #0c0c0a);
  margin: 0;
}

.lp-when__subtext {
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--hypro-muted, #6b6b68);
  margin: 0;
}

/* 2×3 card grid */
.lp-when__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.lp-when__card {
  background-color: var(--hypro-off-white, #f4f3ef);
  border-radius: 16px;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.lp-when__card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.lp-when__card-emoji {
  font-size: 2rem;
  line-height: 1;
}

.lp-when__card-title {
  font-family: var(--hypro-font-ui, 'DM Sans', sans-serif);
  font-size: 1rem;
  font-weight: 700;
  color: var(--hypro-near-black, #0c0c0a);
  margin: 0;
}

.lp-when__card-desc {
  font-size: 0.875rem;
  line-height: 1.55;
  color: var(--hypro-muted, #6b6b68);
  margin: 0;
}

/* ==========================================================================
   9. Power For All Section
   ========================================================================== */

#lp-pfa {
  height: 420vh;
  position: relative;
}

.lp-pfa__viewport {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
  background: #0c0c0a;
}

/* ── Strips ── */
.lp-pfa__strips {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.lp-pfa__strip {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 40vw; /* 32vw + 8vw bleed for skew */
  transform-origin: bottom center;
  overflow: hidden;
  will-change: transform;
}

.lp-pfa__strip:not(:first-child) {
  box-shadow: -8px 0 32px rgba(0, 0, 0, 0.5);
}

.lp-pfa__strip-inner {
  position: absolute;
  inset: -5% -12%;
  transform: skewX(12deg);
}

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

.lp-pfa__strip-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.15) 0%,
    rgba(0, 0, 0, 0.45) 100%
  );
}

.lp-pfa__strip-label {
  position: absolute;
  bottom: 28px;
  left: 16%;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: rgba(255, 255, 255, 0.7);
  font-family: 'DM Sans', sans-serif;
  text-transform: uppercase;
  display: block;
  opacity: 0;
}

.lp-pfa__divider {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 2px;
  background: rgba(255, 255, 255, 0.12);
  transform: skewX(-12deg);
  z-index: 10;
  opacity: 0;
  pointer-events: none;
}

.lp-pfa__hint {
  position: absolute;
  bottom: 44px;
  left: 0;
  right: 0;
  text-align: center;
  z-index: 20;
  pointer-events: none;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: rgba(255, 255, 255, 0.4);
  font-family: 'DM Sans', sans-serif;
  text-transform: uppercase;
  margin: 0;
  opacity: 0;
}

/* ── Manifesto ── */
.lp-pfa__manifesto {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  opacity: 0;
  pointer-events: none;
  z-index: 30;
}

.lp-pfa__glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(
    ellipse 55% 55% at 50% 50%,
    rgba(21, 38, 190, 0) 0%,
    transparent 70%
  );
}

.lp-pfa__logo-wrap {
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
  transform-origin: center;
  will-change: transform;
}

.lp-pfa__logo-img {
  height: clamp(60px, 8vw, 110px);
  width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.96;
  display: block;
}

.lp-pfa__taglines {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  position: relative;
  z-index: 1;
}

.lp-pfa__tagline {
  font-size: clamp(17px, 2vw, 26px);
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  font-style: italic;
  letter-spacing: 0.01em;
  opacity: 0;
  margin: 0;
  will-change: transform, opacity;
}

.lp-pfa__rule {
  width: 0;
  height: 1px;
  background: rgba(255, 255, 255, 0.15);
  margin: 20px 0;
  position: relative;
  z-index: 1;
}

.lp-pfa__copy {
  font-size: clamp(14px, 1.3vw, 16px);
  color: rgba(255, 255, 255, 0.42);
  font-family: 'DM Sans', sans-serif;
  text-align: center;
  max-width: 460px;
  line-height: 1.8;
  opacity: 0;
  margin: 0;
  position: relative;
  z-index: 1;
  will-change: transform, opacity;
}

.lp-pfa__cta {
  margin-top: 20px;
  display: inline-block;
  background: #fff;
  color: #0c0c0a;
  padding: 13px 34px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 700;
  font-family: 'DM Sans', sans-serif;
  text-decoration: none;
  letter-spacing: 0.02em;
  opacity: 0;
  position: relative;
  z-index: 1;
  will-change: transform, opacity;
  transition: background 0.2s, color 0.2s, transform 0.2s;
}

.lp-pfa__cta:hover {
  background: #1526be;
  color: #fff;
}

/* ==========================================================================
   10. FAQ Section
   ========================================================================== */

.lp-faq {
  background-color: #ffffff;
  padding: 100px 24px;
}

.lp-faq__inner {
  max-width: 760px;
}

.lp-faq__header {
  margin-bottom: 56px;
}

.lp-faq__heading {
  font-family: var(--hypro-font-display, 'Yumex', serif);
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 700;
  color: var(--hypro-near-black, #0c0c0a);
  margin: 0;
}

.lp-faq__list {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.lp-faq__item {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.lp-faq__trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  padding: 24px 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  color: var(--hypro-near-black, #0c0c0a);
}

.lp-faq__trigger:hover .lp-faq__q {
  color: var(--hypro-blue, #1526be);
}

.lp-faq__q {
  font-family: var(--hypro-font-ui, 'DM Sans', sans-serif);
  font-size: 1.0625rem;
  font-weight: 600;
  line-height: 1.4;
  transition: color 0.2s ease;
}

.lp-faq__icon {
  flex-shrink: 0;
  display: flex;
  color: var(--hypro-muted, #6b6b68);
  transition: transform 0.3s ease, color 0.2s ease;
}

.lp-faq__trigger.is-open .lp-faq__icon {
  transform: rotate(180deg);
  color: var(--hypro-blue, #1526be);
}

.lp-faq__trigger.is-open .lp-faq__q {
  color: var(--hypro-blue, #1526be);
}

/* Panel: max-height:0 hides content — no hidden attribute needed */
.lp-faq__panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.lp-faq__a {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--hypro-muted, #6b6b68);
  margin: 0;
  padding-bottom: 24px;
}

.lp-faq__footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  margin-top: 64px;
  text-align: center;
}

.lp-faq__cta-pre {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--hypro-near-black, #0c0c0a);
  margin: 0;
}

/* ==========================================================================
   10. Shop Section
   ========================================================================== */

.lp-shop {
  background-color: var(--hypro-off-white, #f4f3ef);
  padding: 100px 24px;
}

.lp-shop__header {
  text-align: center;
  margin-bottom: 64px;
}

.lp-shop__heading {
  font-family: var(--hypro-font-display, 'Yumex', serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--hypro-near-black, #0c0c0a);
  margin: 0 0 16px;
}

.lp-shop__subtext {
  font-size: 1.0625rem;
  color: var(--hypro-muted, #6b6b68);
  margin: 0;
}

/* 3-column flavor grid */
.lp-shop__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 420px));
  gap: 24px;
  margin-bottom: 48px;
  justify-content: center;
}

.lp-shop__card {
  background-color: #fff;
  border-radius: 24px;
  padding: 36px 28px 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  border: 2px solid rgba(0, 0, 0, 0.07);
  position: relative;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.lp-shop__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.1);
}

.lp-shop__card-overlay {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  z-index: 0;
}

.lp-shop__card--featured {
  background-color: var(--hypro-blue, #1526be);
  border-color: var(--hypro-blue, #1526be);
  color: #fff;
}

.lp-shop__badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--hypro-lime, oklch(82% 0.27 130));
  color: var(--hypro-near-black, #0c0c0a);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 100px;
  white-space: nowrap;
}

.lp-shop__card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 4px;
}

.lp-shop__can-image {
  display: block;
  width: 100%;
  max-width: 180px;
  height: 180px;
  object-fit: contain;
  margin: 0 auto;
  filter: drop-shadow(0 8px 24px rgba(0, 0, 0, 0.2));
}

.lp-shop__card--featured .lp-shop__can-image {
  filter: drop-shadow(0 8px 24px rgba(0, 0, 0, 0.4));
}

.lp-shop__emoji {
  font-size: 2.25rem;
  line-height: 1;
}

.lp-shop__color-dot {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.lp-shop__name {
  font-family: var(--hypro-font-display, 'Yumex', serif);
  font-size: 1.375rem;
  font-weight: 700;
  margin: 0;
  color: inherit;
}

.lp-shop__desc {
  font-size: 0.9rem;
  line-height: 1.6;
  margin: 0;
  flex-grow: 1;
  color: inherit;
  opacity: 0.75;
}

.lp-shop__card--featured .lp-shop__desc {
  opacity: 0.8;
}

.lp-shop__card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  position: relative;
  z-index: 1;
}

.lp-shop__card--featured .lp-shop__card-footer {
  border-top-color: rgba(255, 255, 255, 0.2);
}

.lp-shop__price {
  font-family: var(--hypro-font-display, 'Yumex', serif);
  font-size: 1.375rem;
  font-weight: 700;
  color: inherit;
}

/* Pack CTA row */
.lp-shop__pack {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
  background-color: #fff;
  border-radius: 20px;
  padding: 36px 40px;
  border: 2px solid rgba(0, 0, 0, 0.07);
}

.lp-shop__pack-heading {
  font-family: var(--hypro-font-display, 'Yumex', serif);
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--hypro-near-black, #0c0c0a);
  margin: 0 0 8px;
}

.lp-shop__pack-desc {
  font-size: 0.9rem;
  color: var(--hypro-muted, #6b6b68);
  margin: 0;
}

.lp-shop__pack-action {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-shrink: 0;
}

.lp-shop__pack-price {
  font-family: var(--hypro-font-display, 'Yumex', serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--hypro-near-black, #0c0c0a);
}

/* ==========================================================================
   11. Social (TikTok) Section
   ========================================================================== */

.lp-social {
  background-color: var(--hypro-near-black, #0c0c0a);
  padding-block: 80px 0;
  overflow: hidden;
}

.lp-social__header {
  text-align: center;
  margin-bottom: 48px;
}

.lp-social__header .lp-eyebrow--dark {
  color: rgba(255, 255, 255, 0.45);
}

.lp-social__heading {
  font-family: var(--hypro-font-display, 'Yumex', serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.1;
  color: #fff;
  margin: 12px 0 0;
}

.lp-social__subtext {
  font-size: 1.0625rem;
  color: rgba(255, 255, 255, 0.55);
  margin: 16px auto 0;
  max-width: 480px;
}

.lp-social__track-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.lp-social__track-wrap::-webkit-scrollbar {
  display: none;
}

.lp-social__track {
  display: flex;
  gap: 20px;
  padding-inline: 24px;
  width: max-content;
}

@media (min-width: 768px) {
  .lp-social__track-wrap {
    overflow-x: visible;
  }

  .lp-social__track {
    width: auto;
    justify-content: center;
    flex-wrap: wrap;
    padding-inline: 0;
  }
}

.lp-social__card {
  flex-shrink: 0;
  width: 220px;
  aspect-ratio: 9 / 16;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  background: var(--hypro-near-black, #0c0c0a);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.lp-social__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.2);
}

.lp-social__cover {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, #0c0c0a 0%, #1526be 100%);
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Dim thumbnail so the play button stays readable */
.lp-social__card.has-thumb .lp-social__cover::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.3);
  transition: background 0.2s ease;
}

.lp-social__card.has-thumb:hover .lp-social__cover::after {
  background: rgba(0, 0, 0, 0.15);
}

.lp-social__play {
  position: relative;
  z-index: 1;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  border: 2px solid rgba(255, 255, 255, 0.7);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease, background 0.2s ease;
}

.lp-social__card:hover .lp-social__play {
  transform: scale(1.1);
  background: rgba(255, 255, 255, 0.3);
}

.lp-social__play svg {
  width: 24px;
  height: 24px;
  margin-left: 3px;
}

/* ---------- Modal ---------- */

.lp-social-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

.lp-social-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.lp-social-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
}

.lp-social-modal__inner {
  position: relative;
  z-index: 1;
  height: 90vh;
  aspect-ratio: 9 / 16;
  max-width: calc(100vw - 32px);
  border-radius: 16px;
  overflow: hidden;
  background: #000;
  transform: scale(0.95);
  transition: transform 0.25s ease;
}

.lp-social-modal.is-open .lp-social-modal__inner {
  transform: scale(1);
}

.lp-social-modal__iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

.lp-social-modal__close {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.15s ease;
  padding: 0;
}

.lp-social-modal__close:hover {
  background: rgba(0, 0, 0, 0.85);
}

.lp-social-modal__close svg {
  width: 18px;
  height: 18px;
}

/* ---------- Reviews Carousel ---------- */

.lp-reviews {
  background-color: var(--hypro-near-black, #0c0c0a);
  padding-block: 80px;
}

.lp-reviews__inner {
  text-align: center;
}

.lp-reviews__slider {
  position: relative;
  min-height: 260px;
}

.lp-reviews__slide {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.lp-reviews__slide.is-active {
  position: relative;
  opacity: 1;
  pointer-events: auto;
}

.lp-reviews__stars {
  display: flex;
  gap: 6px;
  justify-content: center;
  margin-bottom: 28px;
}

.lp-reviews__stars svg {
  width: 24px;
  height: 24px;
  fill: #F5C842;
}

.lp-reviews__quote {
  margin: 0;
  max-width: 780px;
  position: relative;
}

.lp-reviews__quote::before {
  content: '\201C';
  position: absolute;
  top: -20px;
  left: -24px;
  font-size: 6rem;
  line-height: 1;
  color: rgba(255, 255, 255, 0.08);
  font-family: Georgia, serif;
  pointer-events: none;
}

.lp-reviews__quote p {
  font-family: var(--hypro-font-display, 'Yumex', serif);
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  font-weight: 700;
  line-height: 1.35;
  color: #fff;
  margin: 0 0 24px;
}

.lp-reviews__author {
  font-family: var(--hypro-font-ui, 'DM Sans', sans-serif);
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.45);
  font-style: normal;
}

.lp-reviews__controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
}

.lp-reviews__arrow {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, 0.2);
  background: transparent;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: border-color 0.15s ease, background 0.15s ease;
  padding: 0;
}

.lp-reviews__arrow:hover {
  border-color: rgba(255, 255, 255, 0.6);
  background: rgba(255, 255, 255, 0.05);
}

.lp-reviews__arrow svg {
  width: 18px;
  height: 18px;
}

.lp-reviews__dots {
  display: flex;
  gap: 8px;
  align-items: center;
}

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

.lp-reviews__dot.is-active {
  background: #fff;
  transform: scale(1.3);
}

/* ==========================================================================
   12. Footer
   ========================================================================== */

.lp-footer {
  background-color: var(--hypro-near-black, #0c0c0a);
  color: rgba(255, 255, 255, 0.65);
}

.lp-footer__top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.4fr;
  gap: 64px;
  padding-top: 80px;
  padding-bottom: 64px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.lp-footer__logo {
  display: inline-block;
  text-decoration: none;
  margin-bottom: 16px;
}

.lp-footer__logo svg {
  height: 24px;
  width: auto;
  display: block;
  color: #fff;
}

.lp-footer__tagline {
  font-size: 0.875rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.5);
  margin: 0 0 24px;
  max-width: 280px;
}

.lp-footer__social {
  display: flex;
  gap: 12px;
}

.lp-footer__social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.65);
  text-decoration: none;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.lp-footer__social-link:hover {
  background-color: var(--hypro-blue, #1526be);
  color: #fff;
}

.lp-footer__col-heading {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
  margin: 0 0 20px;
}

.lp-footer__nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.lp-footer__nav-link {
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: color 0.2s ease;
}

.lp-footer__nav-link:hover {
  color: #fff;
}

.lp-footer__newsletter-desc {
  font-size: 0.875rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.5);
  margin: 0 0 20px;
}

.lp-footer__newsletter-form {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 10px;
}

.lp-footer__newsletter-input {
  background-color: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 100px;
  padding: 12px 20px;
  font-family: var(--hypro-font-ui, 'DM Sans', sans-serif);
  font-size: 0.9375rem;
  color: #fff;
  outline: 2px solid transparent;
  transition: border-color 0.2s ease, background-color 0.2s ease;
}

.lp-footer__newsletter-input::placeholder {
  color: rgba(255, 255, 255, 0.3);
}

.lp-footer__newsletter-input:focus {
  border-color: var(--hypro-blue, #1526be);
  background-color: rgba(255, 255, 255, 0.12);
}

.lp-footer__newsletter-btn {
  display: flex;
  padding-top: 11px;
  padding-bottom: 11px;
  font-size: 0.9375rem;
}

.lp-footer__newsletter-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.lp-footer__newsletter-success,
.lp-footer__newsletter-error {
  font-size: 0.875rem;
  margin: 8px 0 0;
  font-family: 'DM Sans', sans-serif;
}

.lp-footer__newsletter-success {
  color: oklch(82% 0.27 130); /* lime */
}

.lp-footer__newsletter-error {
  color: #f87171;
}

.lp-footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  padding-top: 28px;
  padding-bottom: 28px;
}

.lp-footer__legal {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.3);
  margin: 0;
}

.lp-footer__legal-links {
  display: flex;
  gap: 24px;
}

.lp-footer__legal-link {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.35);
  text-decoration: none;
  transition: color 0.2s ease;
}

.lp-footer__legal-link:hover {
  color: rgba(255, 255, 255, 0.7);
}

/* ==========================================================================
   11b. Sticky Buy Card (desktop only)
   ========================================================================== */

.lp-sb {
  position: fixed;
  bottom: 28px;
  right: 28px;
  transform: translateY(calc(100% + 40px));
  opacity: 0;
  pointer-events: none;
  z-index: 80;
  transition: transform 0.4s cubic-bezier(0.34, 1.26, 0.64, 1), opacity 0.3s ease;
  width: 320px;
}

.lp-sb.is-visible {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

/* Hide on mobile — the shop section is always visible */
@media (max-width: 767px) {
  .lp-sb { display: none; }
}

.lp-sb__inner {
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: #ffffff;
  border-radius: 16px;
  padding: 16px 18px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.14), 0 2px 8px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(0, 0, 0, 0.06);
}

.lp-sb__brand {
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.lp-sb__brand-name {
  font-family: var(--hypro-font-display, 'Yumex', serif);
  font-size: 1rem;
  font-weight: 800;
  color: var(--hypro-near-black, #0c0c0a);
  margin: 0;
  line-height: 1;
}

.lp-sb__brand-name sup {
  font-size: 0.6em;
}

.lp-sb__brand-sub {
  font-size: 0.7rem;
  color: var(--hypro-muted, #6b6b68);
  margin: 0;
}

.lp-sb__divider {
  display: none;
}

.lp-sb__flavors {
  display: flex;
  align-items: center;
  gap: 6px;
}

.lp-sb__flavor-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  border-radius: 100px;
  border: 1.5px solid rgba(0, 0, 0, 0.12);
  background: transparent;
  font-family: var(--hypro-font-ui, 'DM Sans', sans-serif);
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--hypro-near-black, #0c0c0a);
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s, color 0.2s;
  white-space: nowrap;
}

.lp-sb__flavor-btn:hover {
  border-color: var(--hypro-blue, #1526be);
}

.lp-sb__flavor-btn.is-active {
  border-color: var(--hypro-blue, #1526be);
  background: color-mix(in srgb, var(--hypro-blue, #1526be) 8%, transparent);
  color: var(--hypro-blue, #1526be);
  font-weight: 600;
}

.lp-sb__flavor-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}

.lp-sb__action {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.lp-sb__price {
  font-family: var(--hypro-font-display, 'Yumex', serif);
  font-size: 1.125rem;
  font-weight: 800;
  color: var(--hypro-near-black, #0c0c0a);
  white-space: nowrap;
}

.lp-sb__price .woocommerce-Price-amount {
  color: inherit;
}

.lp-sb__atc-btn {
  white-space: nowrap;
  padding: 9px 18px;
  font-size: 0.875rem;
  flex: 1;
}

/* ==========================================================================
   12. Responsive — Tablet ( ≤ 1024px )
   ========================================================================== */

@media (max-width: 1024px) {
  .lp-hero__inner {
    padding-top: 104px; /* 40px bar + 64px */
    padding-bottom: 64px;
  }

  body.announce-dismissed .lp-hero__inner {
    padding-top: 64px;
  }

  .lp-hero__text {
    max-width: 100%;
  }

  .lp-hero__image-slot {
    display: none;
  }

  .lp-hero__floating-can {
    display: none;
  }

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

  .lp-when__inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .lp-when__left {
    position: static;
  }

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

  .lp-footer__top {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .lp-footer__col--newsletter {
    grid-column: 1 / -1;
  }
}

/* ==========================================================================
   13. Responsive — Mobile ( ≤ 768px )
   ========================================================================== */

@media (max-width: 768px) {
  /* Sections */
  .lp-benefits,
  .lp-why,
  .lp-when,
  .lp-faq,
  .lp-shop {
    padding-top: 72px;
    padding-bottom: 72px;
  }

  /* Hero */
  .lp-hero__inner {
    padding-top: 96px;
    padding-bottom: 80px;
  }

  /* Re-enable hero image on mobile with portrait-friendly positioning */
  .lp-hero__image-slot {
    display: block;
    background-size: auto 80%;
    background-position: -20% bottom;
    opacity: 0.95;
  }

  /* Restrict text width so the photo shows through on the right */
  .lp-hero__text {
    max-width: 68%;
    position: relative;
    z-index: 1;
  }

  /* Floating can */
  .lp-hero__floating-can {
    display: block;
    position: absolute;
    bottom: 12px;
    right: -8px;
    width: 40%;
    max-width: 170px;
    z-index: 3;
    pointer-events: none;
    filter: drop-shadow(0 24px 48px rgba(0, 0, 0, 0.45));
    transform: rotate(6deg);
  }

  .lp-hero__stat:nth-child(n + 4) {
    display: none;
  }

  .lp-hero__heading {
    font-size: 2.25rem;
  }

  .lp-hero__ctas {
    flex-direction: column;
    align-items: flex-start;
  }

  /* Compact stats on mobile */
  .lp-hero__stats {
    gap: 6px;
  }

  .lp-hero__stat {
    border-radius: 10px;
    padding: 6px 10px;
    gap: 2px;
  }

  .lp-hero__stat-number {
    font-size: 1rem;
  }

  .lp-hero__stat-label {
    font-size: 0.5rem;
  }

  .lp-btn {
    padding: 13px 24px;
    font-size: 0.9375rem;
  }

  /* Benefits: compact on mobile */
  .lp-benefits {
    padding: 40px 20px;
  }

  .lp-benefits__header {
    margin-bottom: 28px;
  }

  .lp-benefits__heading {
    font-size: 1.5rem;
    margin: 6px 0 8px;
  }

  .lp-benefits__subtext {
    font-size: 0.875rem;
  }

  .lp-benefits__grid {
    grid-template-columns: 1fr 1fr;
    margin-bottom: 24px;
  }

  .lp-benefits__stat {
    padding: 16px 14px;
    gap: 4px;
  }

  .lp-benefits__number {
    font-size: 1.75rem;
  }

  .lp-benefits__label {
    font-size: 0.8125rem;
  }

  .lp-benefits__desc {
    font-size: 0.75rem;
  }

  .lp-benefits__cta {
    padding-top: 24px;
  }

  .lp-benefits__footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  /* When: single column cards */
  .lp-when__grid {
    grid-template-columns: 1fr;
  }

  /* Shop: single column */
  .lp-shop__grid {
    grid-template-columns: 1fr;
  }

  .lp-shop__pack {
    flex-direction: column;
    align-items: flex-start;
    padding: 28px 24px;
  }

  .lp-shop__pack-action {
    flex-wrap: wrap;
    width: 100%;
  }

  /* Footer */
  .lp-footer__top {
    grid-template-columns: 1fr;
    gap: 40px;
    padding-top: 56px;
    padding-bottom: 48px;
  }

  .lp-footer__col--newsletter {
    grid-column: auto;
  }

  .lp-footer__bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .lp-footer__legal-links {
    flex-direction: column;
    gap: 10px;
  }
}

/* ==========================================================================
   14. Responsive — Small mobile ( ≤ 480px )
   ========================================================================== */

@media (max-width: 480px) {
  .lp-benefits__grid {
    grid-template-columns: 1fr;
  }

  .lp-when__grid {
    grid-template-columns: 1fr 1fr;
  }

  .lp-why__checklist {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   Site-wide unified footer (6-column expanded grid)
   .site-footer overrides the default 3-col lp-footer__top grid
   ========================================================================== */

.site-footer__top {
  grid-template-columns: 1.4fr repeat(4, 1fr) 1.3fr;
  gap: 28px;
  padding-top: 56px;
  padding-bottom: 48px;
}

.site-footer .lp-footer__col-heading {
  margin-bottom: 12px;
}

.site-footer .lp-footer__nav-list {
  gap: 2px;
}

.site-footer .lp-footer__nav-link {
  font-size: 0.875rem;
  line-height: 1.3;
  display: block;
  padding: 2px 0;
}

.site-footer .lp-footer__tagline {
  margin-bottom: 16px;
}

.site-footer .lp-footer__newsletter-desc {
  margin-bottom: 14px;
}

/* On tablets collapse to 3 columns: brand spans full width, nav 3-up, newsletter full */
@media (max-width: 1024px) {
  .site-footer__top {
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
  }

  .site-footer__top .lp-footer__col--brand {
    grid-column: 1 / -1;
  }

  .site-footer__top .lp-footer__col--newsletter {
    grid-column: 1 / -1;
  }
}

/* On small tablets: 2 columns */
@media (max-width: 640px) {
  .site-footer__top {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }
}

/* On mobile: single column — inherit from base lp-footer__top ≤768px rule */

/* Hide the "View cart" link WooCommerce JS injects after AJAX add-to-cart buttons. */
a.added_to_cart.wc-forward {
  display: none !important;
}

/* ── Coming-soon soft mode: hide prices ──────────────────────────────────── */
body.hypro-coming-soon-active .lp-shop__price,
body.hypro-coming-soon-active .lp-shop__pack-price {
  display: none;
}
