/* ==========================================================================
   Shop page — laarish.com/shop
   Premium editorial template:
   hero · trust marquee · sticky sub-nav · featured kit showcase · kit grid
   · why · how · compare · testimonials slider · faq · final CTA
   · sticky buy bar · lightbox · notify modal
   Tokens come from tokens.css; only purple-button is added here.
   ========================================================================== */

/* ---- Missing button variant -------------------------------------------- */
.btn--purple { background-color: var(--color-purple); color: var(--color-white); }
.btn--purple:hover { background-color: #7B5FD9; color: var(--color-white); }

/* ---- Section helpers (page-local) -------------------------------------- */
.section__head { max-width: 44rem; margin: 0 auto var(--space-5); text-align: left; }
.section__head--center { text-align: center; }
.section__eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-teal-700);
  margin-bottom: var(--space-2);
}
.section__title { margin: 0 0 var(--space-2); }
.section__lead {
  margin: 0;
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.55;
}
.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0);
  white-space: nowrap; border: 0;
}

/* ---- Reveal-on-scroll utility ------------------------------------------ */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 700ms cubic-bezier(.22,1,.36,1), transform 700ms cubic-bezier(.22,1,.36,1);
  will-change: opacity, transform;
}
[data-reveal].is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  [data-reveal] { opacity: 1; transform: none; transition: none; }
}

/* ==========================================================================
   1) HERO — editorial split with floating motifs
   ========================================================================== */
.shop-hero {
  position: relative;
  background:
    radial-gradient(circle at 88% 12%, rgba(255, 210, 0, 0.18), transparent 55%),
    radial-gradient(circle at 8% 90%, rgba(0, 201, 167, 0.16), transparent 60%),
    var(--color-cream);
  overflow: hidden;
  padding-block: clamp(3rem, 7vw, 6rem);
}
.shop-hero__bg {
  position: absolute; inset: 0; pointer-events: none; z-index: 0;
}
.shop-hero__blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.55;
  animation: blob-float 14s ease-in-out infinite;
}
.shop-hero__blob--a {
  width: 320px; height: 320px;
  background: rgba(0, 201, 167, 0.35);
  top: -60px; left: -80px;
}
.shop-hero__blob--b {
  width: 360px; height: 360px;
  background: rgba(255, 210, 0, 0.32);
  bottom: -100px; right: -60px;
  animation-delay: -4s;
}
.shop-hero__blob--c {
  width: 220px; height: 220px;
  background: rgba(155, 127, 232, 0.28);
  top: 40%; left: 45%;
  animation-delay: -8s;
}
@keyframes blob-float {
  0%,100% { transform: translate(0,0) scale(1); }
  50% { transform: translate(20px,-24px) scale(1.06); }
}
@media (prefers-reduced-motion: reduce) {
  .shop-hero__blob { animation: none; }
}

.shop-hero__inner {
  position: relative; z-index: 1;
  display: grid; gap: var(--space-6);
  grid-template-columns: 1fr;
  align-items: center;
}
@media (min-width: 980px) {
  .shop-hero__inner { grid-template-columns: 1.05fr 0.95fr; gap: var(--space-7); }
}

.shop-hero__copy { max-width: 36rem; }
.shop-hero__eyebrow {
  display: inline-flex; align-items: center; gap: 0.55rem;
  padding: 0.4rem 0.9rem;
  background: var(--color-white);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-pill);
  font-size: 0.82rem; font-weight: 600;
  color: var(--color-navy);
  margin-bottom: var(--space-4);
  box-shadow: 0 4px 14px rgba(26, 20, 51, 0.05);
}
.shop-hero__pulse {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--color-green);
  position: relative;
  flex: none;
}
.shop-hero__pulse::after {
  content: ''; position: absolute; inset: -4px; border-radius: 50%;
  background: var(--color-green); opacity: 0.4;
  animation: pulse-ring 1.8s ease-out infinite;
}
@keyframes pulse-ring {
  0%   { transform: scale(0.6); opacity: 0.5; }
  100% { transform: scale(1.8); opacity: 0; }
}

.shop-hero__title {
  font-family: var(--font-heading);
  color: var(--color-navy);
  font-size: clamp(2.25rem, 4.4vw, 3.6rem);
  line-height: 1.08;
  margin: 0 0 var(--space-3);
  letter-spacing: -0.01em;
}
.shop-hero__title em {
  font-family: var(--font-accent);
  font-style: italic;
  font-weight: 400;
  color: var(--color-teal-700);
}
.shop-hero__sub {
  font-size: clamp(1rem, 1.5vw, 1.18rem);
  color: var(--text-muted);
  line-height: 1.55;
  margin: 0 0 var(--space-5);
  max-width: 32rem;
}
.shop-hero__ctas {
  display: flex; flex-wrap: wrap; gap: var(--space-2);
  margin-bottom: var(--space-5);
}
.shop-hero__ctas .btn svg { transition: transform var(--t-base); }
.shop-hero__ctas .btn:hover svg { transform: translateX(4px); }

.shop-hero__stats {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: var(--space-3);
  list-style: none; padding: 0; margin: 0;
  border-top: 1px solid var(--border-soft);
  padding-top: var(--space-3);
}
.shop-hero__stats li { display: flex; flex-direction: column; gap: 0.15rem; }
.shop-hero__stats strong {
  font-family: var(--font-heading);
  font-weight: 800;
  color: var(--color-navy);
  font-size: clamp(1.4rem, 2.5vw, 1.8rem);
  line-height: 1;
}
.shop-hero__stats span {
  font-size: 0.82rem; color: var(--text-muted);
}

/* Hero art (right column) ------------------------------------------------ */
.shop-hero__art {
  position: relative;
  display: flex; align-items: center; justify-content: center;
  min-height: 320px;
}
.shop-hero__card {
  position: relative;
  width: min(440px, 90%);
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--color-white);
  box-shadow:
    0 30px 60px rgba(26, 20, 51, 0.18),
    0 4px 12px rgba(26, 20, 51, 0.06);
  transform: rotate(-2deg);
  transition: transform var(--t-slow);
}
.shop-hero__card:hover { transform: rotate(-1deg) translateY(-4px); }
.shop-hero__card img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.shop-hero__chip {
  position: absolute;
  display: inline-flex; align-items: center; gap: 0.4rem;
  padding: 0.45rem 0.85rem;
  background: var(--color-white);
  color: var(--color-navy);
  border-radius: var(--radius-pill);
  font-size: 0.82rem;
  font-weight: 700;
  box-shadow: 0 8px 20px rgba(26, 20, 51, 0.12);
}
.shop-hero__chip--top {
  top: var(--space-3); left: var(--space-3);
  background: var(--color-yellow);
}
.shop-hero__chip--bottom {
  bottom: var(--space-3); right: var(--space-3);
  color: var(--color-teal-700);
}
.shop-hero__chip--bottom svg { color: var(--color-yellow); }

