/* ─────────────────────────────────────────────
   SHOP LANDING PAGE – Premium One-Page Experience
   cookartn.com/shop/ — v2.0
───────────────────────────────────────────── */

/* ─── TOKENS ─── */
:root {
  --lp-cream:   #F8F8F6;
  --lp-cream2:  #F1F1EF;
  --lp-dark:    #0D0D0D;
  --lp-mid:     #1A1A1A;
  --lp-coal:    #141414;
  --lp-gold:    #C9A227;
  --lp-gold-l:  rgba(201,162,39,0.1);
  --lp-red:     #C8102E;
  --lp-red-d:   #a00d24;
  --lp-white:   #FFFFFF;
  --lp-border:  rgba(255,255,255,0.08);
  --lp-border-d:rgba(0,0,0,0.08);
  --lp-ease:    cubic-bezier(0.16,1,0.3,1);
  --lp-ease-io: cubic-bezier(0.65,0,0.35,1);
  --lp-ease-bk: cubic-bezier(0.34,1.56,0.64,1);
  --lp-r:       16px;
  --lp-r-lg:    24px;
}

/* ─── BASE ─── */
.ca-lp *, .ca-lp *::before, .ca-lp *::after { box-sizing: border-box; }
/* overflow-x: clip (not hidden) — preserves sticky behaviour in child elements */
.ca-lp { display: block; overflow-x: clip; }

/* ─── SCROLL REVEAL ─── */
.ca-lp-reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.75s var(--lp-ease), transform 0.75s var(--lp-ease);
}
.ca-lp-reveal.is-visible { opacity: 1; transform: none; }
.ca-lp-reveal.delay-1 { transition-delay: 0.1s; }
.ca-lp-reveal.delay-2 { transition-delay: 0.18s; }
.ca-lp-reveal.delay-3 { transition-delay: 0.28s; }
.ca-lp-reveal.delay-4 { transition-delay: 0.38s; }


/* ═══════════════════════════════════════════
   BOOK WRAP — constrains hero sticky scope
   Hero is sticky only until this wrapper's
   bottom exits the viewport, then unsticks.
═══════════════════════════════════════════ */
.ca-lp-book-wrap {
  position: relative;
}


/* ═══════════════════════════════════════════
   HERO SECTION
═══════════════════════════════════════════ */
.ca-lp-hero {
  /* sticky base for book-page animation: hero stays pinned while checkout slides over it */
  position: sticky;
  top: 0;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--lp-dark);
  height: calc(100vh - var(--header-h, 112px) - var(--pstrip-h, 44px));
  min-height: 440px;
}

/* grain overlay */
.ca-lp-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.045'/%3E%3C/svg%3E");
  opacity: 0.38;
  pointer-events: none;
  z-index: 1;
}

/* ambient blobs */
.ca-lp-hero__amb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}
.ca-lp-hero__amb--a {
  width: 700px; height: 700px;
  top: -200px; left: -200px;
  background: radial-gradient(circle, rgba(200,16,46,0.13) 0%, transparent 70%);
  animation: lp-amb-a 18s ease-in-out infinite alternate;
}
.ca-lp-hero__amb--b {
  width: 500px; height: 500px;
  bottom: -80px; right: -100px;
  background: radial-gradient(circle, rgba(184,161,130,0.1) 0%, transparent 70%);
  animation: lp-amb-b 14s ease-in-out infinite alternate;
}
@keyframes lp-amb-a { from { transform: translate(0,0) scale(1); } to { transform: translate(50px,30px) scale(1.12); } }
@keyframes lp-amb-b { from { transform: translate(0,0) scale(1); } to { transform: translate(-30px,-25px) scale(1.08); } }

.ca-lp-hero__inner {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 24px 50px;
  max-width: 1100px;
  width: 100%;
  /* will-change set by JS only while parallax is active — avoids permanent layer allocation */
}

.ca-lp-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Outfit', sans-serif;
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--lp-gold);
  margin-bottom: 13px;
  opacity: 1;
}
.ca-lp-hero__eyebrow span {
  display: inline-block;
  width: 28px; height: 1px;
  background: var(--lp-gold);
  opacity: 0.5;
}

.ca-lp-hero__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.6rem, 6vw, 5.8rem);
  font-weight: 300;
  line-height: 1.02;
  color: var(--lp-white);
  letter-spacing: -0.02em;
  white-space: nowrap;
  margin: 0 0 12px;
  opacity: 1;
}
.ca-lp-hero__title em { font-style: italic; color: rgba(255,255,255,0.78); }

.ca-lp-hero__sub {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(0.82rem, 1.4vw, 0.97rem);
  font-weight: 400;
  color: rgba(255,255,255,0.48);
  letter-spacing: 0.05em;
  margin: 0 0 24px;
  opacity: 1;
}

.ca-lp-hero__cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Outfit', sans-serif;
  font-size: 13.5px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--lp-white);
  background: var(--lp-red);
  padding: 15px 36px;
  border-radius: 50px;
  text-decoration: none;
  opacity: 1;
  box-shadow: 0 8px 28px rgba(200,16,46,0.38);
}
.ca-lp-hero__cta:hover {
  background: var(--lp-red-d);
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 14px 44px rgba(200,16,46,0.48);
}
.ca-lp-hero__cta svg { transition: transform 0.25s var(--lp-ease-bk); }
.ca-lp-hero__cta:hover svg { transform: translateY(4px); }

.ca-lp-hero__scroll {
  position: absolute;
  bottom: 54px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 1;
}
.ca-lp-hero__scroll-line {
  width: 1px; height: 44px;
  background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.6));
}
.ca-lp-hero__scroll-txt {
  font-size: 9px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.28);
  font-family: 'Outfit', sans-serif;
}