.shop-hero__sticker {
  position: absolute;
  width: 56px; height: 56px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: var(--color-white);
  box-shadow: 0 10px 24px rgba(26, 20, 51, 0.16);
  animation: sticker-bob 5s ease-in-out infinite;
}
.shop-hero__sticker svg { width: 28px; height: 28px; }
.shop-hero__sticker--seed {
  top: 8%; left: -4%;
  color: var(--color-green);
  animation-delay: -1.5s;
}
.shop-hero__sticker--spark {
  bottom: 10%; right: -3%;
  color: var(--color-orange);
}
@keyframes sticker-bob {
  0%,100% { transform: translateY(0) rotate(-6deg); }
  50%     { transform: translateY(-10px) rotate(6deg); }
}
@media (prefers-reduced-motion: reduce) {
  .shop-hero__sticker { animation: none; }
}

/* ==========================================================================
   2) TRUST MARQUEE
   ========================================================================== */
.trust-bar {
  background-color: var(--color-navy);
  color: var(--color-white);
  border-block: 1px solid rgba(255,255,255,0.06);
  padding-block: 0.9rem;
  overflow: hidden;
  position: relative;
}
.trust-bar::before,
.trust-bar::after {
  content: ''; position: absolute; top: 0; bottom: 0; width: 80px;
  pointer-events: none; z-index: 2;
}
.trust-bar::before {
  left: 0;
  background: linear-gradient(to right, var(--color-navy), transparent);
}
.trust-bar::after {
  right: 0;
  background: linear-gradient(to left, var(--color-navy), transparent);
}
.trust-bar__track {
  display: flex; gap: var(--space-5);
  width: max-content;
  animation: marquee 40s linear infinite;
}
.trust-bar:hover .trust-bar__track { animation-play-state: paused; }
.trust-bar__group {
  display: flex; align-items: center;
  gap: var(--space-5);
  flex: none;
  padding-right: var(--space-5);
}
.trust-bar__dot {
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--color-yellow);
  flex: none;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .trust-bar__track { animation: none; flex-wrap: wrap; justify-content: center; }
}

.trust-signal {
  display: inline-flex; align-items: center; gap: 0.55rem;
  color: var(--color-white);
  font-size: 0.88rem;
  font-weight: 500;
  white-space: nowrap;
}
.trust-signal__icon {
  width: 20px; height: 20px;
  color: var(--color-yellow);
  flex: none;
}

/* ==========================================================================
   3) STICKY SUB-NAV (with smooth-scroll anchors + persistent CTA)
   ========================================================================== */
.shop-subnav {
  position: sticky;
  top: var(--header-height);
  z-index: 50;
  background: rgba(255, 248, 231, 0.92);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid transparent;
  transition: box-shadow 280ms ease, border-color 280ms ease;
}
.shop-subnav.is-pinned {
  box-shadow: 0 6px 20px rgba(26, 20, 51, 0.06);
  border-bottom-color: var(--border-soft);
}

.shop-subnav__inner {
  display: flex; align-items: center; gap: var(--space-3);
  height: 60px;
}
.shop-subnav__links {
  display: flex; gap: 0.25rem; flex: 1; min-width: 0;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.shop-subnav__links::-webkit-scrollbar { display: none; }
.shop-subnav__link {
  display: inline-block;
  padding: 0.5rem 0.9rem;
  border-radius: var(--radius-pill);
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text-muted);
  text-decoration: none;
  white-space: nowrap;
  transition: background-color var(--t-base), color var(--t-base);
  border-bottom: 0;
}
.shop-subnav__link:hover { background: rgba(26, 20, 51, 0.06); color: var(--color-navy); }
.shop-subnav__link.is-active { background: var(--color-navy); color: var(--color-white); }

.shop-subnav__cta {
  display: none;
  align-items: center; gap: var(--space-2);
}
.shop-subnav__price {
  font-family: var(--font-heading);
  font-weight: 800;
  color: var(--color-navy);
  font-size: 1.05rem;
}
.shop-subnav__cta .btn { padding: 0.55rem 1rem; font-size: 0.92rem; border-radius: var(--radius-pill); }
@media (min-width: 768px) { .shop-subnav__cta { display: inline-flex; } }

/* ==========================================================================
   4) FEATURED KIT — premium showcase with gallery + tabs
   ========================================================================== */
.featured__inner {
  display: grid; gap: var(--space-6);
  grid-template-columns: minmax(0, 1fr);
  align-items: start;
}
.featured__inner > * { min-width: 0; }
@media (min-width: 980px) {
  .featured__inner { grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr); gap: var(--space-7); }
}

/* Gallery -------------------------------------------------------------- */
.featured__gallery {
  display: flex; flex-direction: column; gap: var(--space-3);
  position: relative;
}
@media (min-width: 980px) {
  .featured__gallery { position: sticky; top: calc(var(--header-height) + 80px); }
}
.featured__stage {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--color-white);
  box-shadow: 0 24px 60px rgba(26, 20, 51, 0.14);
}
.featured__badge {
  position: absolute;
  top: var(--space-3); left: var(--space-3); z-index: 3;
  padding: 0.4rem 0.85rem;
  background: var(--color-green);
  color: var(--color-white);
  border-radius: var(--radius-pill);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.featured__zoom {
  position: absolute;
  top: var(--space-3); right: var(--space-3); z-index: 3;
  width: 40px; height: 40px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: var(--color-white);
  border: 0;
  color: var(--color-navy);
  cursor: pointer;
  box-shadow: 0 6px 16px rgba(26, 20, 51, 0.12);
  transition: transform var(--t-base), background-color var(--t-base);
}
.featured__zoom:hover { transform: scale(1.08); background: var(--color-yellow); }

.featured__slides { position: relative; width: 100%; height: 100%; }
.featured__slide {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
  display: block;
  opacity: 0;
  transform: scale(1.04);
  transition: opacity 480ms ease, transform 700ms ease;
}
.featured__slide.is-active {
  opacity: 1; transform: scale(1);
}

.featured__thumbs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-2);
}
.featured__thumb {
  appearance: none; padding: 0; border: 2px solid transparent;
  border-radius: var(--radius-md);
  overflow: hidden; cursor: pointer;
  background: var(--color-cream);
  aspect-ratio: 1 / 1;
  transition: border-color var(--t-base), transform var(--t-base);
}
.featured__thumb img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform var(--t-base);
}
.featured__thumb:hover img { transform: scale(1.06); }
.featured__thumb.is-active {
  border-color: var(--color-navy);
  box-shadow: 0 0 0 3px rgba(26, 20, 51, 0.08);
}

/* Detail ----------------------------------------------------------------- */
.featured__detail { display: flex; flex-direction: column; gap: var(--space-3); }
.featured__meta {
  display: flex; flex-wrap: wrap; align-items: center;
  gap: var(--space-3);
}
.featured__age {
  padding: 0.3rem 0.7rem;
  background: var(--color-yellow);
  color: var(--color-navy);
  border-radius: var(--radius-pill);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.featured__rating {
  display: inline-flex; align-items: center; gap: 0.2rem;
  color: var(--color-yellow);
}
.featured__rating-text {
  margin-left: 0.4rem;
  color: var(--text-muted);
  font-size: 0.85rem; font-weight: 500;
}
.featured__title {
  margin: 0;
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3.2vw, 2.6rem);
  color: var(--color-navy);
  line-height: 1.1;
}
.featured__tagline {
  margin: 0;
  font-family: var(--font-accent);
  font-style: italic;
  color: var(--text-muted);
  font-size: 1.1rem; line-height: 1.4;
}

.featured__price-row {
  display: flex; flex-wrap: wrap; align-items: end; justify-content: space-between;
  gap: var(--space-2);
  padding: var(--space-3) 0;
  border-block: 1px solid var(--border-soft);
}
.featured__price-amount {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  color: var(--color-navy);
  line-height: 1;
  display: block;
}
.featured__price-meta {
  display: block;
  margin-top: 0.25rem;
  color: var(--text-muted);
  font-size: 0.85rem;
}
.featured__instock {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: 0.9rem; font-weight: 600;
  color: var(--color-teal-700);
}
.featured__dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--color-green);
  box-shadow: 0 0 0 4px rgba(91, 196, 112, 0.18);
}

.featured__highlights {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: var(--space-2) var(--space-3);
}
.featured__highlight {
  display: flex; align-items: center; gap: 0.55rem;
  font-size: 0.92rem; color: var(--color-navy); font-weight: 500;
}
.featured__highlight svg {
  width: 22px; height: 22px;
  color: var(--color-teal);
  flex: none;
}

/* Tabs */
.featured__tabs { margin-top: var(--space-2); }
.featured__tablist {
  display: flex; gap: 0.25rem;
  border-bottom: 1px solid var(--border-soft);
  margin-bottom: var(--space-3);
  overflow-x: auto;
  scrollbar-width: none;
}
.featured__tablist::-webkit-scrollbar { display: none; }
.featured__tab {
  appearance: none; background: transparent; border: 0;
  padding: 0.65rem 0.25rem;
  margin-right: var(--space-3);
  font: inherit;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-muted);
  cursor: pointer;
  position: relative;
  white-space: nowrap;
  transition: color var(--t-base);
}
.featured__tab::after {
  content: ''; position: absolute;
  left: 0; right: 0; bottom: -1px; height: 2px;
  background: var(--color-navy);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 240ms ease;
}
.featured__tab:hover { color: var(--color-navy); }
.featured__tab.is-active { color: var(--color-navy); }
.featured__tab.is-active::after { transform: scaleX(1); }

.featured__panel { animation: panel-fade 280ms ease both; }
.featured__panel[hidden] { display: none; }
@keyframes panel-fade { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: none; } }

.featured__inside {
  margin: 0; padding: 0; list-style: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.5rem var(--space-3);
}
.featured__inside li {
  display: flex; align-items: center; gap: 0.6rem;
  font-size: 0.95rem; color: var(--color-navy);
}
.featured__inside-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--c, var(--color-teal));
  flex: none;
}
.featured__panel p {
  margin: 0;
  color: var(--text-primary);
  line-height: 1.6;
  font-size: 0.98rem;
}

.featured__ctas {
  display: flex; flex-wrap: wrap; gap: var(--space-2);
  margin-top: var(--space-3);
}
.featured__guarantee {
  margin: 0;
  display: inline-flex; align-items: center; gap: 0.5rem;
  color: var(--text-muted);
  font-size: 0.85rem;
}
.featured__guarantee svg { color: var(--color-teal); flex: none; }

/* "Just launched" tag — used instead of a star rating on brand-new kits */
.featured__newtag {
  display: inline-flex; align-items: center; gap: 0.35rem;
  padding: 0.3rem 0.7rem;
  background: rgba(0, 201, 167, 0.14);
  color: var(--color-teal-700);
  border-radius: var(--radius-pill);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* ---- Featured carousel: side-scrolling showcase of multiple kits -------- */
.featured__bar {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: var(--space-3) var(--space-4);
  margin-bottom: var(--space-5);
}
.featured__bar-copy { max-width: 38rem; }
.featured__bar-copy .section__title { margin: 0; }

.featured__switch {
  display: flex;
  gap: 0.3rem;
  background: var(--color-white);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-pill);
  padding: 0.3rem;
}
.featured__switch-btn {
  appearance: none;
  border: 0;
  background: transparent;
  color: var(--text-muted);
  font: inherit;
  font-weight: 700;
  font-size: 0.9rem;
  padding: 0.5rem 1.05rem;
  border-radius: var(--radius-pill);
  cursor: pointer;
  white-space: nowrap;
  transition: background-color var(--t-base), color var(--t-base);
}
.featured__switch-btn:hover { color: var(--color-navy); }
.featured__switch-btn.is-active { background: var(--color-navy); color: var(--color-white); }

.featured-carousel { position: relative; }

.featured-track {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.featured-track::-webkit-scrollbar { display: none; }
@media (prefers-reduced-motion: reduce) {
  .featured-track { scroll-behavior: auto; }
}

.featured-panel {
  flex: 0 0 100%;
  width: 100%;
  scroll-snap-align: start;
  scroll-snap-stop: always;
}
/* Inside a horizontal scroller the gallery must not stick vertically */
.featured-panel .featured__gallery { position: static; top: auto; }

.featured-arrow {
  position: absolute;
  /* Align with the gallery image (the panel's top ~75%), not the full height */
  top: 38%;
  transform: translateY(-50%);
  z-index: 4;
  width: 48px; height: 48px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 50%;
  border: 1px solid var(--border-soft);
  background: var(--color-white);
  color: var(--color-navy);
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(26, 20, 51, 0.16);
  transition: background-color var(--t-base), color var(--t-base), transform var(--t-base), opacity var(--t-base);
}
.featured-arrow:hover { background: var(--color-navy); color: var(--color-white); }
.featured-arrow:active { transform: translateY(-50%) scale(0.94); }
.featured-arrow[disabled] { opacity: 0; pointer-events: none; }
.featured-arrow--prev { left: max(var(--space-3), calc(50% - var(--container-max) / 2 + var(--space-2))); }
.featured-arrow--next { right: max(var(--space-3), calc(50% - var(--container-max) / 2 + var(--space-2))); }

/* Hide side arrows once the panel stacks to one column — swipe + pills lead */
@media (max-width: 979px) {
  .featured-arrow { display: none; }
}
@media (max-width: 767px) {
  .featured__bar { flex-direction: column; align-items: stretch; }
  .featured__switch { width: 100%; justify-content: space-between; }
  .featured__switch-btn { flex: 1 1 0; padding: 0.5rem 0.4rem; font-size: 0.82rem; text-align: center; }
}

/* ==========================================================================
   5) KIT GRID — refined cards with hover overlay + filter pills
   ========================================================================== */
.kit-filters {
  display: flex; flex-wrap: wrap; gap: 0.4rem;
  margin-bottom: var(--space-5);
}
.kit-filter {
  appearance: none;
  padding: 0.5rem 1rem;
  border: 1px solid var(--border-soft);
  background: var(--color-white);
  color: var(--color-navy);
  border-radius: var(--radius-pill);
  font: inherit;
  font-weight: 600;
  font-size: 0.88rem;
  cursor: pointer;
  transition: background-color var(--t-base), color var(--t-base), border-color var(--t-base), transform var(--t-base);
}
.kit-filter:hover { transform: translateY(-1px); border-color: var(--color-navy); }
.kit-filter.is-active {
  background: var(--color-navy); color: var(--color-white); border-color: var(--color-navy);
}

.kit-grid {
  display: grid; grid-template-columns: 1fr;
  gap: var(--space-4);
}
@media (min-width: 600px) { .kit-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .kit-grid { grid-template-columns: repeat(3, 1fr); } }

.kit-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex; flex-direction: column;
  box-shadow: var(--shadow-card);
  transition: transform var(--t-base), box-shadow var(--t-base);
  position: relative;
}
.kit-card.is-hidden { display: none; }
.kit-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 44px rgba(26, 20, 51, 0.16);
}