@keyframes lp-in {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── Trust Marquee Strip (bottom of hero) ── */
.ca-lp-hero__trust {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  z-index: 2;
  height: 46px;
  background: rgba(255,255,255,0.04);
  border-top: 1px solid var(--lp-border);
  overflow: hidden;
  display: flex;
  align-items: center;
  opacity: 1;
}
/* No longer animated (static) — the track's markup repeats the trust items
   twice for the old seamless-loop scroll; the parent's overflow:hidden
   clips the second, off-screen copy so nothing looks duplicated. */
.ca-lp-hero__trust-track {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  width: max-content;
}
.ca-lp-trust-item {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: 'Outfit', sans-serif;
  font-size: 11.5px;
  font-weight: 500;
  color: rgba(255,255,255,0.6);
  padding: 0 24px;
  white-space: nowrap;
  flex-shrink: 0;
}
.ca-lp-trust-dot {
  display: inline-block;
  width: 3px; height: 3px;
  border-radius: 50%;
  background: var(--lp-gold);
  opacity: 0.5;
  flex-shrink: 0;
}
@keyframes lp-marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}


/* ═══════════════════════════════════════════
   CHECKOUT SECTION (2-col)
═══════════════════════════════════════════ */
.ca-lp-checkout {
  position: relative;
  z-index: 10;
  /* book-page: rounded top corners + shadow make it look like a page lifting over the hero */
  border-radius: 28px 28px 0 0;
  box-shadow: 0 -16px 48px rgba(0,0,0,0.22);
  background: #ffffff;
  padding: 72px 0 96px;
  contain: layout;
}
.ca-lp-checkout__wrap {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 40px;
}

/* Product color tabs */
.ca-lp-product-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.ca-lp-product-tab {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 11px 22px;
  border-radius: 50px;
  border: 1.5px solid rgba(0,0,0,0.1);
  background: white;
  cursor: pointer;
  font-family: 'Outfit', sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: rgba(0,0,0,0.45);
  transition: all 0.28s var(--lp-ease);
  user-select: none;
  box-shadow: 0 1px 4px rgba(0,0,0,0.05);
}
.ca-lp-product-tab.is-active {
  border-color: var(--lp-dark);
  background: var(--lp-dark);
  color: white;
  box-shadow: 0 6px 20px rgba(0,0,0,0.2);
}
.ca-lp-product-tab:hover:not(.is-active) {
  border-color: rgba(0,0,0,0.24);
  color: var(--lp-dark);
  box-shadow: 0 4px 12px rgba(0,0,0,0.09);
}
.ca-lp-tab-swatch {
  width: 13px; height: 13px;
  border-radius: 50%;
  flex-shrink: 0;
  border: 1.5px solid rgba(255,255,255,0.3);
  box-shadow: 0 1px 3px rgba(0,0,0,0.2);
}

.ca-lp-checkout__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}


/* ═══════════════════════════════════════════
   IMAGE CAROUSEL
═══════════════════════════════════════════ */
.ca-lp-gallery {
  position: sticky;
  top: calc(var(--header-h, 112px) + var(--pstrip-h, 44px) + 24px);
}

.ca-lp-carousel {
  position: relative;
  border-radius: var(--lp-r-lg);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background: #ece5d9; /* warm cream — matches the studio photo backgrounds */
  box-shadow: 0 20px 70px rgba(0,0,0,0.14), 0 0 0 1px rgba(0,0,0,0.05);
  user-select: none;
  -webkit-user-select: none;
  touch-action: pan-y pinch-zoom; /* let vertical page scroll through; horizontal = carousel */
}

/* Native horizontal scroll-snap: real momentum swipe on touch, no JS physics. */
.ca-lp-carousel__track {
  display: flex;
  width: 100%;
  height: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  /* NB: no CSS `scroll-behavior: smooth` — combined with mandatory snap it makes
     programmatic scrollTo() snap back to slide 0 in Chrome. JS animates instead. */
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;         /* Firefox */
  overscroll-behavior-x: contain;
}
.ca-lp-carousel__track::-webkit-scrollbar { display: none; } /* Chrome/Safari */

.ca-lp-carousel__slide {
  flex: 0 0 100%;
  width: 100%;
  height: 100%;
  overflow: hidden;
  scroll-snap-align: center;
}
.ca-lp-carousel__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;             /* fill the frame edge-to-edge — no letterbox bars */
  object-position: center;
  display: block;
  transition: transform 0.6s var(--lp-ease);
}
.ca-lp-carousel:hover .ca-lp-carousel__slide img {
  transform: scale(1.03);
}

/* nav arrows */
.ca-lp-carousel__btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.96);
  /* backdrop-filter removed — expensive compositing for a minor visual on always-visible element */
  border: 1px solid rgba(0,0,0,0.07);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.12);
  transition: all 0.22s var(--lp-ease);
  z-index: 3;
  color: var(--lp-dark);
}
.ca-lp-carousel__btn:hover {
  background: var(--lp-dark);
  color: white;
  border-color: transparent;
  transform: translateY(-50%) scale(1.06);
  box-shadow: 0 8px 28px rgba(0,0,0,0.22);
}
.ca-lp-carousel__btn--prev { left: 14px; }
.ca-lp-carousel__btn--next { right: 14px; }

/* dot indicators */
.ca-lp-carousel__dots {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 6px;
  z-index: 3;
}
.ca-lp-carousel__dot {
  width: 7px; height: 7px;
  border-radius: 50px;
  background: rgba(255,255,255,0.5);
  border: none;
  cursor: pointer;
  transition: all 0.3s var(--lp-ease);
  padding: 0;
  box-shadow: 0 1px 4px rgba(0,0,0,0.2);
}
.ca-lp-carousel__dot.is-active {
  background: white;
  width: 22px;
  border-radius: 4px;
}
.ca-lp-carousel__dot:hover { background: rgba(255,255,255,0.85); }

/* badge overlay on top-left of carousel */
.ca-lp-carousel__badge {
  position: absolute;
  top: 14px; left: 14px;
  z-index: 3;
  background: rgba(13,13,13,0.88);
  /* backdrop-filter removed — solid dark bg is indistinguishable at this opacity */
  color: white;
  font-family: 'Outfit', sans-serif;
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 50px;
}

/* color name badge (bottom-right) */
.ca-lp-carousel__color-badge {
  position: absolute;
  bottom: 16px; right: 16px;
  z-index: 3;
  background: rgba(255,255,255,0.97);
  /* backdrop-filter removed — near-opaque white is visually identical */
  font-family: 'Outfit', sans-serif;
  font-size: 11px;
  font-weight: 600;
  color: var(--lp-dark);
  padding: 5px 12px;
  border-radius: 50px;
  border: 1px solid rgba(0,0,0,0.06);
  transition: all 0.3s;
  pointer-events: none;
}