.kit-card__media {
  position: relative;
  background: var(--color-cream);
  aspect-ratio: 4 / 4.4;
  overflow: hidden;
}
.kit-card__media img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform var(--t-slow);
}
.kit-card:hover .kit-card__media img { transform: scale(1.06); }
.kit-card__media--yellow { background: #FFF1A8; }
.kit-card__media--orange { background: #FFE2D1; }

/* Mystery card */
.kit-card__media--mystery {
  background:
    radial-gradient(circle at 30% 30%, rgba(155, 127, 232, 0.30), transparent 60%),
    radial-gradient(circle at 70% 70%, rgba(0, 201, 167, 0.18), transparent 55%),
    var(--color-navy);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center;
  padding: var(--space-5);
  color: var(--color-white);
}
.kit-card__media-mark {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 2.2rem;
  letter-spacing: 0.05em;
  color: var(--color-white);
}
.kit-card__media-tagline {
  margin-top: 0.25rem;
  font-family: var(--font-body);
  font-size: 0.85rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-purple);
}

/* Coming-soon gradient media — used when a kit has no product photo yet */
.kit-card__media--coming {
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center;
  padding: var(--space-5);
  color: var(--color-white);
}
.kit-card__media--coming-electro {
  background:
    radial-gradient(circle at 28% 26%, rgba(255, 210, 0, 0.32), transparent 60%),
    radial-gradient(circle at 74% 76%, rgba(255, 107, 43, 0.30), transparent 55%),
    var(--color-navy);
}
.kit-card__coming-icon {
  width: 64px; height: 64px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.14);
  color: var(--color-yellow);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.18);
}
.kit-card__coming-icon svg { width: 30px; height: 30px; }
.kit-card__coming-label {
  margin-top: var(--space-2);
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
}