/* ═══════════════════════════════════════════
   ORDER PANEL (right column)
═══════════════════════════════════════════ */
.ca-lp-order { }

.ca-lp-order__head { margin-bottom: 28px; }
.ca-lp-order__eyebrow {
  font-family: 'Outfit', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--lp-gold);
  margin-bottom: 8px;
}
.ca-lp-order__name {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.5rem, 2.8vw, 2.1rem);
  font-weight: 500;
  color: var(--lp-dark);
  line-height: 1.15;
  margin: 0 0 7px;
}
.ca-lp-order__sub {
  font-family: 'Outfit', sans-serif;
  font-size: 13px;
  color: rgba(0,0,0,0.42);
}

/* Color swatches */
.ca-lp-swatches {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 16px;
}
.ca-lp-swatches__label {
  font-family: 'Outfit', sans-serif;
  font-size: 11.5px;
  font-weight: 500;
  color: rgba(0,0,0,0.4);
  margin-right: 2px;
}
.ca-lp-swatch {
  width: 26px; height: 26px;
  border-radius: 50%;
  border: 2.5px solid transparent;
  cursor: pointer;
  transition: all 0.22s var(--lp-ease-bk);
  box-shadow: 0 0 0 0px transparent;
  position: relative;
}
.ca-lp-swatch.is-active { box-shadow: 0 0 0 3px var(--lp-dark); }
.ca-lp-swatch:hover { transform: scale(1.15); }
.ca-lp-swatch[data-color="brown"] { background: #8B5E42; }
.ca-lp-swatch[data-color="grey"]  { background: #8A8A8A; }
.ca-lp-swatch[data-color="black"] { background: #1A1A1A; }

/* ── BUNDLES ── */
.ca-lp-bundles__label {
  font-family: 'Outfit', sans-serif;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(0,0,0,0.32);
  margin-bottom: 12px;
  margin-top: 24px;
}
.ca-lp-bundles {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px;
}
.ca-lp-bundle {
  position: relative;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  border-radius: 14px;
  border: 2px solid rgba(0,0,0,0.08);
  background: white;
  cursor: pointer;
  transition: all 0.28s var(--lp-ease);
  user-select: none;
  box-shadow: 0 1px 4px rgba(0,0,0,0.04);
}
.ca-lp-bundle:hover { border-color: rgba(0,0,0,0.18); box-shadow: 0 6px 28px rgba(0,0,0,0.07); }
.ca-lp-bundle.is-selected {
  border-color: var(--lp-dark);
  box-shadow: 0 8px 36px rgba(0,0,0,0.11);
  background: #fafafa;
}
.ca-lp-bundle.is-best { border-color: rgba(200,16,46,0.28); background: rgba(200,16,46,0.015); }
.ca-lp-bundle.is-best.is-selected {
  border-color: var(--lp-red);
  background: rgba(200,16,46,0.025);
  box-shadow: 0 8px 36px rgba(200,16,46,0.14);
}

.ca-lp-bundle__radio {
  width: 19px; height: 19px;
  border-radius: 50%;
  border: 2px solid rgba(0,0,0,0.18);
  flex-shrink: 0;
  position: relative;
  background: white;
  transition: border-color 0.22s;
}
.ca-lp-bundle__radio::after {
  content: '';
  position: absolute;
  inset: 3px;
  border-radius: 50%;
  background: var(--lp-dark);
  opacity: 0;
  transform: scale(0);
  transition: all 0.22s var(--lp-ease-bk);
}
.ca-lp-bundle.is-selected .ca-lp-bundle__radio { border-color: var(--lp-dark); }
.ca-lp-bundle.is-selected .ca-lp-bundle__radio::after { opacity: 1; transform: scale(1); }
.ca-lp-bundle.is-best .ca-lp-bundle__radio { border-color: var(--lp-red); }
.ca-lp-bundle.is-best.is-selected .ca-lp-bundle__radio::after { background: var(--lp-red); }

.ca-lp-bundle__body { flex: 1; min-width: 0; }
.ca-lp-bundle__name {
  font-family: 'Outfit', sans-serif;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--lp-dark);
  margin-bottom: 2px;
}
.ca-lp-bundle__desc {
  font-size: 11.5px;
  color: rgba(0,0,0,0.42);
  font-family: 'Outfit', sans-serif;
}
.ca-lp-bundle__price-wrap { text-align: right; flex-shrink: 0; }
.ca-lp-bundle__price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--lp-dark);
  line-height: 1;
  display: block;
}
.ca-lp-bundle__was {
  font-family: 'Outfit', sans-serif;
  font-size: 10.5px;
  color: rgba(0,0,0,0.3);
  text-decoration: line-through;
  margin-top: 1px;
  display: block;
}
.ca-lp-bundle__save {
  font-size: 10px;
  font-weight: 700;
  color: #1a7a40;
  background: rgba(26,122,64,0.1);
  padding: 2px 6px;
  border-radius: 4px;
  margin-top: 3px;
  display: inline-block;
}
.ca-lp-bundle__tag {
  position: absolute;
  top: -1px; right: 14px;
  transform: translateY(-50%);
  font-family: 'Outfit', sans-serif;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 3px 9px;
  border-radius: 50px;
  white-space: nowrap;
}
.ca-lp-bundle__tag--pop { background: var(--lp-dark); color: white; }
.ca-lp-bundle__tag--val { background: var(--lp-red); color: white; }
.ca-lp-bundle__tag--fam { background: #2d6a4f; color: white; }


/* ── CHECKOUT FORM ── */
.ca-lp-form__divider {
  height: 1px;
  background: rgba(0,0,0,0.08);
  margin: 18px 0;
}
.ca-lp-form__title {
  font-family: 'Outfit', sans-serif;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(0,0,0,0.32);
  margin-bottom: 14px;
}
.ca-lp-form__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 11px;
  margin-bottom: 11px;
}
.ca-lp-form__field { position: relative; }
.ca-lp-form__field.full-col { grid-column: 1 / -1; }
.ca-lp-form__input {
  width: 100%;
  padding: 14px 16px 6px;
  border-radius: 10px;
  border: 1.5px solid rgba(0,0,0,0.11);
  background: white;
  font-family: 'Outfit', sans-serif;
  font-size: 14px;
  color: var(--lp-dark);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
  -webkit-appearance: none;
  appearance: none;
  height: 52px;
}
.ca-lp-form__input::placeholder { color: transparent; }
.ca-lp-form__input:focus {
  border-color: var(--lp-dark);
  box-shadow: 0 0 0 3px rgba(13,13,13,0.06);
}
.ca-lp-form__input.has-error { border-color: var(--lp-red); }
.ca-lp-form__label {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 13.5px;
  color: rgba(0,0,0,0.38);
  pointer-events: none;
  transition: all 0.18s var(--lp-ease);
  font-family: 'Outfit', sans-serif;
  background: white;
  padding: 0 3px;
}
.ca-lp-form__input:focus + .ca-lp-form__label,
.ca-lp-form__input:not(:placeholder-shown) + .ca-lp-form__label {
  top: 8px;
  transform: translateY(0);
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: rgba(0,0,0,0.5);
  text-transform: uppercase;
}