/* Status badges */
.kit-card__badge {
  position: absolute;
  top: var(--space-2); left: var(--space-2);
  z-index: 2;
  padding: 0.32rem 0.7rem;
  border-radius: var(--radius-pill);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.kit-card__badge--available { background: var(--color-green); color: var(--color-white); }
.kit-card__badge--soon      { background: #F2A93A; color: var(--color-navy); }
.kit-card__badge--mystery   { background: var(--color-purple); color: var(--color-white); }

/* Floating price pill */
.kit-card__pricepill {
  position: absolute;
  top: var(--space-2); right: var(--space-2);
  z-index: 2;
  padding: 0.4rem 0.8rem;
  background: var(--color-white);
  color: var(--color-navy);
  border-radius: var(--radius-pill);
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.92rem;
  box-shadow: 0 6px 18px rgba(26, 20, 51, 0.14);
}

/* Hover overlay with quick actions */
.kit-card__hover {
  position: absolute;
  inset: auto var(--space-2) var(--space-2) var(--space-2);
  z-index: 2;
  display: flex; flex-direction: column; gap: 0.5rem;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity var(--t-base), transform var(--t-base);
  pointer-events: none;
}
.kit-card__hover-link {
  display: inline-block;
  text-align: center;
  font-size: 0.85rem;
  color: var(--color-white);
  text-decoration: none;
  background: rgba(26, 20, 51, 0.7);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  padding: 0.5rem;
  border-radius: var(--radius-sm);
  border-bottom: 0;
}
.kit-card__hover-link:hover { background: var(--color-navy); color: var(--color-yellow); }
.kit-card:hover .kit-card__hover,
.kit-card:focus-within .kit-card__hover {
  opacity: 1; transform: translateY(0); pointer-events: auto;
}
@media (hover: none) {
  .kit-card__hover { opacity: 1; transform: none; pointer-events: auto; }
}

/* Body */
.kit-card__body {
  padding: var(--space-3) var(--space-3) var(--space-4);
  display: flex; flex-direction: column;
  gap: 0.4rem;
}
.kit-card__age {
  align-self: flex-start;
  padding: 0.2rem 0.55rem;
  border-radius: var(--radius-pill);
  background: var(--color-cream);
  color: var(--color-navy);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.kit-card__title {
  margin: 0;
  font-family: var(--font-heading);
  font-size: 1.15rem;
  color: var(--color-navy);
  line-height: 1.2;
}
.kit-card__tagline {
  margin: 0;
  font-family: var(--font-accent);
  font-style: italic;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.4;
}
.kit-card__chips {
  list-style: none; margin: 0.4rem 0 0; padding: 0;
  display: flex; flex-wrap: wrap; gap: 0.3rem;
}
.kit-card__chips li {
  font-size: 0.74rem;
  font-weight: 600;
  color: var(--text-muted);
  padding: 0.18rem 0.55rem;
  background: var(--color-cream);
  border-radius: var(--radius-pill);
}

/* ==========================================================================
   6) WHY LAARISH — pillar cards
   ========================================================================== */
.why-grid {
  display: grid; grid-template-columns: 1fr;
  gap: var(--space-4);
}
@media (min-width: 768px) { .why-grid { grid-template-columns: repeat(3, 1fr); } }

.why-card {
  position: relative;
  padding: var(--space-5) var(--space-4);
  background: var(--color-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  transition: transform var(--t-base), box-shadow var(--t-base);
  overflow: hidden;
}
.why-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(26, 20, 51, 0.12);
}
.why-card__num {
  position: absolute;
  top: var(--space-3); right: var(--space-3);
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 2rem;
  color: rgba(26, 20, 51, 0.06);
  line-height: 1;
}
.why-card__icon {
  width: 56px; height: 56px;
  border-radius: var(--radius-md);
  display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: var(--space-3);
  transition: transform var(--t-base);
}
.why-card:hover .why-card__icon { transform: rotate(-6deg) scale(1.05); }
.why-card__icon svg { width: 28px; height: 28px; }
.why-card__icon--teal   { background: rgba(0, 201, 167, 0.12); color: var(--color-teal-700); }
.why-card__icon--green  { background: rgba(91, 196, 112, 0.16); color: #3FA651; }
.why-card__icon--purple { background: rgba(155, 127, 232, 0.16); color: #6B48C9; }
.why-card__title {
  margin: 0 0 0.4rem;
  font-family: var(--font-heading);
  font-size: 1.25rem;
  color: var(--color-navy);
}
.why-card p { margin: 0; color: var(--text-muted); line-height: 1.55; }

/* ==========================================================================
   7) HOW IT WORKS — connected timeline
   ========================================================================== */
.how-steps {
  list-style: none; padding: 0; margin: 0;
  display: grid; grid-template-columns: 1fr;
  gap: var(--space-4);
  position: relative;
}
@media (min-width: 768px) {
  .how-steps {
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-5);
  }
  .how-steps::before {
    content: '';
    position: absolute;
    top: 36px; left: 14%; right: 14%;
    height: 2px;
    background-image: linear-gradient(to right, var(--color-teal) 50%, transparent 50%);
    background-size: 12px 2px;
    background-repeat: repeat-x;
    opacity: 0.45;
    z-index: 0;
  }
}

.how-step {
  position: relative; z-index: 1;
  padding: var(--space-4);
  background: var(--color-cream);
  border-radius: var(--radius-lg);
  text-align: left;
  transition: transform var(--t-base);
}
.how-step:hover { transform: translateY(-4px); }
.how-step__num {
  position: absolute;
  top: -18px; left: var(--space-4);
  width: 36px; height: 36px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: var(--color-yellow);
  color: var(--color-navy);
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.05rem;
  box-shadow: 0 6px 16px rgba(255, 210, 0, 0.4);
}
.how-step__icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 44px; height: 44px;
  margin-top: var(--space-2);
  margin-bottom: var(--space-2);
  border-radius: var(--radius-md);
  background: var(--color-white);
  color: var(--color-teal-700);
}
.how-step__icon svg { width: 22px; height: 22px; }
.how-step__title {
  margin: 0 0 0.4rem;
  font-family: var(--font-heading);
  font-size: 1.15rem;
  color: var(--color-navy);
}
.how-step p { margin: 0; color: var(--text-muted); font-size: 0.95rem; line-height: 1.5; }

/* ==========================================================================
   8) COMPARE TABLE
   ========================================================================== */
.compare__wrap {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  overflow: hidden;
  overflow-x: auto;
}
.compare__table {
  width: 100%;
  border-collapse: collapse;
  min-width: 720px;
}
.compare__table th,
.compare__table td {
  padding: var(--space-3) var(--space-3);
  text-align: left;
  border-bottom: 1px solid var(--border-soft);
  font-size: 0.95rem;
  vertical-align: middle;
}
.compare__table thead th {
  background: var(--color-cream);
  border-bottom: 1px solid var(--border-soft);
}
.compare__h {
  font-family: var(--font-heading);
  font-size: 1rem;
  color: var(--color-navy);
  font-weight: 800;
  white-space: nowrap;
}
.compare__h--featured {
  background: rgba(255, 210, 0, 0.18) !important;
  position: relative;
}
.compare__h--featured::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: -1px;
  height: 3px; background: var(--color-yellow);
}
.compare__chip {
  display: block;
  font-size: 0.65rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-white);
  background: var(--color-green);
  padding: 0.18rem 0.5rem;
  border-radius: var(--radius-pill);
  font-weight: 700;
  margin-bottom: 0.4rem;
  width: max-content;
}
.compare__chip--soon { background: #F2A93A; color: var(--color-navy); }
.compare__chip--mystery { background: var(--color-purple); }
.compare__table tbody th[scope="row"] {
  font-family: var(--font-heading);
  color: var(--color-navy);
  font-weight: 700;
  width: 22%;
  background: rgba(26, 20, 51, 0.02);
}
.compare__yes {
  display: inline-flex; align-items: center; justify-content: center;
  width: 28px; height: 28px; border-radius: 50%;
  background: rgba(91, 196, 112, 0.18);
  color: #3FA651;
  font-weight: 800;
}
.compare__no {
  color: var(--text-muted); font-weight: 700;
}
.compare__cta-row td { padding-top: var(--space-3); padding-bottom: var(--space-3); border-bottom: 0; }
.compare__cta-row .btn { padding: 0.6rem 0.9rem; font-size: 0.88rem; }

/* ==========================================================================
   9) TESTIMONIALS — slider
   ========================================================================== */
.t-slider {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: var(--space-3);
}
.t-slider__viewport {
  overflow: hidden;
  border-radius: var(--radius-lg);
}
.t-slider__track {
  list-style: none; padding: 0; margin: 0;
  display: flex;
  transition: transform 480ms cubic-bezier(.22,1,.36,1);
}
.t-card {
  flex: 0 0 100%;
  padding: var(--space-5);
  background: var(--color-cream);
  display: flex; flex-direction: column; gap: var(--space-3);
  min-height: 280px;
}
@media (min-width: 768px) {
  .t-card { padding: var(--space-6) var(--space-7); }
}
.t-card__stars { display: inline-flex; gap: 2px; color: var(--color-yellow); }
.t-card__stars svg { width: 18px; height: 18px; }
.t-card__quote {
  margin: 0;
  font-family: var(--font-accent);
  font-style: italic;
  font-size: clamp(1.15rem, 2vw, 1.5rem);
  line-height: 1.45;
  color: var(--color-navy);
}
.t-card__meta {
  display: flex; align-items: center; gap: var(--space-3);
  margin-top: auto;
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.4;
}
.t-card__meta strong { color: var(--color-navy); }
.t-card__avatar {
  width: 44px; height: 44px;
  flex: none;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: var(--color-yellow);
  color: var(--color-navy);
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.1rem;
}

.t-slider__nav {
  appearance: none;
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1px solid var(--border-soft);
  background: var(--color-white);
  color: var(--color-navy);
  cursor: pointer;
  display: inline-flex; align-items: center; justify-content: center;
  transition: background-color var(--t-base), color var(--t-base), transform var(--t-base);
  flex: none;
}
.t-slider__nav:hover {
  background: var(--color-navy); color: var(--color-white);
  transform: translateY(-1px);
}
.t-slider__nav[disabled] { opacity: 0.35; cursor: not-allowed; }

.t-slider__dots {
  position: absolute;
  bottom: -28px;
  left: 50%; transform: translateX(-50%);
  display: flex; gap: 6px;
}
.t-slider__dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(26, 20, 51, 0.2);
  border: 0; padding: 0;
  cursor: pointer;
  transition: background-color var(--t-base), transform var(--t-base);
}
.t-slider__dot.is-active { background: var(--color-navy); transform: scale(1.2); }

/* ==========================================================================
   10) FAQ
   ========================================================================== */
.faq-container { max-width: 56rem; }
.faq-list {
  margin-top: var(--space-4);
  display: grid; gap: 0.6rem;
}
.faq-item {
  background: var(--color-white);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-soft);
  overflow: hidden;
  transition: box-shadow var(--t-base), border-color var(--t-base);
}
.faq-item:hover { border-color: rgba(26, 20, 51, 0.2); }
.faq-item[open] { box-shadow: 0 8px 24px rgba(26, 20, 51, 0.06); }
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: var(--space-3) var(--space-4);
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--color-navy);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-size: 1.02rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '';
  width: 22px; height: 22px;
  background-image:
    linear-gradient(currentColor, currentColor),
    linear-gradient(currentColor, currentColor);
  background-size: 12px 2px, 2px 12px;
  background-position: center;
  background-repeat: no-repeat;
  color: var(--color-teal-700);
  transition: transform 240ms ease;
  flex: none;
}
.faq-item[open] summary::after {
  background-size: 12px 2px, 0 0;
  transform: rotate(180deg);
}
.faq-item__body {
  overflow: hidden;
  display: grid;
  grid-template-rows: 1fr;
  animation: faq-open 280ms ease;
}
@keyframes faq-open {
  from { grid-template-rows: 0fr; opacity: 0; }
  to   { grid-template-rows: 1fr; opacity: 1; }
}
.faq-item__body p {
  margin: 0;
  padding: 0 var(--space-4) var(--space-4);
  color: var(--text-primary);
  line-height: 1.6;
  min-height: 0;
}