/* ── BUY BUTTON ── */
.ca-lp-buy-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
  padding: 17px 24px;
  border-radius: 14px;
  background: var(--lp-red);
  color: white;
  font-family: 'Outfit', sans-serif;
  font-size: 14.5px;
  font-weight: 700;
  letter-spacing: 0.03em;
  border: none;
  cursor: pointer;
  transition: all 0.28s var(--lp-ease);
  box-shadow: 0 8px 28px rgba(200,16,46,0.3);
  margin-top: 18px;
  position: relative;
  overflow: hidden;
}
.ca-lp-buy-btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.12) 0%, transparent 55%);
  pointer-events: none;
}
.ca-lp-buy-btn:hover:not(:disabled) {
  background: var(--lp-red-d);
  transform: translateY(-2px);
  box-shadow: 0 14px 44px rgba(200,16,46,0.42);
}
.ca-lp-buy-btn:active:not(:disabled) { transform: translateY(0) scale(0.99); }
.ca-lp-buy-btn:disabled { opacity: 0.72; cursor: wait; }
.ca-lp-buy-btn__total {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25em;
  font-weight: 700;
}
.ca-lp-pulse {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: rgba(255,255,255,0.5);
  animation: lp-pulse 1.9s ease-in-out infinite;
  flex-shrink: 0;
}
@keyframes lp-pulse { 0%,100% { transform: scale(1); opacity: 0.5; } 50% { transform: scale(1.6); opacity: 1; } }

/* form error */
.ca-lp-form__error {
  display: none;
  font-family: 'Outfit', sans-serif;
  font-size: 12px;
  color: var(--lp-red);
  margin-top: 8px;
  padding: 9px 14px;
  background: rgba(200,16,46,0.06);
  border-radius: 8px;
  border-left: 3px solid var(--lp-red);
}
.ca-lp-form__error.is-visible { display: block; }

/* spinner */
.ca-lp-spinner {
  width: 18px; height: 18px;
  border: 2px solid rgba(255,255,255,0.3);
  border-top-color: white;
  border-radius: 50%;
  animation: lp-spin 0.7s linear infinite;
  display: none;
  flex-shrink: 0;
}
.ca-lp-buy-btn.is-loading .ca-lp-spinner { display: inline-block; }
.ca-lp-buy-btn.is-loading .ca-lp-buy-btn__label { opacity: 0.5; }
@keyframes lp-spin { to { transform: rotate(360deg); } }

/* trust badges */
.ca-lp-order__trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-top: 14px;
  flex-wrap: wrap;
}
.ca-lp-trust-badge {
  display: flex;
  align-items: center;
  gap: 5px;
  font-family: 'Outfit', sans-serif;
  font-size: 10.5px;
  color: rgba(0,0,0,0.37);
  font-weight: 500;
}
.ca-lp-trust-badge svg { color: rgba(0,0,0,0.3); flex-shrink: 0; }

/* Inline success (hidden - popup is used instead) */
.ca-lp-order-success { display: none; }


/* ═══════════════════════════════════════════
   THANK YOU POPUP
═══════════════════════════════════════════ */
.ca-lp-thankyou {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.35s var(--lp-ease);
}
.ca-lp-thankyou.is-open {
  opacity: 1;
  pointer-events: auto;
}

.ca-lp-thankyou__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.7);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  cursor: pointer;
}

.ca-lp-thankyou__box {
  position: relative;
  z-index: 1;
  background: white;
  border-radius: 24px;
  padding: 48px 40px 40px;
  max-width: 480px;
  width: 100%;
  text-align: center;
  box-shadow: 0 40px 120px rgba(0,0,0,0.3), 0 0 0 1px rgba(0,0,0,0.06);
  transform: translateY(24px) scale(0.95);
  transition: transform 0.45s var(--lp-ease-bk);
  overflow: hidden;
}
.ca-lp-thankyou.is-open .ca-lp-thankyou__box {
  transform: translateY(0) scale(1);
}

/* decorative accent top */
.ca-lp-thankyou__box::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--lp-red);
}

.ca-lp-thankyou__check {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: rgba(26,122,64,0.1);
  color: #1a7a40;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  animation: lp-check-pop 0.6s 0.15s var(--lp-ease-bk) both;
}
@keyframes lp-check-pop {
  from { transform: scale(0); opacity: 0; }
  to   { transform: scale(1); opacity: 1; }
}

.ca-lp-thankyou__eyebrow {
  font-family: 'Outfit', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--lp-gold);
  margin-bottom: 8px;
}
.ca-lp-thankyou__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 500;
  color: var(--lp-dark);
  margin: 0 0 6px;
  line-height: 1.2;
}
.ca-lp-thankyou__order {
  font-family: 'Outfit', sans-serif;
  font-size: 12.5px;
  color: rgba(0,0,0,0.4);
  margin-bottom: 12px;
}
.ca-lp-thankyou__order strong { color: var(--lp-dark); }
.ca-lp-thankyou__text {
  font-family: 'Outfit', sans-serif;
  font-size: 14px;
  color: rgba(0,0,0,0.55);
  line-height: 1.65;
  margin-bottom: 28px;
}
.ca-lp-thankyou__text strong { color: var(--lp-dark); }