.faq-foot {
  margin: var(--space-5) 0 0;
  text-align: center;
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* ==========================================================================
   11) FINAL CTA — bold closer
   ========================================================================== */
.final-cta {
  position: relative;
  background: var(--color-navy);
  color: var(--color-white);
  padding-block: clamp(3rem, 7vw, 5rem);
  overflow: hidden;
}
.final-cta__bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 80% 20%, rgba(255, 210, 0, 0.18), transparent 55%),
    radial-gradient(circle at 12% 85%, rgba(0, 201, 167, 0.18), transparent 60%);
  pointer-events: none;
}
.final-cta__inner {
  position: relative;
  max-width: 50rem;
  text-align: center;
}
.final-cta__eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-yellow);
  margin-bottom: var(--space-3);
}
.final-cta h2 {
  color: var(--color-white);
  margin: 0 0 var(--space-3);
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3.4vw, 2.6rem);
  line-height: 1.15;
}
.final-cta p {
  margin: 0 auto var(--space-4);
  color: var(--color-cream);
  font-size: 1.05rem;
  max-width: 38rem;
  opacity: 0.92;
  line-height: 1.6;
}
.final-cta__ctas {
  display: inline-flex; flex-wrap: wrap; gap: var(--space-2);
  justify-content: center;
}
.final-cta__link {
  border-color: var(--color-white);
  color: var(--color-white);
}
.final-cta__link:hover {
  background: var(--color-white);
  color: var(--color-navy);
}

/* ==========================================================================
   12) STICKY BUY BAR — appears after hero leaves viewport
   ========================================================================== */
.buy-bar {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 80;
  background: rgba(255, 255, 255, 0.96);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  backdrop-filter: saturate(180%) blur(14px);
  border-top: 1px solid var(--border-soft);
  box-shadow: 0 -8px 24px rgba(26, 20, 51, 0.08);
  transform: translateY(110%);
  transition: transform 360ms cubic-bezier(.22,1,.36,1);
}
.buy-bar.is-revealed { transform: translateY(0); }
.buy-bar__inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: var(--space-3);
  padding-block: 0.75rem;
}
.buy-bar__product { display: flex; align-items: center; gap: var(--space-3); min-width: 0; }
.buy-bar__thumb {
  width: 48px; height: 48px;
  border-radius: var(--radius-sm);
  object-fit: cover;
  flex: none;
  display: block;
}
.buy-bar__copy { display: flex; flex-direction: column; min-width: 0; }
.buy-bar__copy strong {
  color: var(--color-navy);
  font-family: var(--font-heading);
  font-size: 0.98rem;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.buy-bar__copy span { font-size: 0.78rem; color: var(--text-muted); }
.buy-bar__cta { display: inline-flex; align-items: center; gap: var(--space-2); flex: none; }
.buy-bar__price {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.05rem;
  color: var(--color-navy);
}
.buy-bar__cta .btn { padding: 0.55rem 1rem; font-size: 0.9rem; border-radius: var(--radius-pill); }
@media (max-width: 480px) {
  .buy-bar__copy span { display: none; }
}

/* Hide buy bar on small screens when keyboard might overlap inputs */
@media (max-width: 480px) {
  .buy-bar__thumb { width: 40px; height: 40px; }
}

/* Push final CTA above buy bar so it isn't hidden */
.final-cta { padding-bottom: calc(clamp(3rem, 7vw, 5rem) + 64px); }

/* ==========================================================================
   13) LIGHTBOX
   ========================================================================== */
.lightbox {
  display: none;
  position: fixed; inset: 0;
  z-index: 2200;
  background: rgba(15, 11, 34, 0.92);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  align-items: center;
  justify-content: center;
  padding: var(--space-4);
}
.lightbox.is-open { display: flex; animation: lb-fade 220ms ease both; }
@keyframes lb-fade { from { opacity: 0; } to { opacity: 1; } }
.lightbox__img {
  max-width: 92vw;
  max-height: 88vh;
  border-radius: var(--radius-lg);
  box-shadow: 0 30px 80px rgba(0,0,0,0.4);
  animation: lb-zoom 320ms ease both;
}
@keyframes lb-zoom { from { transform: scale(0.94); opacity: 0; } to { transform: scale(1); opacity: 1; } }
.lightbox__close {
  position: absolute; top: var(--space-3); right: var(--space-3);
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  color: var(--color-white);
  border: 0;
  font-size: 1.6rem;
  cursor: pointer;
  transition: background-color var(--t-base);
}
.lightbox__close:hover { background: rgba(255,255,255,0.22); }

/* ==========================================================================
   14) NOTIFY MODAL
   ========================================================================== */
.notify-modal {
  display: none;
  position: fixed; inset: 0;
  z-index: 2000;
  align-items: center; justify-content: center;
  background: rgba(26, 20, 51, 0.6);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  padding: var(--space-4);
}
.notify-modal.is-open { display: flex; animation: lb-fade 220ms ease both; }
.notify-modal__card {
  position: relative;
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  width: 100%; max-width: 28rem;
  max-height: 90vh; overflow-y: auto;
  box-shadow: 0 30px 80px rgba(26, 20, 51, 0.30);
  animation: lb-zoom 320ms ease both;
}
.notify-modal__close {
  position: absolute; top: 0.5rem; right: 0.6rem;
  width: 36px; height: 36px;
  background: transparent; border: 0;
  border-radius: 50%;
  font-size: 1.6rem;
  color: var(--text-muted);
  cursor: pointer;
}
.notify-modal__close:hover {
  background: rgba(26, 20, 51, 0.08);
  color: var(--color-navy);
}
.notify-modal__title {
  margin: 0 0 0.4rem;
  font-family: var(--font-heading);
  color: var(--color-navy);
  font-size: 1.4rem;
}
.notify-modal__sub {
  margin: 0 0 var(--space-3);
  color: var(--text-primary);
  font-size: 0.95rem; line-height: 1.5;
}
.notify-form { display: grid; gap: var(--space-2); }
.notify-form .field__hint { color: var(--text-muted); font-weight: 400; font-size: 0.85em; }
.notify-form__success {
  background: #E6F8F4;
  border-left: 4px solid var(--color-teal);
  padding: var(--space-3);
  border-radius: var(--radius-sm);
  margin: var(--space-3) 0 0;
  color: var(--color-navy);
}

/* ==========================================================================
   15) CHECKOUT MODAL — Razorpay flow (form / success / failure views)
   ========================================================================== */
.checkout-modal {
  display: none;
  position: fixed; inset: 0;
  z-index: 2050;
  align-items: center; justify-content: center;
  background: rgba(15, 11, 34, 0.6);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  padding: var(--space-4);
}
.checkout-modal.is-open { display: flex; animation: lb-fade 220ms ease both; }

.checkout-modal__card {
  position: relative;
  background: var(--color-white);
  border-radius: var(--radius-lg);
  width: 100%;
  max-width: 44rem;
  max-height: 92vh;
  overflow-y: auto;
  box-shadow: 0 30px 80px rgba(26, 20, 51, 0.32);
  animation: lb-zoom 320ms ease both;
}

.checkout-modal__close {
  position: absolute;
  top: 0.75rem; right: 0.85rem;
  z-index: 5;
  width: 38px; height: 38px;
  background: rgba(26, 20, 51, 0.04);
  border: 0;
  border-radius: 50%;
  font-size: 1.5rem;
  color: var(--color-navy);
  cursor: pointer;
  transition: background-color var(--t-base), transform var(--t-base);
}
.checkout-modal__close:hover { background: rgba(26, 20, 51, 0.1); transform: rotate(90deg); }

.checkout-view { padding: var(--space-6) var(--space-5) var(--space-5); }
@media (min-width: 640px) {
  .checkout-view { padding: var(--space-6); }
}

.checkout-modal__head { margin-bottom: var(--space-4); }
.checkout-modal__eyebrow {
  display: inline-flex; align-items: center; gap: 0.4rem;
  padding: 0.3rem 0.7rem;
  background: rgba(0, 201, 167, 0.12);
  color: var(--color-teal-700);
  border-radius: var(--radius-pill);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: var(--space-2);
}
.checkout-modal__eyebrow svg { flex: none; }
.checkout-modal__title {
  margin: 0 0 0.4rem;
  font-family: var(--font-heading);
  font-size: clamp(1.4rem, 2.6vw, 1.85rem);
  color: var(--color-navy);
  line-height: 1.15;
}
.checkout-modal__sub {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.5;
}

/* "Signed in as …" indicator under the modal sub-text. Hidden until the user
   completes Google Sign-In via the Buy-Now flow. */
.checkout-who {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin: var(--space-2) 0 0;
  padding: 0.35rem 0.7rem;
  background: rgba(0, 201, 167, 0.10);
  color: var(--color-navy);
  border-radius: var(--radius-pill);
  font-size: 0.82rem;
  font-weight: 600;
}
.checkout-who svg { color: var(--color-teal-700); flex: none; }
.checkout-who strong { font-weight: 700; }
.checkout-who a { color: var(--color-teal-700); text-decoration: underline; border-bottom: 0; }

/* Order summary card (above the form) */
.checkout-summary {
  display: flex; align-items: center;
  gap: var(--space-3);
  padding: var(--space-3);
  margin: var(--space-4) 0;
  background: var(--color-cream);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-soft);
}
.checkout-summary__thumb {
  width: 64px; height: 64px;
  border-radius: var(--radius-sm);
  object-fit: cover;
  flex: none;
  background: var(--color-white);
}
.checkout-summary__body { flex: 1; min-width: 0; }
.checkout-summary__name {
  display: block;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1rem;
  color: var(--color-navy);
  line-height: 1.2;
}
.checkout-summary__meta {
  display: block;
  margin-top: 0.2rem;
  font-size: 0.82rem;
  color: var(--text-muted);
}
.checkout-summary__price { text-align: right; flex: none; }
.checkout-summary__amount {
  display: block;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--color-navy);
  line-height: 1;
}
.checkout-summary__taxes {
  display: block;
  margin-top: 0.2rem;
  font-size: 0.72rem;
  color: var(--text-muted);
}