.ca-lp-thankyou__steps {
  display: flex;
  gap: 0;
  margin-bottom: 28px;
  border-top: 1px solid rgba(0,0,0,0.07);
  border-bottom: 1px solid rgba(0,0,0,0.07);
  padding: 18px 0;
  justify-content: space-around;
}
.ca-lp-thankyou__step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 7px;
  padding: 0 12px;
}
.ca-lp-thankyou__step-icon {
  font-size: 22px;
  line-height: 1;
}
.ca-lp-thankyou__step span {
  font-family: 'Outfit', sans-serif;
  font-size: 11px;
  font-weight: 500;
  color: rgba(0,0,0,0.5);
  text-align: center;
  line-height: 1.4;
  max-width: 70px;
}

.ca-lp-thankyou__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 36px;
  border-radius: 50px;
  background: var(--lp-dark);
  color: white;
  font-family: 'Outfit', sans-serif;
  font-size: 13.5px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: all 0.25s var(--lp-ease);
  letter-spacing: 0.04em;
}
.ca-lp-thankyou__btn:hover {
  background: #333;
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}


/* ═══════════════════════════════════════════
   CERTIFICATIONS / FEATURES SECTION
═══════════════════════════════════════════ */
.ca-lp-certs {
  background: var(--lp-cream2);
  padding: 88px 0;
  contain: paint;
}
.ca-lp-certs__wrap {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 40px;
}

.ca-lp-features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 48px;
}
.ca-lp-feat {
  background: white;
  border-radius: 18px;
  padding: 28px 24px;
  border: 1px solid rgba(0,0,0,0.06);
  transition: all 0.3s var(--lp-ease);
}
.ca-lp-feat:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.09);
  border-color: rgba(0,0,0,0.1);
}
.ca-lp-feat__icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--lp-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  color: white;
}
.ca-lp-feat__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--lp-dark);
  line-height: 1.3;
  margin-bottom: 10px;
}
.ca-lp-feat__title em { font-style: italic; color: var(--lp-red); }
.ca-lp-feat__text {
  font-family: 'Outfit', sans-serif;
  font-size: 12.5px;
  color: rgba(0,0,0,0.5);
  line-height: 1.65;
}

/* certification badge strip */
.ca-lp-cert-strip {
  display: flex;
  align-items: stretch;
  gap: 0;
  background: white;
  border-radius: 18px;
  border: 1px solid rgba(0,0,0,0.07);
  overflow: hidden;
}
.ca-lp-cert {
  flex: 1;
  padding: 22px 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  border-right: 1px solid rgba(0,0,0,0.07);
  transition: background 0.2s;
}
.ca-lp-cert:last-child { border-right: none; }
.ca-lp-cert:hover { background: var(--lp-cream); }
.ca-lp-cert > span {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--lp-dark);
  line-height: 1;
}
.ca-lp-cert > small {
  font-family: 'Outfit', sans-serif;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--lp-red);
  margin-bottom: 6px;
}
.ca-lp-cert > p {
  font-family: 'Outfit', sans-serif;
  font-size: 10.5px;
  color: rgba(0,0,0,0.42);
  line-height: 1.4;
  text-align: center;
  margin: 0;
}
.ca-lp-cert--ministry > span { font-size: 1rem; }


/* ═══════════════════════════════════════════
   HOW TO USE SECTION
═══════════════════════════════════════════ */
.ca-lp-howto {
  background: var(--lp-dark);
  padding: 96px 0;
  overflow: hidden;
  contain: paint;
}
.ca-lp-howto__wrap {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 40px;
}
.ca-lp-section-header {
  text-align: center;
  margin-bottom: 56px;
}
.ca-lp-section-header__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: 'Outfit', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--lp-gold);
  margin-bottom: 12px;
}
.ca-lp-section-header__eyebrow::before,
.ca-lp-section-header__eyebrow::after {
  content: '';
  display: block;
  width: 18px; height: 2px;
  background: var(--lp-red);
  border-radius: 1px;
  opacity: 0.7;
  flex-shrink: 0;
}
.ca-lp-section-header__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.9rem, 3.8vw, 3rem);
  font-weight: 300;
  line-height: 1.15;
  margin-bottom: 12px;
}
.ca-lp-section-header__title--light { color: white; }
.ca-lp-section-header__title--dark  { color: var(--lp-dark); }
.ca-lp-section-header__sub {
  font-family: 'Outfit', sans-serif;
  font-size: 13.5px;
  line-height: 1.65;
  max-width: 440px;
  margin: 0 auto;
}
.ca-lp-section-header__sub--light { color: rgba(255,255,255,0.42); }
.ca-lp-section-header__sub--dark  { color: rgba(0,0,0,0.42); }

/* ── Horizontal Moving Reel (replaces static grid) ── */
.ca-lp-howto__reel {
  position: relative;
  overflow: hidden;
  /* edge fade-out */
}
.ca-lp-howto__reel::before,
.ca-lp-howto__reel::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 120px;
  z-index: 4;
  pointer-events: none;
}
.ca-lp-howto__reel::before { left: 0; background: linear-gradient(to right, var(--lp-dark) 30%, transparent); }
.ca-lp-howto__reel::after  { right: 0; background: linear-gradient(to left,  var(--lp-dark) 30%, transparent); }

.ca-lp-howto__reel-track {
  display: flex;
  gap: 20px;
  width: max-content;
  animation: lp-reel 28s linear infinite;
  /* no will-change — avoids permanent GPU layer allocation when element is off-screen */
}
.ca-lp-howto__reel:hover .ca-lp-howto__reel-track {
  animation-play-state: paused;
}
@keyframes lp-reel {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.ca-lp-howto__card {
  position: relative;
  width: 320px;
  height: 420px;
  border-radius: 18px;
  overflow: hidden;
  flex-shrink: 0;
  cursor: default;
}
.ca-lp-howto__card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.7s var(--lp-ease);
}
.ca-lp-howto__reel-track:hover .ca-lp-howto__card:hover img {
  transform: scale(1.05);
}
.ca-lp-howto__card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.35) 50%, rgba(0,0,0,0.05) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px 24px;
  transition: background 0.4s;
}
.ca-lp-howto__card:hover .ca-lp-howto__card-overlay {
  background: linear-gradient(to top, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.55) 55%, rgba(0,0,0,0.1) 100%);
}

.ca-lp-howto__card-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem;
  font-weight: 300;
  color: rgba(255,255,255,0.15);
  line-height: 1;
  margin-bottom: 8px;
  transition: color 0.4s var(--lp-ease), transform 0.4s var(--lp-ease);
  transform: translateY(4px);
}
.ca-lp-howto__card:hover .ca-lp-howto__card-num {
  color: var(--lp-gold);
  transform: translateY(0);
}
.ca-lp-howto__card-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.45rem;
  font-weight: 500;
  color: white;
  margin-bottom: 6px;
  line-height: 1.2;
}
.ca-lp-howto__card-text {
  font-family: 'Outfit', sans-serif;
  font-size: 12px;
  color: rgba(255,255,255,0.55);
  line-height: 1.6;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.4s var(--lp-ease), transform 0.4s var(--lp-ease);
  transition-delay: 0.04s;
}
.ca-lp-howto__card:hover .ca-lp-howto__card-text {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 768px) {
  .ca-lp-howto__card { width: 260px; height: 340px; }
  .ca-lp-howto__reel::before,
  .ca-lp-howto__reel::after { width: 60px; }
}


/* ═══════════════════════════════════════════
   FAQ SECTION — REDESIGNED
═══════════════════════════════════════════ */
.ca-lp-faq {
  background: var(--lp-cream);
  padding: 96px 0;
  contain: paint;
}
.ca-lp-faq__grid {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 2fr 3fr;
  gap: 72px;
  align-items: start;
}

/* Left: sticky info panel */
.ca-lp-faq__info {
  position: sticky;
  top: calc(var(--header-h, 112px) + var(--pstrip-h, 44px) + 32px);
}
.ca-lp-faq__kicker {
  font-family: 'Outfit', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--lp-red);
  margin-bottom: 18px;
}
.ca-lp-faq__heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.9rem, 3vw, 2.7rem);
  font-weight: 300;
  line-height: 1.12;
  color: var(--lp-dark);
  margin-bottom: 18px;
  letter-spacing: -0.01em;
}
.ca-lp-faq__heading em {
  font-style: italic;
  color: var(--lp-red);
}
.ca-lp-faq__desc {
  font-family: 'Outfit', sans-serif;
  font-size: 13.5px;
  line-height: 1.72;
  color: rgba(0,0,0,0.48);
  margin-bottom: 28px;
  max-width: 36ch;
}
.ca-lp-faq__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-bottom: 32px;
}
.ca-lp-faq__chip {
  font-family: 'Outfit', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--lp-dark);
  background: white;
  border: 1px solid rgba(0,0,0,0.1);
  border-radius: 50px;
  padding: 5px 13px;
}
.ca-lp-faq__cta-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Outfit', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-decoration: none;
  color: white;
  background: var(--lp-red);
  padding: 13px 26px;
  border-radius: 50px;
  transition: all 0.25s var(--lp-ease);
  box-shadow: 0 4px 20px rgba(200,16,46,0.3);
}
.ca-lp-faq__cta-link:hover {
  background: var(--lp-red-d);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(200,16,46,0.42);
}
.ca-lp-faq__cta-link svg {
  transition: transform 0.25s var(--lp-ease-bk);
  flex-shrink: 0;
}
.ca-lp-faq__cta-link:hover svg { transform: translateX(3px); }

/* Right: accordion */
.ca-lp-faq__list { padding-top: 4px; }
.ca-lp-faq__item { border-bottom: 1px solid rgba(0,0,0,0.08); }
.ca-lp-faq__item:first-child { border-top: 1px solid rgba(0,0,0,0.08); }

.ca-lp-faq__q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  width: 100%;
  padding: 22px 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: 'Outfit', sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: var(--lp-dark);
  line-height: 1.45;
  transition: color 0.2s;
  user-select: none;
}
.ca-lp-faq__q:hover { color: var(--lp-red); }
.ca-lp-faq__q-text { flex: 1; }

.ca-lp-faq__q-icon {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1.5px solid rgba(0,0,0,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: rgba(0,0,0,0.38);
  transition: all 0.32s var(--lp-ease);
}
.ca-lp-faq__q-icon svg {
  transition: transform 0.32s var(--lp-ease);
}
.ca-lp-faq__item.is-open .ca-lp-faq__q-icon {
  background: var(--lp-dark);
  border-color: var(--lp-dark);
  color: white;
}
.ca-lp-faq__item.is-open .ca-lp-faq__q-icon svg {
  transform: rotate(180deg);
}

/* Grid-rows animation — smooth without JS height measurement */
.ca-lp-faq__answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.44s var(--lp-ease-io);
}
.ca-lp-faq__item.is-open .ca-lp-faq__answer {
  grid-template-rows: 1fr;
}
.ca-lp-faq__answer-body {
  min-height: 0;
  overflow: hidden;
  font-family: 'Outfit', sans-serif;
  font-size: 14px;
  line-height: 1.75;
  color: rgba(0,0,0,0.52);
  padding-bottom: 22px;
  margin: 0;
}


/* ═══════════════════════════════════════════
   FINAL CTA STRIP
═══════════════════════════════════════════ */
.ca-lp-final-cta {
  background: var(--lp-dark);
  padding: 80px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.ca-lp-final-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 100%, rgba(200,16,46,0.14) 0%, transparent 65%);
  pointer-events: none;
}
.ca-lp-final-cta__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.9rem, 3.8vw, 2.9rem);
  font-weight: 300;
  color: white;
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
}
.ca-lp-final-cta__title em { font-style: italic; color: rgba(255,255,255,0.68); }
.ca-lp-final-cta__sub {
  font-family: 'Outfit', sans-serif;
  font-size: 13.5px;
  color: rgba(255,255,255,0.38);
  margin-bottom: 32px;
  position: relative;
  z-index: 1;
}
.ca-lp-final-cta__btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Outfit', sans-serif;
  font-size: 13.5px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: white;
  background: var(--lp-red);
  padding: 15px 38px;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.25s var(--lp-ease);
  box-shadow: 0 8px 28px rgba(200,16,46,0.38);
  position: relative;
  z-index: 1;
}
.ca-lp-final-cta__btn:hover {
  background: var(--lp-red-d);
  transform: translateY(-2px);
  box-shadow: 0 14px 44px rgba(200,16,46,0.48);
}