/* Form sections */
.checkout-section { margin-top: var(--space-4); }
.checkout-section__title {
  margin: 0 0 var(--space-3);
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-teal-700);
  position: relative;
  padding-bottom: 0.5rem;
}
.checkout-section__title::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 28px; height: 2px;
  background: var(--color-yellow);
  border-radius: 2px;
}

.checkout-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-3) var(--space-3);
}
@media (min-width: 640px) {
  .checkout-grid { grid-template-columns: repeat(2, 1fr); }
  .checkout-grid .field--full { grid-column: 1 / -1; }
}

.checkout-form__error {
  margin: var(--space-3) 0 0;
  padding: 0.75rem var(--space-3);
  background: rgba(255, 107, 43, 0.08);
  border-left: 3px solid var(--color-orange);
  border-radius: var(--radius-sm);
  color: var(--color-navy);
  font-size: 0.9rem;
  line-height: 1.45;
}
.checkout-form__error[hidden] { display: none; }

.checkout-actions {
  margin-top: var(--space-4);
  display: flex; flex-direction: column;
  gap: var(--space-2);
}
.checkout-actions .btn { position: relative; }
.checkout-actions .btn[data-loading="true"] { pointer-events: none; opacity: 0.85; }
.checkout-actions .btn[data-loading="true"] .checkout-spinner { display: inline-block !important; }
.checkout-spinner { animation: c-spin 1s linear infinite; }
@keyframes c-spin { to { transform: rotate(360deg); } }

.checkout-trust {
  display: inline-flex; align-items: center; gap: 0.4rem; justify-content: center;
  margin: 0;
  color: var(--text-muted);
  font-size: 0.78rem;
  line-height: 1.4;
  text-align: center;
  border-bottom: 0;
}
.checkout-trust svg { color: var(--color-teal); flex: none; }
a.checkout-trust:hover { color: var(--color-navy); }

/* ---------- SUCCESS view ---------- */
.checkout-success { text-align: center; }
.checkout-success__icon {
  position: relative;
  width: 80px; height: 80px;
  margin: 0 auto var(--space-4);
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: rgba(91, 196, 112, 0.16);
  color: #3FA651;
}
.checkout-success__icon svg { width: 42px; height: 42px; position: relative; z-index: 2; }
.checkout-success__ring {
  position: absolute; inset: 0;
  border-radius: 50%;
  border: 2px solid rgba(91, 196, 112, 0.4);
  animation: success-pulse 1.8s ease-out infinite;
}
@keyframes success-pulse {
  0%   { transform: scale(1);    opacity: 0.7; }
  100% { transform: scale(1.45); opacity: 0; }
}
@media (prefers-reduced-motion: reduce) {
  .checkout-success__ring { animation: none; }
}

.checkout-success__details {
  margin: var(--space-4) 0;
  padding: var(--space-3);
  background: var(--color-cream);
  border-radius: var(--radius-md);
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-2);
  text-align: left;
}
@media (min-width: 480px) {
  .checkout-success__details { grid-template-columns: repeat(2, 1fr); }
}
.checkout-success__details div { min-width: 0; }
.checkout-success__details dt {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.15rem;
}
.checkout-success__details dd {
  margin: 0;
  font-family: var(--font-heading);
  color: var(--color-navy);
  font-size: 0.95rem;
  font-weight: 700;
  word-break: break-word;
}