/* ═══════════════════════════════════════════
   SCROLL ANIMATION VARIANTS
═══════════════════════════════════════════ */

/* Stagger children (feat cards, cert badges) — JS triggers is-visible sequentially */
.ca-lp-stagger-child {
  opacity: 0;
  transform: translateY(24px) scale(0.97);
  transition: opacity 0.65s var(--lp-ease), transform 0.65s var(--lp-ease);
}
.ca-lp-stagger-child.is-visible { opacity: 1; transform: none; }

/* Zoom reveal — how-to section header */
.ca-lp-reveal-zoom {
  opacity: 0;
  transform: scale(0.92);
  transition: opacity 0.9s var(--lp-ease), transform 0.9s var(--lp-ease);
}
.ca-lp-reveal-zoom.is-visible { opacity: 1; transform: scale(1); }

/* Left-slide reveal — FAQ items */
.ca-lp-reveal-left {
  opacity: 0;
  transform: translateX(-32px);
  transition: opacity 0.6s var(--lp-ease), transform 0.6s var(--lp-ease);
}
.ca-lp-reveal-left.is-visible { opacity: 1; transform: translateX(0); }

/* Scale-up reveal — final CTA */
.ca-lp-reveal-scale {
  opacity: 0;
  transform: scale(0.86) translateY(20px);
  transition: opacity 1.0s var(--lp-ease), transform 1.0s var(--lp-ease);
}
.ca-lp-reveal-scale.is-visible { opacity: 1; transform: none; }


/* ═══════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════ */
@media (max-width: 1100px) {
  .ca-lp-features-grid { grid-template-columns: repeat(2, 1fr); }
  .ca-lp-faq__grid { grid-template-columns: 1fr 1.6fr; gap: 48px; }
}

@media (max-width: 1024px) {
  .ca-lp-checkout__layout { grid-template-columns: 1fr; gap: 48px; }
  .ca-lp-gallery { position: static; max-width: 500px; margin: 0 auto; width: 100%; }
  .ca-lp-howto__grid { grid-template-columns: 1fr 1fr; grid-template-rows: 260px 260px; }
}

@media (max-width: 768px) {
  .ca-lp-hero { height: auto; min-height: 0; padding: 40px 0 56px; }
  .ca-lp-hero__title { font-size: clamp(1.9rem, 9vw, 2.6rem); white-space: normal; }
  .ca-lp-hero__inner { padding: 0 18px 44px; }
  .ca-lp-hero__eyebrow { margin-bottom: 9px; }
  .ca-lp-checkout { border-radius: 18px 18px 0 0; }
  .ca-lp-checkout { padding: 52px 0 72px; }
  .ca-lp-checkout__wrap { padding: 0 20px; }
  /* certs section mobile carousel — see premium carousel block below */
  .ca-lp-howto { padding: 64px 0; }
  .ca-lp-howto__wrap { padding: 0 20px; }
  .ca-lp-howto__grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    gap: 12px;
  }
  .ca-lp-howto__cell { height: 240px; }
  .ca-lp-howto__cell--tall { grid-row: auto; height: 300px; }
  .ca-lp-faq { padding: 64px 0; }
  .ca-lp-faq__grid { grid-template-columns: 1fr; gap: 36px; padding: 0 20px; }
  .ca-lp-faq__info { position: static; }
  .ca-lp-faq__heading { font-size: 1.85rem; }
  .ca-lp-faq__desc { max-width: unset; }
  .ca-lp-faq__q { font-size: 14px; padding: 20px 0; }
  .ca-lp-form__grid { grid-template-columns: 1fr; }
  .ca-lp-bundle { padding: 14px 14px; }
  .ca-lp-bundle__name { font-size: 13px; }
  .ca-lp-bundle__desc { font-size: 11px; }
  .ca-lp-bundle__price { font-size: 1.15rem; }
  .ca-lp-product-tabs { gap: 7px; }
  .ca-lp-product-tab { font-size: 12.5px; padding: 8px 16px; }
  .ca-lp-carousel__btn { width: 36px; height: 36px; }
  .ca-lp-thankyou__box { padding: 36px 24px 28px; }
  .ca-lp-thankyou__title { font-size: 1.6rem; }
  .ca-lp-final-cta { padding: 64px 20px; }
}

@media (max-width: 480px) {
  .ca-lp-hero__scroll { display: none; }
  .ca-lp-hero__title { font-size: 2.1rem; }
  /* certs — handled by premium carousel block below */
  .ca-lp-howto__loop-img { width: 150px; height: 105px; }
  .ca-lp-thankyou__steps { gap: 0; }
  .ca-lp-thankyou__step { padding: 0 6px; }
  .ca-lp-faq__chips { gap: 6px; }
  .ca-lp-faq__chip { font-size: 9px; padding: 4px 10px; }
}


/* ═══════════════════════════════════════════
   MOBILE PERFORMANCE — kill every expensive
   GPU op on small screens / touch devices
═══════════════════════════════════════════ */
@media (max-width: 768px) {

  /* 1 — Kill ambient blob animations (700px + 500px elements continuously animating) */
  .ca-lp-hero__amb--a,
  .ca-lp-hero__amb--b {
    animation: none !important;
  }

  /* 2 — Hero parallax disabled via JS on mobile;
         guard with CSS so transform is never applied */
  .ca-lp-hero__inner {
    transform: none !important;
    opacity: 1 !important;
  }

  /* 3 — Convert how-to infinite reel to native touch scroll (free, GPU-friendly)
         Hide duplicate cards that only exist for the CSS animation loop */
  .ca-lp-howto__reel {
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
  }
  .ca-lp-howto__reel::before,
  .ca-lp-howto__reel::after { display: none; }
  .ca-lp-howto__reel-track {
    animation: none !important;
    width: auto;
    padding: 0 20px 16px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }
  .ca-lp-howto__card { scroll-snap-align: start; }
  .ca-lp-howto__card[aria-hidden="true"] { display: none; }

  /* 4 — Simplify box-shadow on checkout (large blur = many GPU passes) */
  .ca-lp-checkout { box-shadow: 0 -8px 24px rgba(0,0,0,0.18); }

  /* 5 — Remove shimmer from buy button (unnecessary animation on mobile) */
  .ca-lp-pulse { animation: none !important; opacity: 0.5; }

  /* 6 — Simplify howto card hover effects (no hover on touch) */
  .ca-lp-howto__card img { transition: none; }
  .ca-lp-howto__card-text { opacity: 1; transform: none; }
}


/* ═══════════════════════════════════════════
   ALL MOTION DISABLED — every page renders in its
   final, static state; nothing animates on load or scroll.
═══════════════════════════════════════════ */
  .ca-lp-hero__amb--a,
  .ca-lp-hero__amb--b,
  .ca-lp-hero__trust-track,
  .ca-lp-howto__reel-track,
  .ca-lp-pulse,
  .ca-lp-spinner {
    animation: none !important;
  }
  .ca-lp-reveal,
  .ca-lp-reveal-zoom,
  .ca-lp-reveal-left,
  .ca-lp-reveal-scale,
  .ca-lp-stagger-child {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
  .ca-lp-faq__answer {
    grid-template-rows: 0fr !important;
    transition: none !important;
  }
  .ca-lp-faq__item.is-open .ca-lp-faq__answer {
    grid-template-rows: 1fr !important;
  }
  .ca-lp-faq__q-icon svg { transition: none !important; }
  .ca-lp-carousel__track { scroll-behavior: auto; }
  .ca-lp-carousel__slide img { transition: none; }
  .ca-lp-hero__inner { transform: none !important; opacity: 1 !important; }


/* ═══════════════════════════════════════════
   PREMIUM MOBILE CAROUSEL — CERTS SECTION
   Feature cards: scroll-snap + auto-advance
   Cert strip: infinite marquee ticker
═══════════════════════════════════════════ */

/* Dot indicator — hidden on desktop, shown on mobile */
.ca-lp-feats-dots {
  display: none;
  justify-content: center;
  align-items: center;
  gap: 8px;
  padding: 18px 0 4px;
}
.ca-lp-feats-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(13,13,13,0.16);
  border: none;
  padding: 0;
  cursor: pointer;
  flex-shrink: 0;
  transition: width 0.4s cubic-bezier(0.34,1.56,0.64,1),
              border-radius 0.4s cubic-bezier(0.34,1.56,0.64,1),
              background 0.3s ease;
}
.ca-lp-feats-dot.is-on {
  width: 28px;
  border-radius: 4px;
  background: var(--lp-red);
}

/* Marquee track — injected by JS into the cert strip */
@keyframes lp-cert-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.ca-lp-cert-track {
  display: flex;
  width: max-content;
  will-change: transform;
  animation: lp-cert-scroll 26s linear infinite;
}

/* Strip in marquee mode */
.ca-lp-cert-strip.is-marquee {
  overflow: hidden;
  flex-wrap: nowrap;
  border-radius: 0;
  border: none;
  box-shadow: none;
  background: var(--lp-dark);
  padding: 0;
  position: relative;
}
.ca-lp-cert-strip.is-marquee::before,
.ca-lp-cert-strip.is-marquee::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 52px;
  z-index: 2;
  pointer-events: none;
}
.ca-lp-cert-strip.is-marquee::before {
  left: 0;
  background: linear-gradient(to right, var(--lp-dark) 10%, transparent 100%);
}
.ca-lp-cert-strip.is-marquee::after {
  right: 0;
  background: linear-gradient(to left, var(--lp-dark) 10%, transparent 100%);
}
.ca-lp-cert-strip.is-marquee .ca-lp-cert {
  flex: 0 0 auto;
  width: 144px;
  flex-direction: column;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.07);
  border-bottom: none;
  padding: 22px 14px;
  background: transparent;
}
.ca-lp-cert-strip.is-marquee .ca-lp-cert > span {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.04em;
}
.ca-lp-cert-strip.is-marquee .ca-lp-cert > small {
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--lp-red);
  margin: 3px 0 6px;
  display: block;
}
.ca-lp-cert-strip.is-marquee .ca-lp-cert > p {
  font-size: 0.66rem;
  color: rgba(255,255,255,0.36);
  line-height: 1.35;
  margin: 0;
}

@media (max-width: 768px) {
  .ca-lp-certs { padding: 52px 0 56px; }
  .ca-lp-certs__wrap { padding: 0; }
  .ca-lp-certs__wrap .ca-lp-section-header { padding: 0 24px; margin-bottom: 32px; }

  /* Feature cards: horizontal scroll-snap carousel */
  .ca-lp-features-grid {
    display: flex !important;
    grid-template-columns: unset !important;
    overflow-x: scroll;
    scroll-snap-type: x mandatory;
    scroll-padding-left: 20px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    gap: 12px;
    padding: 8px 20px 14px;
    margin-bottom: 0;
  }
  .ca-lp-features-grid::-webkit-scrollbar { display: none; }

  .ca-lp-feat {
    flex: 0 0 calc(100vw - 72px);
    max-width: 390px;
    scroll-snap-align: start;
    opacity: 0.42;
    transform: scale(0.96);
    box-shadow: none !important;
    transition: opacity 0.38s ease, transform 0.38s ease, box-shadow 0.38s ease;
  }
  .ca-lp-feat.is-active {
    opacity: 1;
    transform: scale(1);
    box-shadow: 0 10px 40px rgba(0,0,0,0.13) !important;
  }
  .ca-lp-feat:hover { transform: scale(1); }

  .ca-lp-feats-dots { display: flex; }

  .ca-lp-cert-strip { margin-top: 32px; }
}

@media (prefers-reduced-motion: reduce) {
  .ca-lp-cert-track { animation-play-state: paused; }
  .ca-lp-feat { opacity: 1 !important; transform: none !important; }
  .ca-lp-feat.is-active { box-shadow: 0 4px 16px rgba(0,0,0,0.08) !important; }
}