/* ---------- FAILURE view ---------- */
.checkout-failure { text-align: center; }
.checkout-failure__icon {
  width: 80px; height: 80px;
  margin: 0 auto var(--space-4);
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: rgba(255, 107, 43, 0.12);
  color: var(--color-orange-700);
}
.checkout-failure__icon svg { width: 42px; height: 42px; }

/* ==========================================================================
   16) MOBILE POLISH — overrides for tablet (<=900px) and phone (<=480px)
   ========================================================================== */

/* ---- Tablet ---- */
@media (max-width: 900px) {

  /* Hero: tighten spacing + reorder so copy comes first, art below */
  .shop-hero { padding-block: clamp(2rem, 6vw, 4rem); }
  .shop-hero__inner { gap: var(--space-5); }
  .shop-hero__copy  { order: 0; }
  .shop-hero__art   { order: 1; min-height: 240px; }
  .shop-hero__card  { width: min(360px, 78%); transform: rotate(-1.5deg); }
  .shop-hero__title { font-size: clamp(1.9rem, 6vw, 2.6rem); }
  .shop-hero__sub   { font-size: 1rem; }
  .shop-hero__stats { gap: var(--space-2); }

  /* Featured kit: gallery + detail stacked, gallery never sticky on touch */
  .featured__gallery { position: static; }
  .featured__stage   { aspect-ratio: 5 / 6; }
  .featured__title   { font-size: clamp(1.5rem, 5vw, 2rem); }
  .featured__price-row { flex-direction: column; align-items: flex-start; gap: var(--space-2); }

  /* Compare table: visible "swipe me" hint */
  .compare__wrap { position: relative; }
  .compare__wrap::after {
    content: 'Swipe →';
    position: absolute;
    top: -28px; right: 0;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-muted);
    opacity: 0.7;
  }

  /* Sub-nav: keep links scrollable, hide price badge to save space */
  .shop-subnav__inner { height: 52px; gap: var(--space-2); }
  .shop-subnav__price { display: none; }

  /* Sticky buy bar: tighter padding */
  .buy-bar__inner { padding-block: 0.55rem; gap: var(--space-2); }
  .buy-bar__copy strong { font-size: 0.9rem; }
}

/* ---- Phones ---- */
@media (max-width: 480px) {

  /* Hero stats: 3 cols fits, but the labels need to be ultra-tight */
  .shop-hero__stats strong { font-size: 1.15rem; }
  .shop-hero__stats span   { font-size: 0.7rem; }
  .shop-hero__chip { font-size: 0.74rem; padding: 0.35rem 0.65rem; }
  .shop-hero__sticker { width: 44px; height: 44px; }
  .shop-hero__sticker svg { width: 22px; height: 22px; }

  /* Trust marquee: tighter pill height */
  .trust-bar { padding-block: 0.7rem; }
  .trust-signal { font-size: 0.82rem; }

  /* Featured: smaller thumbnails grid */
  .featured__thumbs { gap: 0.4rem; }
  .featured__highlights {
    grid-template-columns: 1fr;        /* one column on narrow phones */
    gap: 0.4rem var(--space-3);
  }
  .featured__price-amount { font-size: 1.7rem; }
  .featured__inside { grid-template-columns: 1fr; }

  /* Kit grid filters: avoid wrap-jumping by horizontal scroll */
  .kit-filters {
    flex-wrap: nowrap;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding-bottom: 4px;
    margin-inline: calc(var(--container-pad) * -1);
    padding-inline: var(--container-pad);
  }
  .kit-filters::-webkit-scrollbar { display: none; }
  .kit-filter { flex: none; font-size: 0.82rem; padding: 0.45rem 0.85rem; }

  /* Kit cards: smaller chips & age pill */
  .kit-card__chips li { font-size: 0.7rem; padding: 0.16rem 0.5rem; }

  /* How-it-works: floating step number sits closer to corner */
  .how-step__num { top: -14px; width: 32px; height: 32px; font-size: 0.95rem; }

  /* Testimonials slider: hide side nav buttons (swipe still works) */
  .t-slider { grid-template-columns: 1fr; }
  .t-slider__nav { display: none; }
  .t-card { padding: var(--space-4); min-height: 240px; }
  .t-card__quote { font-size: 1.05rem; }

  /* FAQ: tighter padding */
  .faq-item summary { padding: var(--space-3); font-size: 0.95rem; }

  /* Compare: hide swipe hint (we already pushed -28px, fine on small) */
  .compare__wrap::after { font-size: 0.66rem; top: -22px; }

  /* Sticky sub-nav: hide on very small phones — buy bar covers the same job */
  .shop-subnav { display: none; }

  /* Buy bar: tighter visual */
  .buy-bar__thumb { width: 38px; height: 38px; }
  .buy-bar__copy strong { font-size: 0.86rem; }
  .buy-bar__price { font-size: 0.95rem; }

  /* Checkout modal: full-bleed on phones for max usable area */
  .checkout-modal { padding: 0; align-items: stretch; }
  .checkout-modal__card {
    border-radius: 0;
    max-height: 100dvh;
    max-width: 100%;
  }
  .checkout-view { padding: var(--space-5) var(--space-4); }
  .checkout-modal__title { font-size: 1.3rem; }
  .checkout-section__title { font-size: 0.72rem; }
  .checkout-summary__amount { font-size: 1.05rem; }

  /* Notify modal: same full-bleed treatment for consistency */
  .notify-modal { padding: 0; align-items: stretch; }
  .notify-modal__card {
    border-radius: 0;
    max-width: 100%;
    max-height: 100dvh;
    padding: var(--space-5) var(--space-4);
  }
}

/* ---- Landscape tablet / iPad in landscape: keep desktop layout ---- */
@media (max-width: 1023px) and (orientation: landscape) and (min-height: 480px) {
  /* No-op — desktop styles already kick in via min-width: 768/980 breakpoints */
}

/* ---- Social proof bar (replaces placeholder testimonials) ---- */
.social-proof {
  list-style: none;
  margin: var(--space-6) 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-4);
}
@media (min-width: 768px) {
  .social-proof { grid-template-columns: repeat(3, 1fr); }
}
.social-proof__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.35rem;
  background: var(--color-cream, #FFF8E7);
  border-radius: var(--radius-md);
  border-left: 4px solid var(--color-teal, #00C9A7);
  padding: var(--space-4) var(--space-4);
}
.social-proof__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px; height: 48px;
  border-radius: 12px;
  background: var(--color-white);
  color: var(--color-teal-700, #00897b);
  margin-bottom: 0.25rem;
}
.social-proof__icon svg { width: 26px; height: 26px; }
.social-proof__item strong {
  font-size: 1.05rem;
  color: var(--color-navy, #1A1433);
}
.social-proof__item span { font-size: var(--fs-caption); opacity: 0.8; }
