/* ================================================================
   LITTLE NEST PLAY — HOMEPAGE v2.0 CSS
   Figma V2 | June 2026
   Purple: #7C5CBF | Primary: #C9956C | Dark: #1B2A3B
   Bg: #FBF7FF (light lavender) | White: #FFFFFF
   ================================================================ */

/* ── Variables ────────────────────────────────────────────── */
:root {
    --lnp2-purple:   #7C5CBF;
    --lnp2-purple-lt:#9B7DD4;
    --lnp2-purple-bg:#F3EFFE;
    --lnp2-gold:     #C9956C;
    --lnp2-dark:     #1B2A3B;
    --lnp2-bg:       #FBF7FF;
    --lnp2-white:    #FFFFFF;
    --lnp2-text:     #2C2C2C;
    --lnp2-muted:    #6B6B6B;
    --lnp2-border:   #E8E0F5;

    --font-display: 'Fredoka', sans-serif;
    --font-body:    'Manrope', sans-serif;
    --font-script:  'Fredoka', cursive;
    --font-ui:      'Manrope', sans-serif;
}

/* ── Reset ────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }
body { background: var(--lnp2-bg); font-family: var(--font-body); }
a { text-decoration: none; }
img { max-width: 100%; }

/* ── Typography helpers ───────────────────────────────────── */
.lnp2-eyebrow {
    font-family: var(--font-body);
    font-size: .72rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: 2px;
    color: var(--lnp2-gold); display: block; margin-bottom: .5rem;
}

h1.lnp2-hero-title span, h2.lnp2-title span, .lnp2-title-library span {
    color: var(--lnp2-gold);
}
.lnp2-title {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 3.5vw, 2.6rem);
    font-weight: 600; color: var(--lnp2-dark);
    line-height: 1.2; letter-spacing: -.02em;
}
.lnp2-title em { font-style: italic; color: var(--lnp2-gold); }

.lnp2-body { font-family: var(--font-body); font-size: .95rem; color: var(--lnp2-muted); line-height: 1.75; }

.lnp2-section-header { margin-bottom: 2.5rem; }

/* ── Buttons ──────────────────────────────────────────────── */
.lnp2-btn-primary {
    background: var(--lnp2-purple); color: #fff;
    border: 2px solid var(--lnp2-purple); border-radius: 50px;
    font-family: var(--font-body); font-weight: 700; font-size: .875rem;
    padding: .75rem 1.75rem;
    display: inline-flex; align-items: center; gap: .5rem;
    cursor: pointer; transition: all .25s; white-space: nowrap;
}
.lnp2-btn-primary:hover { background: var(--lnp2-purple-lt); border-color: var(--lnp2-purple-lt); color: #fff; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(124,92,191,.3); }

.lnp2-btn-outline {
    background: transparent; color: var(--lnp2-purple);
    border: 2px solid var(--lnp2-purple); border-radius: 50px;
    font-family: var(--font-body); font-weight: 600; font-size: .875rem;
    padding: .75rem 1.75rem;
    display: inline-flex; align-items: center; gap: .5rem;
    cursor: pointer; transition: all .25s;
}
.lnp2-btn-outline:hover { background: var(--lnp2-purple); color: #fff; transform: translateY(-2px); }

.lnp2-btn-outline-dark {
    background: transparent; color: var(--lnp2-dark);
    border: 2px solid var(--lnp2-dark); border-radius: 50px;
    font-family: var(--font-body); font-weight: 600; font-size: .875rem;
    padding: .75rem 1.75rem;
    display: inline-flex; align-items: center; gap: .5rem;
    cursor: pointer; transition: all .25s;
}
.lnp2-btn-outline-dark:hover { background: var(--lnp2-dark); color: #fff; }

.lnp2-btn-outline-light {
    background: rgba(255,255,255,.15); color: #fff;
    border: 2px solid rgba(255,255,255,.6); border-radius: 50px;
    font-family: var(--font-body); font-weight: 600; font-size: .875rem;
    padding: .75rem 1.75rem;
    display: inline-flex; align-items: center; gap: .5rem;
    cursor: pointer; transition: all .25s; backdrop-filter: blur(4px);
}
.lnp2-btn-outline-light:hover { background: rgba(255,255,255,.25); border-color: #fff; color: #fff; }

.lnp2-btn-ghost {
    background: none; border: none; cursor: pointer;
    font-family: var(--font-body); font-size: .875rem; font-weight: 500;
    color: var(--lnp2-dark); padding: .4rem .5rem; transition: color .2s;
}
.lnp2-btn-ghost:hover { color: var(--lnp2-purple); }

.lnp2-btn-nav-primary {
    background: var(--lnp2-purple); color: #fff;
    border: none; border-radius: 50px;
    font-family: var(--font-body); font-weight: 700; font-size: .825rem;
    padding: .5rem 1.25rem;
    display: inline-flex; align-items: center;
    cursor: pointer; transition: all .25s;
}
.lnp2-btn-nav-primary:hover { background: var(--lnp2-purple-lt); color: #fff; }

.lnp2-link-muted {
    font-family: var(--font-body); font-size: .875rem;
    font-weight: 600; color: var(--lnp2-muted);
    transition: color .2s;
}
.lnp2-link-muted:hover { color: var(--lnp2-purple); }

/* ══════════════════════════════════════════════════════════
   NAVBAR
══════════════════════════════════════════════════════════ */
.lnp2-navbar {
    background: var(--lnp2-white) !important;
    border-bottom: 1px solid var(--lnp2-border);
    padding: 12px 0;
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    transition: all .3s;
}

.lnp2-navbar.scrolled {
    box-shadow: 0 2px 20px rgba(27,42,59,.08);
}

.lnp2-logo { height: 44px; width: auto; display: block; }

.lnp2-nav-link {
    font-family: var(--font-body); font-size: .875rem; font-weight: 500;
    color: var(--lnp2-dark); padding: .4rem .85rem !important;
    border-radius: 8px; transition: color .2s; display: block;
}
.lnp2-nav-link:hover, .lnp2-nav-link.active { color: var(--lnp2-purple); }

.lnp2-icon-btn {
    width: 36px; height: 36px; border-radius: 50%;
    border: 1.5px solid var(--lnp2-border);
    background: transparent; color: var(--lnp2-dark);
    display: flex; align-items: center; justify-content: center;
    font-size: .85rem; cursor: pointer; transition: all .2s;
}
.lnp2-icon-btn:hover { background: var(--lnp2-purple); color: #fff; border-color: var(--lnp2-purple); }

.lnp2-bag-badge {
    position: absolute; top: -4px; right: -4px;
    min-width: 18px; height: 18px;
    background: var(--lnp2-gold); color: #fff;
    border-radius: 9px; font-size: .65rem; font-weight: 700;
    display: flex; align-items: center; justify-content: center;
    padding: 0 4px; border: 2px solid #fff;
}

/* [MARIO] v1.0 | 2026-08-07 | Fix + Feature: header rebuild
   Client: Little Nest Play | File: lnp-home.css
   1) Search bar — desktop icon-expand (matches .lnp2-icon-btn language already used
      for the bag icon) + static input inside the mobile collapse menu. Submits GET
      to /catalogue?search=... — ASSUMED param name, unverified against controller.
   2) .lnp2-nav-auth-wrap — new class on the auth-buttons container (My Account/
      Logout/Login/Start Membership). Root cause of "mobile menu My Account/Logout
      sahi nahi aa raha": that div was plain `d-flex` with no responsive override,
      so on mobile it stayed a horizontal row squeezed into the narrow collapsed
      panel — cramped, and the two ghost links had no visible boundary so they read
      as broken/unstyled text. Below 992px it now stacks full-width with a top
      divider; ghost items get a subtle outline so they read as tappable buttons.
      Desktop (>=992px) is UNCHANGED — this only applies inside the mobile menu. */

/* ── Desktop: icon that expands into an input ────────────── */
.lnp2-nav-search-wrap {
    position: relative;
    display: flex;
    align-items: center;
}
.lnp2-nav-search-form {
    display: flex;
    align-items: center;
    overflow: hidden;
    width: 0; opacity: 0;
    position: absolute;
    right: 44px; /* sits left of the toggle icon */
    top: 50%; transform: translateY(-50%);
    background: var(--lnp2-purple-bg);
    border: 1.5px solid var(--lnp2-border);
    border-radius: 50px;
    padding: 0;
    transition: width .3s ease, opacity .2s ease, padding .3s ease;
    pointer-events: none;
}
.lnp2-nav-search-wrap.lnp2-search-open .lnp2-nav-search-form {
    width: 220px; opacity: 1;
    padding: .3rem .3rem .3rem 1rem;
    pointer-events: auto;
}
.lnp2-nav-search-input {
    flex: 1; min-width: 0;
    border: none; outline: none; background: transparent;
    font-family: var(--font-body); font-size: .85rem; color: var(--lnp2-dark);
}
.lnp2-nav-search-input::placeholder { color: var(--lnp2-muted); }
.lnp2-nav-search-submit {
    background: var(--lnp2-purple); color: #fff; border: none;
    width: 28px; height: 28px; border-radius: 50%; flex-shrink: 0;
    display: flex; align-items: center; justify-content: center;
    font-size: .7rem; cursor: pointer; transition: background .2s;
}
.lnp2-nav-search-submit:hover { background: var(--lnp2-purple-lt); }

/* ── Mobile: static input at top of the collapse menu ────── */
.lnp2-nav-search-mobile {
    display: flex; align-items: center; gap: .6rem;
    background: var(--lnp2-purple-bg);
    border: 1.5px solid var(--lnp2-border);
    border-radius: 50px;
    padding: .55rem 1rem;
    margin-bottom: 1rem;
}
.lnp2-nav-search-mobile-icon { color: var(--lnp2-muted); font-size: .85rem; flex-shrink: 0; }
.lnp2-nav-search-mobile-input {
    flex: 1; min-width: 0;
    border: none; outline: none; background: transparent;
    font-family: var(--font-body); font-size: .875rem; color: var(--lnp2-dark);
}
.lnp2-nav-search-mobile-input::placeholder { color: var(--lnp2-muted); }

/* ── Mobile: auth-buttons row stacks full-width in the collapse menu ── */
@media (max-width: 991px) {
    .lnp2-nav-auth-wrap {
        flex-direction: column;
        align-items: stretch !important;
        gap: .6rem;
        width: 100%;
        margin-top: 1rem;
        padding-top: 1rem;
        border-top: 1px solid var(--lnp2-border);
    }
    .lnp2-nav-auth-wrap > a.lnp2-btn-ghost {
        display: block; width: 100%; text-align: center;
        border: 1.5px solid var(--lnp2-border); border-radius: 50px;
        padding: .6rem;
    }
    .lnp2-nav-auth-wrap > form { width: 100%; margin: 0 !important; }
    .lnp2-nav-auth-wrap > form > button.lnp2-btn-ghost {
        width: 100%; text-align: center;
        border: 1.5px solid var(--lnp2-border); border-radius: 50px;
        padding: .6rem;
    }
    .lnp2-nav-auth-wrap > a.lnp2-btn-nav-primary {
        width: 100%; justify-content: center;
    }
}

/* ══════════════════════════════════════════════════════════
   HERO — 2-col layout (left text, right video frame)
══════════════════════════════════════════════════════════ */
.lnp2-hero {
    background: #F5EDF8;
    padding: 110px 0 60px;
    overflow: hidden;
    position: relative;
}

.lnp2-hero-inner { position: relative; z-index: 1; }

/* Hero tag pill */
.lnp2-hero-tag {
    display: inline-flex; align-items: center; gap: .4rem;
    background: rgba(124,92,191,.1); border: 1px solid rgba(124,92,191,.25);
    border-radius: 50px; padding: .3rem .9rem;
    font-family: var(--font-body); font-size: .78rem; font-weight: 600;
    color: var(--lnp2-purple); margin-bottom: 1.25rem;
}

.lnp2-hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 4.5vw, 3.4rem);
    font-weight: 700; color: var(--lnp2-dark);
    line-height: 1.12; letter-spacing: -.02em;
    margin-bottom: 1rem;
}
.lnp2-hero-title em { font-style: italic; color: var(--lnp2-gold); }

.lnp2-hero-bold-sub {
    font-family: var(--font-body); font-size: 1rem;
    font-weight: 700; color: var(--lnp2-dark);
    margin-bottom: .5rem;
}

.lnp2-hero-sub {
    font-family: var(--font-body); font-size: .9rem;
    color: var(--lnp2-muted); line-height: 1.75;
    max-width: 460px; margin-bottom: 1.25rem;
}

.lnp2-hero-tagline {
    font-family: var(--font-body); font-size: .85rem;
    color: var(--lnp2-muted); margin-bottom: 1.75rem;
    display: flex; align-items: center; gap: .5rem; flex-wrap: wrap;
    font-weight: 500;
}
.lnp2-dot { color: var(--lnp2-gold); }

.lnp2-hero-btns { display: flex; gap: .85rem; flex-wrap: wrap; }

/* Hero video frame — rounded box on right */
.lnp2-hero-video-frame {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(124,92,191,.2);
    aspect-ratio: 4/3;
    background: #1B2A3B;
    position: relative;
}

.lnp2-hero-vid {
    width: 100%; height: 100%;
    object-fit: cover; display: block;
}

/* Hero buttons */
.lnp2-btn-hero-dark {
    background: var(--lnp2-dark); color: #fff;
    border: 2px solid var(--lnp2-dark); border-radius: 50px;
    font-family: var(--font-body); font-weight: 700; font-size: .875rem;
    padding: .75rem 1.75rem;
    display: inline-flex; align-items: center; gap: .5rem;
    cursor: pointer; transition: all .25s; white-space: nowrap;
    text-decoration: none;
}
.lnp2-btn-hero-dark:hover { background: #2C3E50; color: #fff; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(27,42,59,.25); }

.lnp2-btn-hero-outline {
    background: transparent; color: var(--lnp2-dark);
    border: 2px solid var(--lnp2-dark); border-radius: 50px;
    font-family: var(--font-body); font-weight: 600; font-size: .875rem;
    padding: .75rem 1.75rem;
    display: inline-flex; align-items: center; gap: .5rem;
    cursor: pointer; transition: all .25s; text-decoration: none;
}
.lnp2-btn-hero-outline:hover { background: var(--lnp2-dark); color: #fff; transform: translateY(-2px); }

/* ══════════════════════════════════════════════════════════
   STATS STRIP
══════════════════════════════════════════════════════════ */
.lnp2-stats-strip {
    background: #C8A8E9;
    padding: 18px 0;
}

.lnp2-stats-inner {
    display: flex; align-items: center;
    justify-content: center; flex-wrap: wrap; gap: .75rem;
    padding: 0 1rem;
}

.lnp2-stat-item {
    display: flex; align-items: center; gap: .6rem;
    font-family: var(--font-body); font-size: .825rem;
    color: var(--lnp2-dark); font-weight: 500;
    background: rgba(255,255,255,.6);
    border: 1.5px dashed rgba(124,92,191,.5);
    border-radius: 50px;
    padding: .5rem 1rem;
    backdrop-filter: blur(4px);
}
.lnp2-stat-item img { height: 28px; width: auto; }
.lnp2-stat-item strong { color: var(--lnp2-purple); font-weight: 700; }

.lnp2-stat-sep { display: none; }

/* ══════════════════════════════════════════════════════════
   BRANDS
══════════════════════════════════════════════════════════ */
.lnp2-brands-section { background: var(--lnp2-white); padding: 80px 0 0; }

.lnp2-brands-marquee-wrap {
    overflow: hidden; margin: 2rem 0;
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.lnp2-brands-marquee {
    display: flex; gap: 2rem; align-items: center;
    width: max-content;
    animation: marqueeScroll 30s linear infinite;
}

.lnp2-brands-marquee:hover { animation-play-state: paused; }

@keyframes marqueeScroll {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

.lnp2-brand-logo {
    flex-shrink: 0; padding: .5rem 1rem;
    display: flex; align-items: center; justify-content: center;
}
.lnp2-brand-logo img { height: 48px; width: auto; object-fit: contain; filter: grayscale(10%); transition: filter .2s; }
.lnp2-brand-logo:hover img { filter: none; }

/* Only at LNP banner */
.lnp2-only-lnp {
    background-size: cover; background-position: center;
    border-radius: 20px; overflow: hidden;
    position: relative; margin-top: 2rem; margin-bottom: 0;
}

.lnp2-only-lnp-inner {
    padding: 3rem 2.5rem; text-align: center;
}

.lnp2-only-lnp-eyebrow {
    font-family: var(--font-body);
    font-size: .72rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: 2px;
    color: var(--lnp2-gold);
    display: block; margin-bottom: .75rem;
}

.lnp2-only-lnp-text {
    font-family: var(--font-display);
    font-size: clamp(1.4rem, 3vw, 2rem);
    font-weight: 700; color: var(--lnp2-dark);
    margin-bottom: .75rem;
}

.lnp2-only-lnp-sub {
    font-family: var(--font-body); font-size: .9rem;
    color: var(--lnp2-muted); max-width: 560px;
    margin: 0 auto 1.5rem; line-height: 1.7;
}

/* ══════════════════════════════════════════════════════════
   ONE LIBRARY
══════════════════════════════════════════════════════════ */
.lnp2-library-section { background: var(--lnp2-bg); padding: 80px 0; }

/* Age cards — Figma style */
.lnp2-title-library {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 3.5vw, 2.4rem);
    font-weight: 700; color: var(--lnp2-dark);
    line-height: 1.2; letter-spacing: -.02em;
    margin-bottom: .5rem;
}
.lnp2-title-library em { font-style: italic; color: var(--lnp2-gold); }

.lnp2-age-cards-row {
    display: flex; gap: 1rem;
    margin: 2.5rem 0 0; flex-wrap: wrap;
}

.lnp2-age-figma-card {
    flex: 1; min-width: 160px;
    border-radius: 16px; padding: 1.5rem 1.25rem 1.25rem;
    cursor: pointer; transition: all .2s;
    border: 2px solid transparent;
    display: flex; flex-direction: column; gap: .75rem;
}
.lnp2-age-figma-card:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(27,42,59,.1); }
.lnp2-age-figma-card.active { border-color: rgba(27,42,59,.15); box-shadow: 0 8px 24px rgba(27,42,59,.12); }

.lnp2-age-figma-icon img {
    height: 52px; width: 52px; object-fit: contain;
}

.lnp2-age-figma-pill {
    display: inline-block;
    color: #fff; font-family: var(--font-body);
    font-size: .72rem; font-weight: 700;
    border-radius: 50px; padding: .22rem .75rem;
    width: fit-content;
}

.lnp2-age-figma-desc {
    font-family: var(--font-body); font-size: .825rem;
    color: var(--lnp2-dark); line-height: 1.5; font-weight: 500;
}

/* Library grid */
.lnp2-library-grid-wrap { position: relative; min-height: 200px; }

.lnp2-library-loader {
    position: absolute; inset: 0;
    display: flex; align-items: center; justify-content: center;
    background: rgba(251,247,255,.7); z-index: 2;
}

.lnp2-library-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1rem;
    transition: opacity .3s;
}

.lnp-lib-toy-card {
    background: var(--lnp2-white);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--lnp2-border);
    transition: box-shadow .2s, transform .2s;
}
.lnp-lib-toy-card:hover { box-shadow: 0 8px 28px rgba(124,92,191,.15); transform: translateY(-3px); }

.lnp-lib-toy-link { text-decoration: none; display: flex; flex-direction: column; height: 100%; }

.lnp-lib-toy-img {
    aspect-ratio: 1; background: var(--lnp2-purple-bg);
    overflow: hidden;
}
.lnp-lib-toy-img img { width: 100%; height: 100%; object-fit: contain; padding: .65rem; transition: transform .3s; }
.lnp-lib-toy-card:hover .lnp-lib-toy-img img { transform: scale(1.05); }
.lnp-lib-toy-placeholder { display: flex; align-items: center; justify-content: center; height: 100%; font-size: 2.5rem; }

.lnp-lib-toy-body { padding: .75rem .85rem .5rem; flex: 1; }
.lnp-lib-toy-cat { font-family: var(--font-body); font-size: .68rem; font-weight: 700; text-transform: uppercase; letter-spacing: .6px; color: var(--lnp2-purple); display: block; margin-bottom: .2rem; }
.lnp-lib-toy-name { font-family: var(--font-body); font-weight: 700; font-size: .82rem; color: var(--lnp2-dark); line-height: 1.3; }
.lnp-lib-toy-price { font-family: var(--font-body); font-size: .72rem; color: var(--lnp2-muted); margin-top: .2rem; text-decoration: line-through; }

.lnp-lib-toy-footer { padding: .5rem .85rem .75rem; }
.lnp-lib-view-btn { font-family: var(--font-body); font-size: .75rem; font-weight: 600; color: var(--lnp2-purple); }

.lnp-lib-empty { text-align: center; padding: 3rem 1rem; color: var(--lnp2-muted); font-family: var(--font-body); grid-column: 1 / -1; }

/* ══════════════════════════════════════════════════════════
   WHY PARENTS
══════════════════════════════════════════════════════════ */
.lnp2-why-section { background: var(--lnp2-white); padding: 80px 0; }

.lnp2-why-grid {
    display: grid; grid-template-columns: repeat(6, 1fr);
    gap: 1rem; margin-top: 2.5rem;
}

.lnp2-why-card {
    background: var(--lnp2-white);
    border-radius: 16px; padding: 1.1rem 1rem;
    text-align: center; border: 1px solid rgba(27,42,59,.08);
    transition: all .25s;
    display: flex; flex-direction: column; align-items: center; gap: .6rem;
}
.lnp2-why-card:hover { box-shadow: 0 8px 24px rgba(124,92,191,.12); transform: translateY(-3px); }

.lnp2-why-img-wrap {
    width: 100%; border-radius: 12px; overflow: hidden;
    aspect-ratio: 1; background: var(--lnp2-purple-bg);
}
.lnp2-why-img-wrap img { width: 100%; height: 100%; object-fit: cover; }

.lnp2-why-icon { margin-bottom: .5rem; }
.lnp2-why-icon img { height: 52px; width: 52px; object-fit: contain; }

.lnp2-why-title {
    font-family: var(--font-body); font-weight: 700;
    font-size: .8rem; line-height: 1.35; text-align: center;
}

.lnp2-why-desc {
    font-family: var(--font-body); font-size: .75rem;
    color: var(--lnp2-muted); line-height: 1.5;
}

/* ══════════════════════════════════════════════════════════
   OUR PROMISE
══════════════════════════════════════════════════════════ */
.lnp2-promise-section { background: var(--lnp2-bg); padding: 80px 0; }

.lnp2-promise-steps { display: flex; flex-direction: column; gap: 1.25rem; margin-top: 1.75rem; }

.lnp2-promise-step { display: flex; align-items: flex-start; gap: 1rem; }

.lnp2-promise-num {
    width: 34px; height: 34px; border-radius: 50%;
    background: var(--lnp2-purple); color: #fff;
    display: flex; align-items: center; justify-content: center;
    font-family: var(--font-body); font-weight: 700; font-size: .85rem; flex-shrink: 0;
}

.lnp2-promise-label { font-family: var(--font-body); font-weight: 700; font-size: .9rem; color: var(--lnp2-dark); margin-bottom: .15rem; }
.lnp2-promise-desc  { font-family: var(--font-body); font-size: .825rem; color: var(--lnp2-purple); line-height: 1.55; margin: 0; }

/* Promise image grid */
.lnp2-promise-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: .85rem;
    height: 420px;
}

.lnp2-promise-img { border-radius: 14px; object-fit: cover; width: 100%; height: 100%; }
.lnp2-promise-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: .85rem;
    height: 420px;
}
.lnp2-promise-img-1,
.lnp2-promise-img-2,
.lnp2-promise-img-3,
.lnp2-promise-img-4 {
    border-radius: 14px;
    object-fit: cover;
    width: 100%; min-height: 260px;
}

/* ══════════════════════════════════════════════════════════
   HOW IT WORKS
══════════════════════════════════════════════════════════ */
.lnp2-hiw-section {
    background-size: cover; background-position: center;
    padding: 80px 0; position: relative;
}
.lnp2-hiw-overlay { position: absolute; inset: 0; background: rgba(253,248,242,.92); z-index: 1; }

.lnp2-hiw-heading {
    font-family: 'Fredoka', sans-serif;
    font-size: clamp(1.75rem, 3.5vw, 2.4rem);
    font-weight: 700; color: var(--lnp2-dark);
    margin-top: .25rem;
}

/* HOW IT WORKS v2 — card style */
.lnp2-hiw-steps {
    display: flex; align-items: center;
    justify-content: center; gap: 0;
    margin-top: 3rem;
    position: relative; z-index: 2;
    flex-wrap: wrap;
}

.lnp2-hiw-step-v2 {
    display: flex; flex-direction: column;
    align-items: center; gap: 0;
    flex: 0 0 200px;
}

.lnp2-hiw-num-v2 {
    width: 52px; height: 52px; border-radius: 50%;
    color: #fff;
    display: flex; align-items: center; justify-content: center;
    font-family: var(--font-body); font-weight: 800; font-size: 1.3rem;
    position: relative; z-index: 1;
    box-shadow: 0 4px 16px rgba(0,0,0,.15);
    margin-bottom: -20px;
}

.lnp2-hiw-card-v2 {
    background: rgba(255,255,255,.85);
    backdrop-filter: blur(8px);
    border: 2px solid;
    border-radius: 20px;
    padding: 2.5rem 1.25rem 1.5rem;
    text-align: center;
    width: 100%;
    box-shadow: 0 4px 20px rgba(27,42,59,.06);
    transition: transform .2s, box-shadow .2s;
}
.lnp2-hiw-card-v2:hover { transform: translateY(-4px); box-shadow: 0 8px 28px rgba(27,42,59,.1); }

.lnp2-hiw-icon-v2 {
    width: 90px; height: 90px;
    margin: 0 auto 1rem;
}
.lnp2-hiw-icon-v2 img { width: 100%; height: 100%; object-fit: contain; }

.lnp2-hiw-title-v2 {
    font-family: 'Fredoka', sans-serif;
    font-weight: 700; font-size: .95rem;
    color: var(--lnp2-dark); margin-bottom: .5rem;
    line-height: 1.3;
}

.lnp2-hiw-desc-v2 {
    font-family: var(--font-body); font-size: .8rem;
    color: var(--lnp2-muted); line-height: 1.6; margin: 0;
}

.lnp2-hiw-connector {
    flex-shrink: 0; display: flex; align-items: center;
    padding-top: 1rem; opacity: .7;
}

.lnp2-hiw-bottom {
    display: flex; justify-content: center; gap: 2rem;
    margin-top: 3rem; position: relative; z-index: 2;
}
.lnp2-hiw-bottom-img { height: 80px; width: auto; object-fit: contain; }

/* ══════════════════════════════════════════════════════════
   PLANS
══════════════════════════════════════════════════════════ */
.lnp2-plans-section { background: var(--lnp2-white); padding: 80px 0; }

.lnp2-plan-card {
    background: var(--lnp2-purple-bg);
    border: 2px solid rgba(124,92,191,.15);
    border-radius: 24px; padding: 2rem 1.75rem;
    position: relative; display: flex; flex-direction: column; gap: .75rem;
    height: 100%; transition: all .25s;
}
.lnp2-plan-card:hover { box-shadow: 0 12px 36px rgba(124,92,191,.15); transform: translateY(-4px); }

.lnp2-plan-card.lnp2-plan-featured { background: var(--lnp2-purple); border-color: var(--lnp2-purple); }

.lnp2-plan-popular {
    position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
    display: flex; align-items: center; gap: .35rem;
    background: var(--lnp2-gold); color: #fff;
    font-family: var(--font-body); font-size: .7rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: .6px;
    padding: .25rem .85rem; border-radius: 20px; white-space: nowrap;
}
.lnp2-plan-popular img { height: 16px; filter: brightness(0) invert(1); }

.lnp2-plan-name { font-family: var(--font-display); font-weight: 600; font-size: 1.2rem; color: var(--lnp2-dark); margin-top: .5rem; }
.lnp2-plan-featured .lnp2-plan-name { color: #fff; }

.lnp2-plan-tagline { font-family: var(--font-body); font-size: .825rem; color: var(--lnp2-muted); }
.lnp2-plan-featured .lnp2-plan-tagline { color: rgba(255,255,255,.7); }

.lnp2-plan-toys { font-family: var(--font-body); font-size: .85rem; background: rgba(124,92,191,.1); border-radius: 8px; padding: .5rem .75rem; color: var(--lnp2-dark); }
.lnp2-plan-featured .lnp2-plan-toys { background: rgba(255,255,255,.15); color: rgba(255,255,255,.85); }

.lnp2-plan-price { display: flex; align-items: baseline; gap: .3rem; }
.lnp2-plan-amount { font-family: var(--font-display); font-size: 2rem; font-weight: 700; color: var(--lnp2-dark); }
.lnp2-plan-featured .lnp2-plan-amount { color: var(--lnp2-gold); }
.lnp2-plan-period { font-family: var(--font-body); font-size: .825rem; color: var(--lnp2-muted); }
.lnp2-plan-featured .lnp2-plan-period { color: rgba(255,255,255,.5); }

.lnp2-plan-feats { list-style: none; padding: 0; margin: 0; flex: 1; }
.lnp2-plan-feats li { display: flex; align-items: center; gap: .5rem; font-family: var(--font-body); font-size: .825rem; color: var(--lnp2-dark); padding: .3rem 0; border-bottom: 1px solid rgba(124,92,191,.1); }
.lnp2-plan-feats li:last-child { border-bottom: none; }
.lnp2-plan-feats li i { color: #4A8C5C; font-size: .72rem; }
.lnp2-plan-featured .lnp2-plan-feats li { color: rgba(255,255,255,.85); border-color: rgba(255,255,255,.1); }
.lnp2-plan-featured .lnp2-plan-feats li i { color: #6FCF97; }

/* ══════════════════════════════════════════════════════════
   DASHBOARD
══════════════════════════════════════════════════════════ */
.lnp2-dash-section { background: var(--lnp2-bg); padding: 80px 0; }

.lnp2-dash-feats { list-style: none; padding: 0; margin: 1.5rem 0; display: flex; flex-direction: column; gap: .65rem; }
.lnp2-dash-feats li { display: flex; align-items: center; gap: .65rem; font-family: var(--font-body); font-size: .9rem; color: var(--lnp2-dark); }
.lnp2-dash-feats li i { color: var(--lnp2-purple); font-size: .85rem; }

.lnp2-dash-mockup { background: var(--lnp2-dark); border-radius: 24px; overflow: hidden; box-shadow: 0 16px 48px rgba(27,42,59,.2); }

.lnp2-dash-head { background: rgba(255,255,255,.06); padding: 1rem 1.5rem; border-bottom: 1px solid rgba(255,255,255,.08); font-family: var(--font-body); font-weight: 700; font-size: .85rem; color: rgba(255,255,255,.8); display: flex; justify-content: space-between; align-items: center; }
.lnp2-dash-plan { color: var(--lnp2-gold); font-size: .78rem; }

.lnp2-dash-stats { display: grid; grid-template-columns: repeat(3, 1fr); border-bottom: 1px solid rgba(255,255,255,.08); }
.lnp2-dash-stat { padding: 1.1rem 1rem; text-align: center; border-right: 1px solid rgba(255,255,255,.08); }
.lnp2-dash-stat:last-child { border-right: none; }
.lnp2-dash-val { font-family: var(--font-display); font-size: 1.75rem; font-weight: 700; color: rgba(255,255,255,.9); line-height: 1; }
.lnp2-dash-stat-hl .lnp2-dash-val { color: var(--lnp2-gold); }
.lnp2-dash-lbl { font-family: var(--font-body); font-size: .72rem; font-weight: 700; color: rgba(255,255,255,.5); margin-top: .15rem; }
.lnp2-dash-sub  { font-family: var(--font-body); font-size: .65rem; color: rgba(255,255,255,.35); margin-top: .1rem; }

.lnp2-dash-child-row { padding: .85rem 1.5rem; border-bottom: 1px solid rgba(255,255,255,.08); }
.lnp2-dash-child { display: flex; align-items: center; gap: .75rem; }
.lnp2-dash-child i { color: var(--lnp2-gold); font-size: 1.1rem; }
.lnp2-dash-child-name { font-family: var(--font-body); font-weight: 700; font-size: .825rem; color: rgba(255,255,255,.85); }
.lnp2-dash-child-sub  { font-family: var(--font-body); font-size: .72rem; color: rgba(255,255,255,.4); }

.lnp2-dash-items { padding: 1rem 1.5rem; display: flex; flex-direction: column; gap: .65rem; }
.lnp2-dash-item { display: flex; align-items: center; gap: .75rem; background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.08); border-radius: 10px; padding: .65rem 1rem; }
.lnp2-dash-item-wishlist { border-color: rgba(201,149,108,.3); background: rgba(201,149,108,.06); }
.lnp2-dash-item-ic { font-size: 1.2rem; flex-shrink: 0; }
.lnp2-dash-item-n { font-family: var(--font-body); font-weight: 600; font-size: .8rem; color: rgba(255,255,255,.85); }
.lnp2-dash-item-t { font-family: var(--font-body); font-size: .68rem; color: var(--lnp2-gold); font-weight: 600; }

/* ══════════════════════════════════════════════════════════
   FAQ
══════════════════════════════════════════════════════════ */
.lnp2-faq-section {
    background-size: cover; background-position: center;
    padding: 80px 0; position: relative;
}
.lnp2-faq-overlay { position: absolute; inset: 0; background: rgba(251,247,255,.92); z-index: 1; }

.lnp2-faq-list { margin-top: 2rem; }
.lnp2-faq-item { border-bottom: 1px solid rgba(124,92,191,.15); }

.lnp2-faq-q {
    width: 100%; background: none; border: none;
    display: flex; justify-content: space-between; align-items: center;
    padding: 1.25rem 0;
    font-family: var(--font-body); font-weight: 600; font-size: .95rem;
    color: var(--lnp2-dark); text-align: left; cursor: pointer; gap: 1rem; transition: color .2s;
}
.lnp2-faq-q:hover { color: var(--lnp2-purple); }
.lnp2-faq-ic { flex-shrink: 0; color: var(--lnp2-purple); font-size: .8rem; }

.lnp2-faq-a { font-family: var(--font-body); font-size: .875rem; color: var(--lnp2-muted); line-height: 1.7; padding-bottom: 1.25rem; }

/* ══════════════════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════════════════ */
.lnp-footer { background: var(--lnp2-dark); color: rgba(255,255,255,.75); padding: 5rem 0 0; }
.lnp-footer-tagline { font-family: var(--font-body); font-size: .875rem; color: rgba(255,255,255,.6); line-height: 1.65; margin-bottom: 1.5rem; max-width: 280px; }
.lnp-footer-social { display: flex; gap: .6rem; }
.lnp-footer-social a { width: 36px; height: 36px; border-radius: 50%; border: 1px solid rgba(255,255,255,.2); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,.7); font-size: .85rem; transition: all .2s; text-decoration: none; }
.lnp-footer-social a:hover { background: var(--lnp2-purple); border-color: var(--lnp2-purple); color: #fff; }
.lnp-footer-top { padding-bottom: 3rem; border-bottom: 1px solid rgba(255,255,255,.1); }
.lnp-footer-heading { font-family: var(--font-body); font-weight: 700; font-size: .8rem; text-transform: uppercase; letter-spacing: 1px; color: rgba(255,255,255,.9); margin-bottom: 1.1rem; }
.lnp-footer-links { list-style: none; padding: 0; margin: 0; }
.lnp-footer-links li { margin-bottom: .6rem; }
.lnp-footer-links a { font-family: var(--font-body); font-size: .875rem; color: rgba(255,255,255,.6); transition: color .2s; text-decoration: none; }
.lnp-footer-links a:hover { color: var(--lnp2-purple); }
.lnp-newsletter-form { display: flex; gap: .5rem; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.15); border-radius: 30px; padding: .3rem .3rem .3rem .9rem; }
.lnp-newsletter-input { flex: 1; background: transparent; border: none; outline: none; font-family: var(--font-body); font-size: .825rem; color: #fff; }
.lnp-newsletter-input::placeholder { color: rgba(255,255,255,.4); }
.lnp-newsletter-btn { background: var(--lnp2-purple); color: #fff; border: none; border-radius: 20px; padding: .45rem 1rem; font-family: var(--font-body); font-weight: 700; font-size: .78rem; cursor: pointer; transition: background .2s; white-space: nowrap; }
.lnp-newsletter-btn:hover { background: var(--lnp2-purple-lt); }
.lnp-footer-bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: .75rem; padding: 1.5rem 0; font-family: var(--font-body); font-size: .8rem; color: rgba(255,255,255,.4); }
.lnp-footer-legal { display: flex; gap: 1.25rem; flex-wrap: wrap; }
.lnp-footer-legal a { color: rgba(255,255,255,.4); font-size: .8rem; transition: color .2s; text-decoration: none; }
.lnp-footer-legal a:hover { color: var(--lnp2-purple); }

/* ══════════════════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════════════════ */
@media (max-width: 1199px) {
    .lnp2-library-grid { grid-template-columns: repeat(4, 1fr); }
}

@media (max-width: 991px) {
    .lnp2-why-grid { grid-template-columns: repeat(2, 1fr); }
    .lnp2-library-grid { grid-template-columns: repeat(3, 1fr); }
    .lnp2-hiw-steps { gap: .5rem; }
    .lnp2-hiw-step { flex: 0 0 160px; }
    .lnp2-promise-grid { height: 320px; }
}

@media (max-width: 767px) {
    .lnp2-hero { padding: 90px 0 50px; }
    .lnp2-hero-title { font-size: 2rem; }
    .lnp2-hero-btns { flex-direction: column; }
    .lnp2-hero-btns a { justify-content: center; }
    .lnp2-hero-video-frame { margin-top: 1.5rem; aspect-ratio: 16/9; }

    .lnp2-stats-inner { gap: .5rem; }
    .lnp2-stat-item { padding: .25rem .75rem; font-size: .75rem; }
    .lnp2-stat-sep { display: none; }

    .lnp2-brands-section { padding: 50px 0 0; }

    .lnp2-library-grid { grid-template-columns: repeat(2, 1fr); }
    .lnp2-age-tabs { gap: .5rem; }
    .lnp2-age-tab { min-width: 70px; padding: .6rem .75rem; font-size: .72rem; }
    .lnp2-age-tab img { height: 28px; width: 28px; }

    .lnp2-why-grid { grid-template-columns: 1fr 1fr; }

    .lnp2-hiw-steps { flex-wrap: wrap; justify-content: center; gap: 1.5rem; }
    .lnp2-hiw-step { flex: 0 0 calc(50% - 1rem); }
    .lnp2-hiw-arrow { display: none; }
    .lnp2-hiw-bottom { gap: 1rem; }
    .lnp2-hiw-bottom-img { height: 60px; }

    .lnp2-promise-grid { grid-template-columns: 1fr 1fr; grid-template-rows: repeat(2, 160px); height: unset; }
    .lnp2-promise-img-1 { grid-column: 1; grid-row: 1; }
    .lnp2-promise-img-2 { grid-column: 2; grid-row: 1; }
    .lnp2-promise-img-3 { grid-column: 1 / 3; grid-row: 2; }

    .lnp2-dash-stats { grid-template-columns: repeat(3, 1fr); }
    .lnp2-dash-val { font-size: 1.4rem; }

    .lnp-footer { padding: 3rem 0 0; }
    .lnp-footer-bottom { flex-direction: column; text-align: center; }
    .lnp-footer-legal { justify-content: center; }

    .navbar-collapse { background: var(--lnp2-white); padding: 1rem; border-top: 1px solid var(--lnp2-border); margin-top: .5rem; }
}

@media (max-width: 480px) {
    .lnp2-library-grid { grid-template-columns: repeat(2, 1fr); }
    .lnp2-why-grid { grid-template-columns: 1fr 1fr; }
    .lnp2-hiw-step { flex: 0 0 100%; }
}

/* ── Toy Category Grid ─────────────────────────────────── */
.lnp2-cat-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.25rem;
}

.lnp2-cat-card {
    display: flex; flex-direction: column;
    align-items: center; gap: .75rem;
    text-align: center;
}

.lnp2-cat-img-wrap {
    width: 100%; aspect-ratio: 1;
    border-radius: 50%;
    overflow: hidden;
    background: #F0EBF8;
    display: flex; align-items: center; justify-content: center;
    border: 3px solid rgba(124,92,191,.1);
    transition: transform .2s, box-shadow .2s;
}

.lnp2-cat-card:hover .lnp2-cat-img-wrap {
    transform: scale(1.04);
    box-shadow: 0 8px 24px rgba(124,92,191,.15);
}

.lnp2-cat-img-wrap img {
    width: 100%; height: 100%;
    object-fit: cover;
}

.lnp2-cat-img-placeholder {
    font-size: 2.5rem;
}

.lnp2-cat-name {
    font-family: var(--font-body);
    font-weight: 700; font-size: .9rem;
    color: var(--lnp2-dark);
}

.lnp2-cat-btn {
    color: #fff; border: none; border-radius: 50px;
    font-family: var(--font-body); font-weight: 700; font-size: .78rem;
    padding: .45rem 1.1rem;
    display: inline-flex; align-items: center;
    text-decoration: none; transition: opacity .2s, transform .2s;
    white-space: nowrap;
}
.lnp2-cat-btn:hover { opacity: .88; color: #fff; transform: translateY(-1px); }

/* Remove old onclick cursor from age cards */
.lnp2-age-figma-card { cursor: default; }

/* Responsive */
@media (max-width: 991px) {
    .lnp2-cat-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 600px) {
    .lnp2-cat-grid { grid-template-columns: repeat(2, 1fr); }
    .lnp2-age-cards-row { flex-wrap: wrap; }
    .lnp2-age-figma-card { flex: 0 0 calc(50% - .5rem); }
}

/* ══════════════════════════════════════════════════════════
   PLANS v2 — Figma scalloped card design
══════════════════════════════════════════════════════════ */
.lnp2-plans-section { background: #fff; padding: 80px 0; }

.lnp2-plans-trial-note {
    font-family: var(--font-body);
    font-size: .9rem; color: var(--lnp2-dark);
    margin-top: .5rem;
}

.lnp2-plan-card-v2 {
    border: 2px solid;
    border-radius: 24px;
    padding: 2rem 1.75rem;
    position: relative;
    display: flex; flex-direction: column; gap: .75rem;
    height: 100%;
    /* Scalloped effect via box-shadow */
    box-shadow:
        0 0 0 4px #fff,
        0 0 0 6px currentColor;
    transition: transform .25s, box-shadow .25s;
}
.lnp2-plan-card-v2:hover { transform: translateY(-4px); }
.lnp2-plan-v2-featured { transform: translateY(-8px); }
.lnp2-plan-v2-featured:hover { transform: translateY(-12px); }

.lnp2-plan-v2-popular {
    position: absolute; top: -28px; right: 1.5rem;
}
.lnp2-plan-v2-popular img { height: 60px; width: auto; }

.lnp2-plan-v2-icon { font-size: 2rem; }

.lnp2-plan-v2-name {
    font-family: 'Fredoka', sans-serif;
    font-weight: 700; font-size: 1.3rem;
    color: var(--lnp2-dark);
}

.lnp2-plan-v2-price {
    font-family: var(--font-body);
    font-weight: 700; font-size: .95rem;
    color: var(--lnp2-dark);
}

.lnp2-plan-v2-toy-row {
    display: flex; align-items: baseline; gap: .5rem;
    padding: .5rem 0;
    border-top: 1px solid rgba(27,42,59,.08);
    border-bottom: 1px solid rgba(27,42,59,.08);
}

.lnp2-plan-v2-toynum {
    font-family: 'Fredoka', sans-serif;
    font-size: 2.5rem; font-weight: 700;
    color: var(--lnp2-dark); line-height: 1;
}

.lnp2-plan-v2-toylabel {
    font-family: var(--font-body);
    font-size: .8rem; color: var(--lnp2-muted);
    line-height: 1.4; max-width: 140px;
}

.lnp2-plan-v2-feats {
    list-style: none; padding: 0; margin: 0; flex: 1;
}
.lnp2-plan-v2-feats li {
    display: flex; align-items: flex-start; gap: .5rem;
    font-family: var(--font-body); font-size: .82rem;
    color: var(--lnp2-muted); padding: .3rem 0;
    line-height: 1.4;
}
.lnp2-plan-v2-feats li i { color: var(--lnp2-purple); font-size: .72rem; margin-top: .2rem; flex-shrink: 0; }

.lnp2-plan-v2-btn {
    display: block; text-align: center;
    border: none; border-radius: 50px;
    font-family: var(--font-body); font-weight: 700; font-size: .9rem;
    padding: .85rem 1rem;
    text-decoration: none; cursor: pointer;
    transition: opacity .2s, transform .2s;
    margin-top: auto;
}
.lnp2-plan-v2-btn:hover { opacity: .88; transform: translateY(-1px); }

.lnp2-plans-compare-btn {
    display: inline-flex; align-items: center;
    border: 1.5px solid rgba(27,42,59,.25);
    border-radius: 50px; padding: .65rem 1.75rem;
    font-family: var(--font-body); font-weight: 600; font-size: .875rem;
    color: var(--lnp2-dark); text-decoration: none;
    transition: all .2s; margin-top: .75rem;
}
.lnp2-plans-compare-btn:hover { background: var(--lnp2-dark); color: #fff; }

/* ── HIW overlay fix ─────────────────────────────────────── */
.lnp2-hiw-overlay { background: rgba(253,248,242,.9) !important; }

/* ── Responsive plans ────────────────────────────────────── */
@media (max-width: 991px) {
    .lnp2-plan-v2-featured { transform: none; }
}
@media (max-width: 767px) {
    .lnp2-plan-card-v2 { box-shadow: 0 4px 16px rgba(27,42,59,.08); }
}

/* ══════════════════════════════════════════════════════════
   DASHBOARD v2 — Figma design
══════════════════════════════════════════════════════════ */
.lnp2-dash-section { background: #F5EDF8; padding: 80px 0; }

.lnp2-dash-feats {
    list-style: none; padding: 0; margin: 1.25rem 0 1.75rem;
    display: flex; flex-direction: column; gap: .6rem;
}
.lnp2-dash-feats li {
    display: flex; align-items: center; gap: .75rem;
    font-family: var(--font-body); font-size: .875rem;
    color: var(--lnp2-dark);
}
.lnp2-dash-bullet {
    width: 8px; height: 8px; border-radius: 50%;
    background: var(--lnp2-gold); flex-shrink: 0;
}

/* Dashboard mockup */
.lnp2-dash-v2 {
    background: #EDE3FF;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(124, 92, 191, .15);
    border: 1px solid #5B2280;
    box-shadow: 6px 6px 6px #000;
}

.lnp2-dash-v2-head {
    padding: 1rem 1.5rem;
    display: flex; justify-content: space-between; align-items: center;
}
.lnp2-dash-v2-title {
    font-family: var(--font-body); font-weight: 700;
    font-size: .875rem; color: #514B60;
}
.lnp2-dash-v2-plan {
    font-family: var(--font-body); font-size: .75rem;
    font-weight: 600; color: var(--lnp2-gold);
    background: #fff;
    border: 1px solid rgba(201,149,108,.3);
    border-radius: 20px; padding: .2rem .65rem;
}

/* 4-box stats grid */
.lnp2-dash-v2-stats {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: .75rem; padding: 1.25rem;
}

.lnp2-dash-v2-stat {
    background: #fff;
    border-radius: 14px; padding: 1rem 1.1rem;
    border: 1px solid rgba(27,42,59,.06);
}

.lnp2-dash-v2-stat-label {
    font-family: var(--font-body); font-size: .65rem;
    font-weight: 700; text-transform: uppercase;
    letter-spacing: 1px; color: var(--lnp2-muted);
    margin-bottom: .4rem;
}

.lnp2-dash-v2-stat-val {
    font-family: var(--font-body); font-weight: 800;
    font-size: 1.15rem; color: var(--lnp2-gold);
    line-height: 1.2; margin-bottom: .2rem;
}

.lnp2-dash-v2-stat-sub {
    font-family: var(--font-body); font-size: .72rem;
    color: var(--lnp2-muted); line-height: 1.3;
}

/* Toy item rows */
.lnp2-dash-v2-items {
    padding: 0 1.25rem 1.25rem;
    display: flex; flex-direction: column; gap: .5rem;
}

.lnp2-dash-v2-item {
    background: #fff;
    border-radius: 12px; padding: .7rem 1rem;
    display: flex; align-items: center; gap: .85rem;
    border: 1px solid rgba(201,149,108,.2);
}

.lnp2-dash-v2-item-icon {
    width: 34px; height: 34px; border-radius: 8px;
    background: rgba(201,149,108,.1);
    display: flex; align-items: center; justify-content: center;
    color: var(--lnp2-gold); font-size: .9rem; flex-shrink: 0;
}

.lnp2-dash-v2-item-name {
    font-family: var(--font-body); font-weight: 600;
    font-size: .825rem; color: var(--lnp2-dark); flex: 1;
}

.lnp2-dash-v2-tag {
    font-family: var(--font-body); font-size: .68rem;
    font-weight: 700; border-radius: 20px;
    padding: .2rem .65rem; white-space: nowrap;
}
.lnp2-tag-montessori, .lnp2-tag-books, .lnp2-tag-pretend    { background: #EA9E7E;  color: #fff; }

/* Responsive */
@media (max-width: 767px) {
    .lnp2-dash-v2-stats { grid-template-columns: 1fr 1fr; gap: .5rem; }
}

/* ══════════════════════════════════════════════════════════
   FAQ v2 — Figma design (white bg, footer bg image bottom)
══════════════════════════════════════════════════════════ */
.lnp2-faq-section-v2 {
    background: #fff;
    position: relative;
    padding: 80px 0 0;
    overflow: hidden;
}

.lnp2-faq-bg-bottom {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 260px;
    background-size: cover;
    background-position: top center;
    background-repeat: no-repeat;
    z-index: 0;
}

.lnp2-faq-inner {
    position: relative; z-index: 1;
    padding-bottom: 280px;
}

.lnp2-faq-list-v2 { margin-top: 1rem; }

.lnp2-faq-item-v2 {
    border-bottom: 1px solid rgba(27,42,59,.1);
}

.lnp2-faq-q-v2 {
    width: 100%; background: none; border: none;
    display: flex; justify-content: space-between; align-items: center;
    padding: 1.25rem 0;
    font-family: var(--font-body); font-weight: 600; font-size: .95rem;
    color: var(--lnp2-dark); text-align: left; cursor: pointer; gap: 1rem;
    transition: color .2s;
}
.lnp2-faq-q-v2:hover { color: var(--lnp2-gold); }

.lnp2-faq-ic-v2 {
    width: 32px; height: 32px; border-radius: 50%;
    background: rgba(201,149,108,.15);
    border: 1.5px solid var(--lnp2-gold);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0; color: var(--lnp2-gold); font-size: .75rem;
    transition: all .2s;
}
.lnp2-faq-ic-v2.lnp2-faq-open {
    background: var(--lnp2-dark);
    border-color: var(--lnp2-dark);
    color: #fff;
}

.lnp2-faq-a-v2 {
    font-family: var(--font-body); font-size: .875rem;
    color: var(--lnp2-muted); line-height: 1.75;
    padding-bottom: 1.25rem;
    max-width: 620px;
}

.lnp2-faq-view-btn {
    display: inline-flex; align-items: center;
    background: var(--lnp2-dark); color: #fff;
    border-radius: 50px; padding: .75rem 2rem;
    font-family: var(--font-body); font-weight: 700; font-size: .875rem;
    text-decoration: none; transition: all .25s;
}
.lnp2-faq-view-btn:hover { background: #2C3E50; color: #fff; transform: translateY(-2px); }

/* ══════════════════════════════════════════════════════════
   BACKGROUND OVERLAY FIXES — remove heavy overlays
══════════════════════════════════════════════════════════ */

/* HIW — lighter overlay so bg image shows */
.lnp2-hiw-overlay {
    background: rgba(253,248,242,.82) !important;
}

/* Library section bg */
.lnp2-library-section { background: #FDF8FF; }

/* Only at LNP — no overlay, direct bg */
/*.lnp2-only-lnp-inner { background: transparent !important; backdrop-filter: none !important; }*/

/* Stats strip — ensure visible */
.lnp2-stats-strip { background: #C8A8E9 !important; }

/* Responsive FAQ */
@media (max-width: 767px) {
    .lnp2-faq-inner { padding-bottom: 200px; }
    .lnp2-faq-bg-bottom { height: 200px; }
}


/* ================================================================
   FINAL DESIGN FIXES — Complete override block
   ================================================================ */

/* ── Hero bullets ─────────────────────────────────────────── */
.lnp2-hero-bullets {
    list-style: none; padding: 0;
    margin: 0 0 1.25rem;
    display: flex; flex-direction: column; gap: .5rem;
}
.lnp2-hero-bullets li {
    display: flex; align-items: center; gap: .6rem;
    font-family: var(--font-body); font-size: .875rem;
    color: var(--lnp2-dark); font-weight: 500;
}
.lnp2-hero-bullets li::before {
    content: '';
    width: 8px; height: 8px; border-radius: 50%;
    background: var(--lnp2-gold); flex-shrink: 0;
}

/* ── Stats strip — properly visible ──────────────────────── */
.lnp2-stats-strip {
    background: #B89AD4 !important;
    padding: 18px 0 !important;
}
.lnp2-stat-item {
    background: rgba(255,255,255,.8) !important;
    /*border: 1.5px dashed rgba(255,255,255,.95) !important;*/
    backdrop-filter: none !important;
        box-shadow: 0px 0px 0px 3px #fff;
}
.lnp2-stat-item strong { color: #5C2D82 !important; }

/* ── Only at LNP — bg image visible ──────────────────────── */
.lnp2-only-lnp {
    background-size: cover !important;
    background-position: center bottom !important;
}
.lnp2-only-lnp-inner {
    /*background: rgba(230,210,255,.82) !important;*/
    /*backdrop-filter: blur(2px) !important;*/
}
.lnp2-only-lnp-text { color: #1B2A3B !important; }
.lnp2-only-lnp-sub  { color: #6B6B6B !important; }

/* ── HIW — bg image visible ───────────────────────────────── */
.lnp2-hiw-section {
    background-size: cover !important;
    background-position: center top !important;
}
.lnp2-hiw-overlay {
    background: rgba(255,252,248,.75) !important;
}

/* ── Why Parents — 6 col proper ──────────────────────────── */
.lnp2-why-grid {
    display: grid !important;
    grid-template-columns: repeat(6, 1fr) !important;
    gap: .85rem !important;
    margin-top: 2rem !important;
}
.lnp2-why-card { padding: .85rem .75rem !important; }
.lnp2-why-img-wrap { aspect-ratio: 1 !important; border-radius: 14px !important; }
.lnp2-why-title { font-size: .78rem !important; line-height: 1.3 !important; }
.lnp2-why-desc  { font-size: .7rem !important; }

/* ── Category grid — images ───────────────────────────────── */
.lnp2-cat-no-img {
    display: flex; align-items: center; justify-content: center;
    width: 100%; height: 100%; font-size: 3rem;
    background: #F0EBF8;
}

/* ── Plans v2 — fix order & featured ──────────────────────── */
.lnp2-plans-section { background: #fff; padding: 80px 0; }

.lnp2-plan-card-v2 {
    box-shadow: none !important;
}

/* ── FAQ — footer bg fix ──────────────────────────────────── */
.lnp2-faq-section-v2 {
    padding-top: 80px !important;
    padding-bottom: 0 !important;
    overflow: hidden !important;
}
.lnp2-faq-bg-bottom {
    height: 240px !important;
    background-size: cover !important;
    background-position: top center !important;
    background-repeat: no-repeat !important;
    position: absolute !important;
    bottom: 0 !important; left: 0 !important; right: 0 !important;
    z-index: 0 !important;
}
.lnp2-faq-inner {
    position: relative !important;
    z-index: 1 !important;
    padding-bottom: 260px !important;
}

/* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 1199px) {
    .lnp2-why-grid { grid-template-columns: repeat(3, 1fr) !important; }
}
@media (max-width: 991px) {
    .lnp2-why-grid { grid-template-columns: repeat(3, 1fr) !important; }
    .lnp2-stat-item { padding: .4rem .75rem !important; font-size: .75rem !important; }
}
@media (max-width: 767px) {
    .lnp2-why-grid { grid-template-columns: repeat(2, 1fr) !important; }
    .lnp2-faq-inner { padding-bottom: 180px !important; }
    .lnp2-faq-bg-bottom { height: 180px !important; }
    .lnp2-stat-item { font-size: .72rem !important; padding: .35rem .6rem !important; }
    .lnp2-stat-item img { height: 22px !important; }
    .lnp2-stats-inner { gap: .35rem !important; }
}

/* ================================================================
   FINAL v2 FIXES
   ================================================================ */

/* ── HIW bottom icons — hidden ────────────────────────────── */
.lnp2-hiw-bottom { display: none !important; }

/* ── HIW bg image — more visible ─────────────────────────── */
.lnp2-hiw-overlay {
    background: rgba(255,252,248,.7) !important;
}

/* ── Plan cards — scalloped Figma style ───────────────────── */
.lnp2-plan-card-v2 {
    border-width: 2px !important;
    border-style: solid !important;
    border-radius: 28px !important;
    /* Scalloped via clip-path not supported well, use border-image instead */
    box-shadow: 0 4px 20px rgba(27,42,59,.08) !important;
    transition: transform .25s, box-shadow .25s !important;
}

.lnp2-plan-card-v2:hover {
    transform: translateY(-4px) !important;
    box-shadow: 0 12px 36px rgba(27,42,59,.12) !important;
}

.lnp2-plan-v2-featured {
    transform: translateY(-10px) !important;
    box-shadow: 0 16px 48px rgba(124,92,191,.2) !important;
}
.lnp2-plan-v2-featured:hover {
    transform: translateY(-14px) !important;
}

/* Plan image icon */
.lnp2-plan-v2-icon img {
    height: 52px; width: 52px; object-fit: contain;
}

/* ── FAQ — grass bg fully visible ────────────────────────── */
.lnp2-faq-section-v2 {
    position: relative !important;
    background: #fff !important;
    overflow: hidden !important;
}

.lnp2-faq-bg-bottom {
    position: absolute !important;
    bottom: 0 !important; left: 0 !important; right: 0 !important;
    height: 280px !important;
    background-size: 100% auto !important;
    background-position: bottom center !important;
    background-repeat: no-repeat !important;
    z-index: 0 !important;
}

.lnp2-faq-inner {
    position: relative !important;
    z-index: 1 !important;
}

/* ── Stats strip final fix ────────────────────────────────── */
.lnp2-stats-strip {
    background: linear-gradient(135deg, #C8A8E9 0%, #B090D8 100%) !important;
}

/* ── Responsive plan cards ────────────────────────────────── */
@media (max-width: 991px) {
    .lnp2-plan-v2-featured { transform: none !important; }
    .lnp2-plan-v2-featured:hover { transform: translateY(-4px) !important; }
}

/* ── FAQ footer-bg — full section background fix ─────────── */
.lnp2-faq-section-v2 {
    background: url(https://toy.yourwebsitedemo.in/storage/media-library/faq-top.png) no-repeat !important;
    background-size: contain !important;
    background-position: top center !important;
    background-repeat: no-repeat !important;
    background-color: #fff !important;
}

.lnp2-faq-inner {
    padding-bottom: 80px !important;
}
/* ── Plans — tilt + double-ring scalloped border ──────────── */
.lnp2-plans-section .col-md-4:first-child .lnp2-plan-card-v2 {
    transform: rotate(-2deg) !important;
}
.lnp2-plans-section .col-md-4:first-child .lnp2-plan-card-v2:hover {
    transform: rotate(-2deg) translateY(-6px) !important;
}
.lnp2-plans-section .col-md-4:nth-child(2) .lnp2-plan-card-v2 {
    transform: translateY(-14px) !important;
}
.lnp2-plans-section .col-md-4:nth-child(2) .lnp2-plan-card-v2:hover {
    transform: translateY(-20px) !important;
}
.lnp2-plans-section .col-md-4:last-child .lnp2-plan-card-v2 {
    transform: rotate(2deg) !important;
}
.lnp2-plans-section .col-md-4:last-child .lnp2-plan-card-v2:hover {
    transform: rotate(2deg) translateY(-6px) !important;
}

/* Double-ring scalloped effect */
.lnp2-plans-section .col-md-4:first-child .lnp2-plan-card-v2 {
    box-shadow: 0 0 0 5px #fff, 0 0 0 8px #F5A8A8 !important;
}
.lnp2-plans-section .col-md-4:nth-child(2) .lnp2-plan-card-v2 {
    box-shadow: 0 0 0 5px #fff, 0 0 0 8px #C8A8E9, 0 20px 48px rgba(124,92,191,.2) !important;
}
.lnp2-plans-section .col-md-4:last-child .lnp2-plan-card-v2 {
    box-shadow: 0 0 0 5px #fff, 0 0 0 8px #A8C4E9 !important;
}

/* FAQ bg fix — use faq-top as bg + faq-bottom at bottom */
.lnp2-faq-section-v2 {
    background: url('https://toy.yourwebsitedemo.in/storage/media-library/faq-top.png') no-repeat !important;
    background-size: contain !important;
    background-position: top center !important;
    background-color: #fff !important;
}

/* Responsive — remove tilt on mobile */
@media (max-width: 991px) {
    .lnp2-plans-section .col-md-4:first-child .lnp2-plan-card-v2,
    .lnp2-plans-section .col-md-4:last-child .lnp2-plan-card-v2 {
        transform: none !important;
    }
    .lnp2-plans-section .col-md-4:nth-child(2) .lnp2-plan-card-v2 {
        transform: none !important;
    }
}

/* ================================================================
   RESPONSIVE — Complete mobile/tablet fixes
   ================================================================ */

/* ── 1200px+ (XL) ─────────────────────────────────────────── */
@media (max-width: 1199px) {
    .lnp2-hero-title { font-size: 2.8rem; }
    .lnp2-library-grid { grid-template-columns: repeat(4, 1fr); }
    .lnp2-why-grid { grid-template-columns: repeat(3, 1fr) !important; }
    .lnp2-hiw-step-v2 { flex: 0 0 180px; }
    .lnp2-age-figma-card { min-width: 140px; }
}

/* ── 991px (tablet) ───────────────────────────────────────── */
@media (max-width: 991px) {

    /* Hero */
    .lnp2-hero { padding: 90px 0 0; }
    .lnp2-hero-title { font-size: 2.2rem; }
    .lnp2-hero-video-frame { margin-top: 2rem; aspect-ratio: 16/9; border-radius: 16px; }

    /* Stats */
    .lnp2-stats-inner { gap: .3rem !important; flex-wrap: wrap; }
    .lnp2-stat-item { padding: .35rem .65rem !important; font-size: .75rem !important; }
    .lnp2-stat-item img { height: 22px !important; }
    .lnp2-stat-sep { display: none; }

    /* Brands */
    .lnp2-brands-section { padding: 50px 0 0; }

    /* Age cards */
    .lnp2-age-cards-row { flex-wrap: wrap; }
    .lnp2-age-figma-card { flex: 0 0 calc(33.33% - .75rem); min-width: 130px; }

    /* Library grid */
    .lnp2-library-grid { grid-template-columns: repeat(3, 1fr); }

    /* Why parents */
    .lnp2-why-grid { grid-template-columns: repeat(3, 1fr) !important; }

    /* HIW */
    .lnp2-hiw-steps { flex-wrap: wrap; justify-content: center; gap: 1.5rem; }
    .lnp2-hiw-step-v2 { flex: 0 0 calc(50% - 1rem); }
    .lnp2-hiw-connector { display: none; }

    /* Promise grid */
    .lnp2-promise-grid { height: 320px; }

    /* Plans — no tilt on tablet */
    .lnp2-plans-section .col-md-4:first-child .lnp2-plan-card-v2,
    .lnp2-plans-section .col-md-4:last-child .lnp2-plan-card-v2 {
        transform: none !important;
        box-shadow: 0 0 0 5px #fff, 0 0 0 8px #F5A8A8 !important;
    }
    .lnp2-plans-section .col-md-4:last-child .lnp2-plan-card-v2 {
        box-shadow: 0 0 0 5px #fff, 0 0 0 8px #A8C4E9 !important;
    }
    .lnp2-plans-section .col-md-4:nth-child(2) .lnp2-plan-card-v2 {
        transform: none !important;
    }
    .lnp2-plan-v2-featured { transform: none !important; }

    /* Dashboard */
    .lnp2-dash-v2-stats { grid-template-columns: repeat(2, 1fr); }
}

/* ── 767px (mobile) ───────────────────────────────────────── */
@media (max-width: 767px) {

    /* Section padding */
    .lnp2-hero { padding: 85px 0 0; }
    .lnp2-brands-section,
    .lnp2-library-section,
    .lnp2-why-section,
    .lnp2-promise-section,
    .lnp2-hiw-section,
    .lnp2-plans-section,
    .lnp2-dash-section,
    .lnp2-faq-section-v2 { padding: 50px 0; }

    /* Hero */
    .lnp2-hero-title { font-size: 1.85rem; line-height: 1.1; }
    .lnp2-hero-bold-sub { font-size: .9rem; }
    .lnp2-hero-sub { font-size: .85rem; }
    .lnp2-hero-btns { flex-direction: column; }
    .lnp2-hero-btns a { justify-content: center; text-align: center; }
    .lnp2-hero-video-frame { border-radius: 14px; }

    /* Stats */
    .lnp2-stats-strip { padding: 14px 0 !important; }
    .lnp2-stats-inner { gap: .25rem !important; }
    .lnp2-stat-item { font-size: .68rem !important; padding: .3rem .5rem !important; }
    .lnp2-stat-item img { height: 18px !important; }

    /* Brands */
    .lnp2-brand-logo img { height: 32px; }
    .lnp2-only-lnp-inner { padding: 2rem 1.25rem !important; }
    .lnp2-only-lnp-text { font-size: 1.2rem !important; }

    /* Age cards */
    .lnp2-age-figma-card { flex: 0 0 calc(50% - .5rem); }

    /* Library */
    .lnp2-library-grid { grid-template-columns: repeat(2, 1fr); gap: .75rem; }

    /* Why parents */
    .lnp2-why-grid { grid-template-columns: repeat(2, 1fr) !important; gap: .75rem !important; }
    .lnp2-why-title { font-size: .75rem !important; }

    /* HIW */
    .lnp2-hiw-step-v2 { flex: 0 0 100%; max-width: 280px; }
    .lnp2-hiw-card-v2 { padding: 1.75rem 1.25rem 1.25rem; }

    /* Promise */
    .lnp2-promise-grid { height: auto; grid-template-rows: repeat(2, 160px); }

    /* Plans */
    .lnp2-plans-section .row { gap: 1.5rem !important; }
    .lnp2-plan-card-v2 { box-shadow: 0 4px 16px rgba(27,42,59,.08) !important; }

    /* Dashboard */
    .lnp2-dash-v2-stats { grid-template-columns: repeat(2, 1fr); gap: .5rem; }
    .lnp2-dash-v2-stat-val { font-size: .95rem; }

    /* Navbar */
    .lnp2-navbar { background: #fff !important; }
    .navbar-collapse { background: #fff; padding: 1rem; border-top: 1px solid var(--lnp2-border); }

    /* FAQ */
    .lnp2-faq-section-v2 { background-size: auto 200px !important; }
    .lnp2-faq-inner { padding-bottom: 200px !important; }
    .lnp2-faq-bg-bottom { height: 200px !important; }
}

/* ── 480px (small mobile) ─────────────────────────────────── */
@media (max-width: 480px) {

    .lnp2-hero-title { font-size: 1.65rem; }
    .lnp2-hero-tag { font-size: .7rem; padding: .25rem .75rem; }

    /* Stats wrap */
    .lnp2-stats-inner { justify-content: center; }
    .lnp2-stat-item { flex: 0 0 calc(50% - .5rem); justify-content: center; border-radius: 50px; }

    /* Age cards full width on tiny screens */
    .lnp2-age-figma-card { flex: 0 0 calc(50% - .5rem); padding: 1.1rem .85rem; }

    /* Library 2 col */
    .lnp2-library-grid { grid-template-columns: repeat(2, 1fr); }

    /* Why parents 2 col */
    .lnp2-why-grid { grid-template-columns: repeat(2, 1fr) !important; }

    /* Plans stack */
    .lnp2-plans-section .col-md-4 { width: 100%; }

    /* Cat grid */
    .lnp2-cat-grid { grid-template-columns: repeat(2, 1fr) !important; }

    /* Dash mockup */
    .lnp2-dash-head { flex-direction: column; gap: .25rem; }
}

/* ── Hero → Stats spacing fix ─────────────────────────────── */
.lnp2-hero { padding-bottom: 40px; }
.lnp2-stats-strip { margin-top: 0; }

/* ── Category Swiper ─────────────────────────────────────────*/
.lnp2-cat-swiper {
    padding: 1rem .5rem 3rem !important;
    overflow: visible;
}

.lnp2-cat-swiper .swiper-wrapper { align-items: stretch; }

.lnp2-cat-swiper .swiper-slide { height: auto; }

/* Swiper nav buttons */
.lnp2-cat-prev,
.lnp2-cat-next {
    color: var(--lnp2-purple) !important;
    background: #fff;
    width: 36px !important; height: 36px !important;
    border-radius: 50%;
    box-shadow: 0 2px 12px rgba(27,42,59,.12);
    top: 40% !important;
}
.lnp2-cat-prev::after,
.lnp2-cat-next::after { font-size: .8rem !important; font-weight: 700; }

/* Swiper pagination dots */
.lnp2-cat-pagination .swiper-pagination-bullet {
    background: var(--lnp2-purple); opacity: .3;
}
.lnp2-cat-pagination .swiper-pagination-bullet-active { opacity: 1; }

/* ── Promise grid v2 — correct layout ────────────────────────*/
.lnp2-promise-grid-v2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 210px 210px;
    gap: .85rem;
}

.lnp2-promise-cell { border-radius: 14px; overflow: hidden; }
.lnp2-promise-cell img { width: 100%; height: 100%; object-fit: cover; }

/* Tall cell spans 2 rows */
.lnp2-promise-cell-tall { grid-row: 1 / 3; }

/* Wide cell */
.lnp2-promise-cell-wide { }

/* Responsive promise grid */
@media (max-width: 767px) {
    .lnp2-promise-grid-v2 {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 140px 140px;
    }
    .lnp2-promise-cell-tall { grid-row: 1 / 3; }
}
/* ── Category desktop grid ───────────────────────────────── */
.lnp2-cat-grid-desktop {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.25rem;
}

/* ── Category mobile swiper ──────────────────────────────── */
.lnp2-cat-swiper {
    padding: 1rem .25rem 3rem !important;
    overflow: hidden !important;
}
.lnp2-cat-swiper .swiper-slide { width: 160px; }
.lnp2-cat-pagination { bottom: 0 !important; }
.lnp2-cat-pagination .swiper-pagination-bullet { background: var(--lnp2-purple); }
.lnp2-cat-pagination .swiper-pagination-bullet-active { opacity: 1; }

/* ── Promise 4 square images 2x2 ────────────────────────── */
.lnp2-promise-sq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: .85rem;
    aspect-ratio: 1;
}

.lnp2-promise-sq {
    border-radius: 14px;
    overflow: hidden;
    aspect-ratio: 1;
}

.lnp2-promise-sq img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Mobile promise */
@media (max-width: 767px) {
    .lnp2-promise-sq-grid {
        max-width: 360px;
        margin: 2rem auto 0;
    }
}


/* ================================================================
   DASHBOARD — Pulled from lnp-frontend.css
   ================================================================ */

/* ── Local vars (for dashboard) ─────────────────────────── */
.lnp-subscriber-dashboard,
.lnp-subscriber-dashboard * {
    --lnp-bg-soft:    #F8FAFC;
    --lnp-border:     #E5E7EB;
    --lnp-shadow:     0 4px 20px rgba(27,42,59,.08);
    --lnp-shadow-lg:  0 12px 40px rgba(27,42,59,.15);
    --lnp-radius:     10px;
    --lnp-radius-lg:  14px;
    --lnp-radius-xl:  20px;
    --lnp-navy:       #1B2A3B;
    --lnp-green:      #4A8C5C;
    --lnp-green-dk:   #3A7A4C;
    --lnp-green-lt:   #D4EAD9;
    --lnp-slate:      #4B5563;
    --lnp-muted:      #6B6B6B;
    --font-heading:   'Fredoka', sans-serif;
}

.lnp-subscriber-dashboard { padding-top: 100px; background: var(--lnp-bg-soft); min-height: 100vh; }

/* Welcome header */
.lnp-dash-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 28px;
}
.lnp-dash-welcome { display: flex; align-items: center; gap: 16px; }
.lnp-dash-avatar {
    width: 56px; height: 56px;
    border-radius: 50%;
    background: var(--lnp-navy);
    color: white;
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 800;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.lnp-dash-title { font-size: 26px; font-weight: 800; margin: 0 0 4px; }
.lnp-dash-subtitle { font-size: 14px; color: var(--lnp-slate); margin: 0; }
.lnp-dash-header-actions { display: flex; gap: 8px; }

/* Stat cards */
.lnp-stat-card {
    background: white;
    border-radius: var(--lnp-radius-lg);
    padding: 20px;
    text-align: center;
    border: 1px solid var(--lnp-border);
    transition: all 0.2s;
}
.lnp-stat-card:hover { box-shadow: var(--lnp-shadow); transform: translateY(-2px); }
.lnp-stat-icon {
    width: 44px; height: 44px;
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    font-size: 18px;
    margin: 0 auto 10px;
}
.lnp-stat-value { font-family: var(--font-heading); font-size: 28px; font-weight: 800; color: var(--lnp-navy); line-height: 1; }
.lnp-stat-label { font-size: 12px; color: var(--lnp-muted); margin-top: 4px; font-weight: 500; }

/* Dashboard cards */
.lnp-dash-card {
    background: white;
    border-radius: var(--lnp-radius-xl);
    border: 1px solid var(--lnp-border);
    overflow: hidden;
}
.lnp-dash-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    border-bottom: 1px solid var(--lnp-border);
}
.lnp-dash-card-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--lnp-navy);
    margin: 0;
    display: flex;
    align-items: center;
}

/* Empty state */
.lnp-empty-state {
    padding: 36px 24px;
    text-align: center;
}
.lnp-empty-icon { font-size: 40px; margin-bottom: 12px; }
.lnp-empty-state h5 { color: var(--lnp-navy); font-weight: 700; margin-bottom: 6px; }
.lnp-empty-state p { color: var(--lnp-muted); font-size: 14px; margin: 0; }

/* Home toys */
.lnp-home-toy-card {
    border: 1px solid var(--lnp-border);
    border-radius: var(--lnp-radius-lg);
    overflow: hidden;
    transition: all 0.2s;
}
.lnp-home-toy-card:hover { box-shadow: var(--lnp-shadow); }
.lnp-home-toy-img {
    aspect-ratio: 1;
    background: var(--lnp-bg-soft);
    display: flex; align-items: center; justify-content: center;
    overflow: hidden;
}
.lnp-home-toy-img img { width: 100%; height: 100%; object-fit: cover; }
.lnp-home-toy-body { padding: 10px 12px; }
.lnp-home-toy-name { font-size: 13px; font-weight: 700; color: var(--lnp-navy); margin-bottom: 3px; line-height: 1.3; }

.lnp-dash-card .row { padding: 20px; }

/* Orders list */
.lnp-orders-list { padding: 8px 0; }
.lnp-order-row {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 24px;
    border-bottom: 1px solid var(--lnp-border);
    transition: background 0.15s;
}
.lnp-order-row:last-child { border: none; }
.lnp-order-row:hover { background: var(--lnp-bg-soft); }
.lnp-order-emoji {
    width: 40px; height: 40px;
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}
.lnp-order-info { flex: 1; }
.lnp-order-type { font-size: 13px; font-weight: 700; color: var(--lnp-navy); }
.lnp-order-toys { font-size: 12px; color: var(--lnp-muted); margin: 2px 0; }
.lnp-order-date { font-size: 11px; color: var(--lnp-muted); }
.lnp-order-status .badge { font-size: 11px; padding: 4px 10px; }

/* Plan summary */
.lnp-plan-summary-card { padding: 20px; }
.lnp-plan-name-badge {
    display: inline-block;
    background: var(--lnp-navy);
    color: white;
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 700;
    padding: 4px 14px;
    border-radius: 20px;
    margin-bottom: 16px;
}
.lnp-plan-detail-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid var(--lnp-border);
    font-size: 13px;
    color: var(--lnp-slate);
}
.lnp-plan-detail-row:last-of-type { border: none; }
.lnp-plan-detail-row strong { color: var(--lnp-navy); font-weight: 700; }
.lnp-progress-bar {
    height: 6px;
    background: var(--lnp-border);
    border-radius: 10px;
    overflow: hidden;
}
.lnp-progress-fill {
    height: 100%;
    background: var(--lnp-green);
    border-radius: 10px;
    transition: width 0.5s ease;
}

/* Children profiles */
.lnp-child-profile-row {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    border-bottom: 1px solid var(--lnp-border);
}
.lnp-child-profile-row:last-child { border: none; }
.lnp-child-avatar {
    width: 36px; height: 36px;
    border-radius: 50%;
    background: var(--lnp-green);
    color: var(--lnp-navy);
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 800;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.lnp-child-name { font-size: 14px; font-weight: 700; color: var(--lnp-navy); }
.lnp-child-age { font-size: 12px; color: var(--lnp-muted); }
.lnp-primary-badge {
    font-size: 10px;
    font-weight: 700;
    background: rgba(21,209,108,0.12);
    color: var(--lnp-green-dk);
    padding: 2px 8px;
    border-radius: 10px;
}

/* Quick actions */
.lnp-quick-actions { padding: 16px; display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.lnp-quick-action-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    background: var(--lnp-bg-soft);
    border: 1px solid var(--lnp-border);
    border-radius: var(--lnp-radius);
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 600;
    color: var(--lnp-navy);
    text-decoration: none;
    transition: all 0.2s;
}
.lnp-quick-action-btn:hover {
    background: var(--lnp-navy);
    color: white;
    border-color: var(--lnp-navy);
}
.lnp-quick-action-btn i { color: var(--lnp-green); font-size: 14px; }
.lnp-quick-action-btn:hover i { color: var(--lnp-green); }

@media (max-width: 575px) {
    .lnp-dash-header { flex-direction: column; align-items: flex-start; }
    .lnp-quick-actions { grid-template-columns: 1fr; }
}

/* ── Dashboard font override to Fredoka ─────────────────── */
.lnp-subscriber-dashboard { padding-top: 90px; }
.lnp-dash-title  { font-family: 'Fredoka', sans-serif !important; color: #1B2A3B; }
.lnp-dash-avatar { background: #7C5CBF !important; }
.lnp-stat-value  { font-family: 'Fredoka', sans-serif !important; }
.lnp-dash-card-title { font-family: 'Fredoka', sans-serif !important; }
.lnp-plan-name-badge { background: #7C5CBF !important; }
.lnp-progress-fill   { background: #7C5CBF !important; }
.lnp-child-avatar    { background: #7C5CBF !important; color: #fff !important; }
.lnp-quick-action-btn:hover { background: #7C5CBF !important; border-color: #7C5CBF !important; }


/* ================================================================
   HOW IT WORKS PAGE CSS
   ================================================================ */

/* ── Shared page classes needed by HIW + Plans + HIW ─────── */
.lnp-bg-soft   { background: #F8FAFC; }
.lnp-bg-navy   { background: #1B2A3B; }

.lnp-eyebrow-light {
    color: rgba(255,255,255,.65) !important;
}

.lnp-section-title {
    font-family: 'Fredoka', sans-serif;
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 700; color: #1B2A3B;
    margin-bottom: .5rem;
}

.lnp-section-subtitle {
    font-family: 'Manrope', sans-serif;
    font-size: .95rem; color: #6B6B6B;
    line-height: 1.7; margin-bottom: 0;
}

.lnp-sanitization-section .lnp-clean-icon {
    background: rgba(255,255,255,.12) !important;
    color: #4A9E5C !important;
}

/* HIW page hero */
.lnp-hiw-page .lnp-page-hero {
    background: linear-gradient(135deg, #1B2A3B 0%, #2E2A35 100%);
    padding: 100px 0 60px;
    text-align: center;
}

/* HIW page btn overrides */
.lnp-hiw-page .lnp-btn-primary {
    background: #7C5CBF !important;
    border-color: #7C5CBF !important;
    color: #fff !important;
}
.lnp-hiw-page .lnp-btn-primary:hover {
    background: #9B7DD4 !important;
    border-color: #9B7DD4 !important;
}

.lnp-hiw-page .lnp-btn-ghost {
    color: rgba(255,255,255,.8) !important;
    border: 2px solid rgba(255,255,255,.3) !important;
    border-radius: 50px !important;
}
.lnp-hiw-page .lnp-btn-ghost:hover {
    background: rgba(255,255,255,.1) !important;
    color: #fff !important;
}

.lnp-hiw-page .lnp-text-link {
    color: #7C5CBF;
    font-weight: 600;
    text-decoration: none;
    font-family: 'Manrope', sans-serif;
}
.lnp-hiw-page .lnp-text-link:hover { color: #9B7DD4; }

/* HIW step titles font */
.lnp-hiw-step-title { font-family: 'Fredoka', sans-serif !important; }
.lnp-hiw-step-sub   { font-family: 'Manrope', sans-serif !important; }
.lnp-hiw-step-desc  { font-family: 'Manrope', sans-serif !important; }
.lnp-hiw-mini-card  { font-family: 'Manrope', sans-serif !important; }

/* CTA banner already defined in plans.css, ensure font */
.lnp-cta-banner .lnp-cta-inner h2 { font-family: 'Fredoka', sans-serif !important; }

/* Quick FAQ card font */
.lnp-quick-faq-q { font-family: 'Fredoka', sans-serif !important; }
.lnp-quick-faq-a { font-family: 'Manrope', sans-serif !important; }

/* Zone row font */
.lnp-zone-name { font-family: 'Fredoka', sans-serif !important; }

/* ══════════════════════════════════════════════════════════
   HOW IT WORKS PAGE
══════════════════════════════════════════════════════════ */

/* Hero stats */
.lnp-hiw-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: var(--lnp-radius-xl);
    padding: 20px 32px;
    margin-top: 40px;
    flex-wrap: wrap;
    gap: 0;
}
.lnp-hiw-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 32px;
}
.lnp-hiw-stat-num {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 800;
    color: var(--lnp-green);
    line-height: 1;
}
.lnp-hiw-stat-label {
    font-size: 12px;
    color: rgba(255,255,255,0.65);
    font-weight: 500;
    margin-top: 4px;
    white-space: nowrap;
}
.lnp-hiw-stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255,255,255,0.15);
}

/* Step sections */
.lnp-hiw-step { background: white; }

/* Visual block */
.lnp-hiw-visual {
    border-radius: var(--lnp-radius-xl);
    padding: 48px 32px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 320px;
    overflow: hidden;
    text-align: center;
}

.lnp-hiw-step-emoji {
    font-size: 72px;
    margin-bottom: 16px;
    position: relative;
    z-index: 2;
    animation: floatEmoji 4s ease-in-out infinite;
}
@keyframes floatEmoji {
    0%,100% { transform: translateY(0); }
    50%      { transform: translateY(-10px); }
}

.lnp-hiw-step-number-bg {
    position: absolute;
    bottom: -20px;
    right: -10px;
    font-family: var(--font-heading);
    font-size: 120px;
    font-weight: 800;
    color: rgba(0,0,0,0.05);
    line-height: 1;
    pointer-events: none;
    user-select: none;
}

.lnp-hiw-mini-cards {
    display: flex;
    flex-direction: column;
    gap: 8px;
    position: relative;
    z-index: 2;
    width: 100%;
}
.lnp-hiw-mini-card {
    display: flex;
    align-items: center;
    gap: 8px;
    background: white;
    border-radius: 10px;
    padding: 10px 14px;
    font-size: 13px;
    font-weight: 600;
    color: var(--lnp-navy);
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    text-align: left;
}
.lnp-hiw-mini-card i { font-size: 14px; flex-shrink: 0; }

/* Content */
.lnp-hiw-content { padding: 12px 0; }
.lnp-hiw-step-tag {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 4px 14px;
    border-radius: 20px;
    margin-bottom: 14px;
}
.lnp-hiw-step-title {
    font-size: clamp(26px, 3.5vw, 38px);
    font-weight: 800;
    color: var(--lnp-navy);
    margin-bottom: 6px;
}
.lnp-hiw-step-sub {
    font-size: 16px;
    font-weight: 600;
    color: var(--lnp-slate);
    margin-bottom: 14px;
}
.lnp-hiw-step-desc {
    font-size: 15px;
    color: var(--lnp-slate);
    line-height: 1.8;
    margin-bottom: 20px;
}

.lnp-hiw-bullets {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.lnp-hiw-bullets li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--lnp-text);
    font-weight: 500;
}
.lnp-hiw-bullet-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    flex-shrink: 0;
}

.lnp-hiw-note {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    background: var(--lnp-bg-soft);
    border-radius: var(--lnp-radius);
    padding: 12px 16px;
    font-size: 13px;
    color: var(--lnp-slate);
    line-height: 1.6;
}
.lnp-hiw-note i { margin-top: 2px; flex-shrink: 0; }

/* ── Sanitization steps ─────────────────────────────────── */
.lnp-clean-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
}
.lnp-clean-icon {
    width: 56px; height: 56px;
    border-radius: 14px;
    background: rgba(21,209,108,0.12);
    display: flex; align-items: center; justify-content: center;
    font-size: 22px;
    color: var(--lnp-green);
    margin-bottom: 12px;
}
.lnp-clean-label {
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 700;
    color: white;
    margin-bottom: 6px;
}
.lnp-clean-desc { font-size: 12px; color: rgba(255,255,255,0.55); line-height: 1.5; }
.lnp-clean-arrow {
    position: absolute;
    top: 20px;
    right: -20px;
    color: var(--lnp-green);
    font-size: 18px;
    font-weight: 700;
}

/* ── Delivery zones ─────────────────────────────────────── */
.lnp-zones-list { display: flex; flex-direction: column; gap: 10px; }
.lnp-zone-row {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 16px;
    background: white;
    border-radius: var(--lnp-radius);
    border: 1px solid var(--lnp-border);
}
.lnp-zone-dot {
    width: 10px; height: 10px;
    border-radius: 50%;
    flex-shrink: 0;
}
.lnp-zone-active { background: var(--lnp-green); }
.lnp-zone-soon   { background: var(--lnp-border); }
.lnp-zone-name { font-family: var(--font-heading); font-size: 14px; font-weight: 700; color: var(--lnp-navy); flex: 1; }
.lnp-zone-note { font-size: 12px; color: var(--lnp-muted); }

.lnp-delivery-card {
    background: var(--lnp-navy);
    border-radius: var(--lnp-radius-xl);
    padding: 40px;
    text-align: center;
    color: white;
}
.lnp-delivery-icon { font-size: 48px; margin-bottom: 16px; display: block; }
.lnp-delivery-card h4 { color: white; font-size: 22px; font-weight: 800; margin-bottom: 10px; }
.lnp-delivery-card p { color: rgba(255,255,255,0.7); font-size: 15px; margin-bottom: 24px; line-height: 1.7; }
.lnp-delivery-features { display: flex; flex-direction: column; gap: 12px; text-align: left; }
.lnp-delivery-feat { display: flex; align-items: center; gap: 10px; font-size: 14px; color: rgba(255,255,255,0.8); }
.lnp-delivery-feat i { color: var(--lnp-green); font-size: 15px; width: 18px; text-align: center; }

/* ── Quick FAQ cards ────────────────────────────────────── */
.lnp-quick-faq-card {
    background: white;
    border-radius: var(--lnp-radius-lg);
    padding: 20px;
    border: 1px solid var(--lnp-border);
    transition: all 0.2s;
    height: 100%;
}
.lnp-quick-faq-card:hover { box-shadow: var(--lnp-shadow); border-color: var(--lnp-green); }
.lnp-quick-faq-q {
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 700;
    color: var(--lnp-navy);
    margin-bottom: 8px;
}
.lnp-quick-faq-a { font-size: 13px; color: var(--lnp-slate); line-height: 1.65; }

/* ── Responsive ─────────────────────────────────────────── */
@media (max-width: 991px) {
    .lnp-hiw-stats { gap: 16px; padding: 16px; }
    .lnp-hiw-stat { padding: 8px 16px; }
    .lnp-hiw-stat-divider { display: none; }
    .lnp-clean-arrow { display: none !important; }
}
@media (max-width: 575px) {
    .lnp-hiw-visual { min-height: 240px; padding: 32px 20px; }
    .lnp-hiw-step-emoji { font-size: 52px; }
}

/* ── Page hero — V2 theme override ───────────────────────── */
/* All inner pages: catalogue, how-it-works, plans etc. */
.lnp-page-hero {
    background: linear-gradient(135deg, #1B2A3B 0%, #2E2A35 100%) !important;
    padding: 100px 0 60px;
}

.lnp-page-hero .lnp-eyebrow {
    color: var(--lnp2-gold, #C9956C) !important;
}

.lnp-page-hero .lnp-page-title {
    font-family: 'Fredoka', sans-serif !important;
    color: #fff !important;
}

.lnp-page-hero .lnp-page-subtitle {
    font-family: 'Manrope', sans-serif !important;
    color: rgba(255,255,255,.75) !important;
}

/* Catalogue page hero search bar accent */
.lnp-page-hero .btn-primary,
.lnp-page-hero .lnp-btn-primary {
    background: #7C5CBF !important;
    border-color: #7C5CBF !important;
    color: #fff !important;
}

/* Sanitization section clean icon in dark bg */
.lnp-bg-navy .lnp-clean-icon {
    background: rgba(255,255,255,.1) !important;
    color: #4A9E5C !important;
}
.lnp-bg-navy .lnp-clean-label { color: rgba(255,255,255,.9) !important; }
.lnp-bg-navy .lnp-clean-desc  { color: rgba(255,255,255,.55) !important; }


/* ================================================================
   CATALOGUE PAGE CSS — V2 theme overrides
   ================================================================ */

/* ── Missing variables for catalogue ─────────────────────── */
.lnp-toy-detail-page,
.lnp-catalogue-page,
.lnp-hiw-page {
    --lnp-red:       #EF4444;
    --lnp-bg-soft:   #F8FAFC;
    --lnp-border:    #E5E7EB;
    --lnp-shadow:    0 4px 20px rgba(27,42,59,.08);
    --lnp-shadow-lg: 0 12px 40px rgba(27,42,59,.15);
    --lnp-radius:    10px;
    --lnp-radius-lg: 14px;
    --lnp-radius-xl: 20px;
    --lnp-navy:      #1B2A3B;
    --lnp-green:     #4A9E5C;
    --lnp-green-dk:  #3A7A4C;
    --lnp-green-lt:  #D4EAD9;
    --lnp-slate:     #4B5563;
    --lnp-muted:     #6B6B6B;
    --lnp-text:      #2C2C2C;
    --font-heading:  'Fredoka', sans-serif;
    --font-body:     'Manrope', sans-serif;
}

/* ── Catalogue page hero V2 ───────────────────────────────── */
.lnp-catalogue-page .lnp-page-hero,
.lnp-toy-detail-page .lnp-page-hero {
    background: linear-gradient(135deg, #1B2A3B 0%, #2E2A35 100%) !important;
}

/* ── Toy card V2 colors ───────────────────────────────────── */
.lnp-catalogue-card,
.lnp-toy-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid #E8E0F5;
    transition: box-shadow .2s, transform .2s;
}
.lnp-catalogue-card:hover,
.lnp-toy-card:hover {
    box-shadow: 0 8px 28px rgba(124,92,191,.15);
    transform: translateY(-3px);
}

/* Toy image bg */
.lnp-toy-card-img { background: #F3EFFE; }

/* Toy name font */
.lnp-toy-card-name,
.lnp-toy-detail-title { font-family: 'Fredoka', sans-serif !important; }

/* Available badge */
.lnp-badge-available  { background: rgba(74,158,92,.12); color: #3A7A4C; border: 1px solid rgba(74,158,92,.25); }
.lnp-badge-unavailable { background: rgba(239,68,68,.1); color: #B91C1C; border: 1px solid rgba(239,68,68,.2); }

/* Tag hover → purple */
.lnp-tag:hover { background: #7C5CBF !important; border-color: #7C5CBF !important; color: #fff !important; }
.lnp-tag-age   { background: rgba(74,158,92,.12); color: #3A7A4C; border-color: rgba(74,158,92,.3); }

/* Filter sidebar accent */
.lnp-filter-check input[type="radio"],
.lnp-filter-check input[type="checkbox"] { accent-color: #7C5CBF !important; }

/* Filter pill V2 */
.lnp-filter-pill { background: rgba(124,92,191,.08); color: #7C5CBF; border-color: rgba(124,92,191,.2); }
.lnp-filter-pill a { color: #7C5CBF; }

/* Sort select + view btn */
.lnp-sort-select:focus { border-color: #7C5CBF !important; }
.lnp-view-btn.active,
.lnp-view-btn:hover { background: #7C5CBF !important; border-color: #7C5CBF !important; }

/* Pagination V2 */
.lnp-page-btn:hover,
.lnp-page-active { background: #7C5CBF !important; border-color: #7C5CBF !important; color: #fff !important; }

/* Mobile filter FAB */
.lnp-filter-fab { background: #7C5CBF !important; }
.lnp-filter-fab-count { background: #C9956C !important; color: #fff !important; }

/* ── Toy detail page V2 ───────────────────────────────────── */
.lnp-toy-detail-page { background: #FBF7FF !important; }

/* Pricing section */
.lnp-price-member { display: flex; flex-direction: column; gap: .2rem; }
.lnp-price-retail { display: flex; flex-direction: column; gap: .2rem; }
.lnp-price-divider { width: 1px; background: #E5E7EB; margin: 0 1rem; }
.lnp-price-label { font-family: 'Manrope', sans-serif; font-size: .72rem; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; color: #6B6B6B; }
.lnp-price-free { font-family: 'Fredoka', sans-serif; font-size: 1.75rem; font-weight: 700; color: #4A9E5C; }
.lnp-price-striked { font-family: 'Fredoka', sans-serif; font-size: 1.4rem; color: #9CA3AF; text-decoration: line-through; }
.lnp-toy-pricing { display: flex; align-items: center; background: #F3EFFE; border-radius: 14px; padding: 1rem 1.25rem; margin-bottom: 1.25rem; gap: 0; }

/* Skill tags V2 */
.lnp-skill-tag { background: #F3EFFE; border-color: rgba(124,92,191,.2); color: #7C5CBF; }

/* Breadcrumb */
.lnp-breadcrumb a:hover { color: #7C5CBF; }

/* Trust badges */
.lnp-trust-badge i { color: #4A9E5C; }

/* CTA button in toy detail */
.lnp-toy-detail-page .lnp-btn-primary,
.lnp-catalogue-page .lnp-btn-primary {
    background: #7C5CBF !important;
    border-color: #7C5CBF !important;
    color: #fff !important;
}
.lnp-toy-detail-page .lnp-btn-primary:hover,
.lnp-catalogue-page .lnp-btn-primary:hover {
    background: #9B7DD4 !important;
    border-color: #9B7DD4 !important;
}

/* Wishlist btn */
.lnp-wishlist-btn:hover { color: #EF4444; }
.lnp-wishlist-btn.wishlisted { color: #EF4444; }

/* Gallery thumb active */
.lnp-gallery-thumb.active,
.lnp-gallery-thumb:hover { border-color: #7C5CBF !important; }

/* ── Search input V2 ──────────────────────────────────────── */
.lnp-search-box { border-radius: 14px !important; }
.lnp-search-input { font-family: 'Manrope', sans-serif !important; }

/* ── Catalogue page bg ────────────────────────────────────── */
.lnp-catalogue-page { background: #FBF7FF; }
.lnp-catalogue-body { background: #FBF7FF; }

/* ══════════════════════════════════════════════════════════
   CATALOGUE PAGE
══════════════════════════════════════════════════════════ */

/* Page Hero */
.lnp-page-hero {
    background: linear-gradient(135deg, var(--lnp-navy) 0%, #045678 100%);
    padding: 120px 0 48px;
}
.lnp-page-hero-inner { text-align: center; }
.lnp-page-title {
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 800;
    color: white;
    margin-bottom: 10px;
}
.lnp-page-subtitle { color: rgba(255,255,255,0.7); font-size: 17px; margin-bottom: 28px; }

/* Search */
.lnp-search-wrap { max-width: 600px; margin: 0 auto; }
.lnp-search-box {
    display: flex;
    align-items: center;
    background: white;
    border-radius: var(--lnp-radius-lg);
    padding: 6px 6px 6px 16px;
    gap: 8px;
    box-shadow: var(--lnp-shadow-lg);
}
.lnp-search-icon { color: var(--lnp-muted); font-size: 16px; flex-shrink: 0; }
.lnp-search-input {
    flex: 1;
    border: none;
    outline: none;
    font-family: var(--font-body);
    font-size: 15px;
    color: var(--lnp-text);
    background: transparent;
}
.lnp-search-clear { color: var(--lnp-muted); padding: 4px; font-size: 14px; }
.lnp-search-clear:hover { color: var(--lnp-red); }

/* Catalogue layout */
.lnp-catalogue-body { padding-top: 40px; padding-bottom: 60px; }

/* Filter Sidebar */
.lnp-filter-sidebar {
    background: white;
    border: 1px solid var(--lnp-border);
    border-radius: var(--lnp-radius-xl);
    padding: 0;
    overflow: hidden;
    position: sticky;
    top: 90px;
}
.lnp-filter-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 20px;
    border-bottom: 1px solid var(--lnp-border);
}
.lnp-filter-title { font-size: 15px; font-weight: 700; color: var(--lnp-navy); margin: 0; }
.lnp-clear-all { font-size: 12px; color: var(--lnp-red); font-weight: 600; text-decoration: none; }
.lnp-clear-all:hover { text-decoration: underline; }

.lnp-filter-group {
    padding: 16px 20px;
    border-bottom: 1px solid var(--lnp-border);
}
.lnp-filter-group:last-child { border: none; }

.lnp-filter-group-title {
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 700;
    color: var(--lnp-navy);
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    margin-bottom: 12px;
    user-select: none;
}
.lnp-filter-group-title i { font-size: 11px; color: var(--lnp-muted); transition: transform 0.2s; }
.lnp-filter-group-title[aria-expanded="false"] i { transform: rotate(-90deg); }

.lnp-filter-check {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
}
.lnp-filter-check input[type="radio"],
.lnp-filter-check input[type="checkbox"] {
    accent-color: var(--lnp-navy);
    width: 15px; height: 15px;
    flex-shrink: 0;
    cursor: pointer;
}
.lnp-filter-check label {
    font-size: 13px;
    color: var(--lnp-text);
    cursor: pointer;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 6px;
    line-height: 1.4;
}
.lnp-filter-dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
.lnp-filter-reset {
    font-size: 11px;
    color: var(--lnp-red);
    display: block;
    margin-top: 6px;
    text-decoration: none;
}
.lnp-filter-reset:hover { text-decoration: underline; }

/* Catalogue toolbar */
.lnp-catalogue-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
    flex-wrap: wrap;
    gap: 10px;
}
.lnp-result-count { font-size: 14px; color: var(--lnp-slate); }
.lnp-sort-select {
    border: 2px solid var(--lnp-border);
    border-radius: var(--lnp-radius);
    padding: 7px 12px;
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 600;
    color: var(--lnp-navy);
    cursor: pointer;
    outline: none;
}
.lnp-sort-select:focus { border-color: var(--lnp-navy); }

.lnp-view-toggle { display: flex; gap: 4px; }
.lnp-view-btn {
    width: 34px; height: 34px;
    border: 2px solid var(--lnp-border);
    border-radius: 8px;
    background: white;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer;
    color: var(--lnp-muted);
    font-size: 13px;
    transition: all 0.2s;
}
.lnp-view-btn.active,
.lnp-view-btn:hover {
    background: var(--lnp-navy);
    border-color: var(--lnp-navy);
    color: white;
}

/* Active filter pills */
.lnp-active-filters { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 16px; }
.lnp-filter-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(2, 58, 81, 0.08);
    color: var(--lnp-navy);
    font-family: var(--font-heading);
    font-size: 12px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 20px;
    border: 1px solid rgba(2, 58, 81, 0.15);
}
.lnp-filter-pill a { color: var(--lnp-navy); font-weight: 700; text-decoration: none; opacity: 0.6; }
.lnp-filter-pill a:hover { opacity: 1; color: var(--lnp-red); }

/* Toys grid */
.lnp-toys-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.lnp-toy-card-link { text-decoration: none; display: block; }

/* List view */
.lnp-list-view .lnp-toys-grid {
    grid-template-columns: 1fr;
}
.lnp-list-view .lnp-catalogue-card {
    display: flex;
    flex-direction: row;
}
.lnp-list-view .lnp-toy-card-img {
    width: 140px;
    flex-shrink: 0;
    aspect-ratio: auto;
    height: 140px;
}
.lnp-list-view .lnp-toy-card-body {
    flex: 1;
    padding: 16px 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.lnp-list-view .lnp-toy-list-desc { display: block !important; }

.lnp-toy-list-desc { display: none; font-size: 13px; color: var(--lnp-muted); margin: 4px 0; }

.lnp-toy-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 8px;
}
.lnp-toy-avail-count { font-size: 12px; color: var(--lnp-muted); }
.lnp-toy-avail-count .text-success { color: var(--lnp-green) !important; font-size: 8px; }
.lnp-toy-avail-count .text-danger  { color: var(--lnp-red)   !important; font-size: 8px; }
.lnp-toy-view-btn { font-size: 12px; font-weight: 700; color: var(--lnp-navy); opacity: 0; transition: opacity 0.2s; }
.lnp-toy-card:hover .lnp-toy-view-btn { opacity: 1; }

.lnp-toy-category { font-size: 11px; color: var(--lnp-muted); margin: 0; }

/* Wishlist button */
.lnp-wishlist-btn {
    position: absolute;
    top: 10px; left: 10px;
    width: 32px; height: 32px;
    border-radius: 50%;
    background: white;
    border: none;
    display: flex; align-items: center; justify-content: center;
    font-size: 14px;
    color: var(--lnp-slate);
    cursor: pointer;
    box-shadow: var(--lnp-shadow);
    transition: all 0.2s;
    z-index: 2;
}
.lnp-wishlist-btn:hover { color: var(--lnp-red); transform: scale(1.1); }

/* Badge positions */
.lnp-badge-large { top: 40px !important; }
.lnp-badge-featured { bottom: 10px; top: auto !important; right: 10px; background: var(--lnp-navy); color: white; }

/* No results */
.lnp-no-results { text-align: center; padding: 60px 20px; }
.lnp-no-results-icon { font-size: 48px; margin-bottom: 16px; }
.lnp-no-results h4 { color: var(--lnp-navy); font-weight: 700; margin-bottom: 8px; }
.lnp-no-results p { color: var(--lnp-muted); }

/* Custom pagination */
.lnp-pagination-nav { display: flex; gap: 6px; justify-content: center; flex-wrap: wrap; }
.lnp-page-btn {
    width: 38px; height: 38px;
    border-radius: 10px;
    border: 2px solid var(--lnp-border);
    background: white;
    display: flex; align-items: center; justify-content: center;
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 600;
    color: var(--lnp-navy);
    text-decoration: none;
    transition: all 0.2s;
}
.lnp-page-btn:hover { background: var(--lnp-navy); border-color: var(--lnp-navy); color: white; }
.lnp-page-active { background: var(--lnp-navy); border-color: var(--lnp-navy); color: white; }
.lnp-page-disabled { opacity: 0.35; pointer-events: none; }
.lnp-page-dots { border: none; background: transparent; }

/* Mobile filter FAB */
.lnp-filter-fab {
    position: fixed;
    bottom: 24px; left: 50%;
    transform: translateX(-50%);
    background: var(--lnp-navy);
    color: white;
    border: none;
    border-radius: 24px;
    padding: 12px 24px;
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 700;
    display: flex; align-items: center; gap: 8px;
    box-shadow: var(--lnp-shadow-lg);
    z-index: 100;
    cursor: pointer;
}
.lnp-filter-fab-count {
    background: var(--lnp-green);
    color: var(--lnp-navy);
    width: 20px; height: 20px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 11px;
}

/* Mobile filter drawer */
@media (max-width: 991px) {
    .lnp-filter-sidebar {
        position: fixed;
        bottom: 0; left: 0; right: 0;
        top: auto;
        z-index: 200;
        border-radius: var(--lnp-radius-xl) var(--lnp-radius-xl) 0 0;
        max-height: 80vh;
        overflow-y: auto;
        transform: translateY(100%);
        transition: transform 0.3s ease;
    }
    .lnp-filter-sidebar.lnp-filter-open { transform: translateY(0); }
}

/* ══════════════════════════════════════════════════════════
   TOY DETAIL PAGE
══════════════════════════════════════════════════════════ */
.lnp-toy-detail-page { background: var(--lnp-bg-soft); min-height: 100vh; }

.lnp-breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    font-size: 13px;
}
.lnp-breadcrumb a { color: var(--lnp-slate); text-decoration: none; }
.lnp-breadcrumb a:hover { color: var(--lnp-navy); }
.lnp-breadcrumb i { color: var(--lnp-muted); font-size: 10px; }
.lnp-breadcrumb span { color: var(--lnp-navy); font-weight: 600; }

/* Gallery */
.lnp-toy-gallery { position: sticky; top: 90px; }
.lnp-gallery-main {
    background: white;
    border-radius: var(--lnp-radius-xl);
    overflow: hidden;
    aspect-ratio: 1;
    display: flex; align-items: center; justify-content: center;
    position: relative;
    border: 1px solid var(--lnp-border);
}
.lnp-gallery-main-img { width: 100%; height: 100%; object-fit: cover; }
.lnp-gallery-placeholder { font-size: 80px; }
.lnp-gallery-badge { position: absolute; top: 16px; right: 16px; }

.lnp-gallery-thumbs { display: flex; gap: 8px; margin-top: 12px; flex-wrap: wrap; }
.lnp-gallery-thumb {
    width: 72px; height: 72px;
    border-radius: var(--lnp-radius);
    overflow: hidden;
    cursor: pointer;
    border: 2px solid var(--lnp-border);
    transition: all 0.2s;
}
.lnp-gallery-thumb:hover,
.lnp-gallery-thumb.active { border-color: var(--lnp-navy); }
.lnp-gallery-thumb img { width: 100%; height: 100%; object-fit: cover; }

/* Toy info */
.lnp-toy-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.lnp-tag {
    font-family: var(--font-heading);
    font-size: 12px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 20px;
    background: var(--lnp-bg-soft);
    color: var(--lnp-slate);
    text-decoration: none;
    border: 1px solid var(--lnp-border);
    transition: all 0.2s;
}
.lnp-tag:hover { background: var(--lnp-navy); color: white; border-color: var(--lnp-navy); }
.lnp-tag-age { background: rgba(21,209,108,0.12); color: var(--lnp-green-dk); border-color: rgba(21,209,108,0.3); }
.lnp-tag-large { background: rgba(255,112,67,0.12); color: #e64a19; border-color: rgba(255,112,67,0.3); }

.lnp-toy-detail-title { font-size: clamp(24px, 3vw, 34px); font-weight: 800; margin: 12px 0 4px; }
.lnp-toy-detail-brand { color: var(--lnp-muted); font-size: 15px; margin-bottom: 16px; }

.lnp-toy-avail-status {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 20px;
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 20px;
}
.lnp-toy-avail-status.available { background: rgba(21,209,108,0.12); color: var(--lnp-green-dk); }
.lnp-toy-avail-status.unavailable { background: rgba(235,73,98,0.1); color: #c0253a; }

.lnp-toy-detail-desc { font-size: 15px; color: var(--lnp-slate); line-height: 1.75; margin-bottom: 20px; }

.lnp-detail-label { font-family: var(--font-heading); font-size: 12px; font-weight: 700; color: var(--lnp-muted); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 8px; }

.lnp-toy-skills { margin-bottom: 24px; }
.lnp-skills-list { display: flex; flex-wrap: wrap; gap: 6px; }
.lnp-skill-tag {
    background: var(--lnp-bg-soft);
    border: 1px solid var(--lnp-border);
    color: var(--lnp-navy);
    font-family: var(--font-heading);
    font-size: 12px;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 20px;
}

.lnp-toy-cta { margin-bottom: 20px; }
.lnp-cta-note { font-size: 13px; text-align: center; color: var(--lnp-muted); margin-top: 10px; }

.lnp-toy-trust {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    padding: 16px;
    background: var(--lnp-bg-soft);
    border-radius: var(--lnp-radius-lg);
}
.lnp-trust-badge { display: flex; align-items: center; gap: 6px; font-size: 13px; color: var(--lnp-slate); font-weight: 500; }
.lnp-trust-badge i { color: var(--lnp-green); }

/* ── Responsive ─────────────────────────────────────────── */
@media (max-width: 991px) {
    .lnp-toys-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 575px) {
    .lnp-toys-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .lnp-list-view .lnp-toys-grid { grid-template-columns: 1fr; }
    .lnp-catalogue-toolbar { flex-direction: column; align-items: flex-start; }
}
/* ================================================================
   FINAL DESIGN FIXES — Figma V2 exact
   ================================================================ */

/* ── 1. Title colors — all section headings ───────────────── */
/* "Brands Parents Trust. And Gems They've Never Seen." */
.lnp2-brands-section .lnp2-title em,
/* "One Library. Every Age. Every Interest." */
.lnp2-title-library em,
/* "Why Parents Will Love This" */
.lnp2-why-section .lnp2-title em,
/* "Choose a Plan That Fits Your Family." */
.lnp2-plans-section .lnp2-title em,
/* "Manage Everything From Your Parent Dashboard." */
.lnp2-dash-section .lnp2-title em,
/* "Things Parents Usually Ask" */
.lnp2-faq-section-v2 .lnp2-title em,
/* Global em in titles */
.lnp2-title em {
    font-style: italic !important;
    color: var(--lnp2-gold) !important;
}

/* ── 2. Promise section — Figma exact colors ──────────────── */
.lnp2-promise-section {
    background: #FFF9F0 !important;
    padding: 80px 0;
}

/* Promise section eyebrow */
.lnp2-promise-section .lnp2-eyebrow {
    color: var(--lnp2-purple) !important;
}

/* Promise heading — "Cleaned, Checked & Packed With Care." */
/* "Packed With Care." should be gold italic */
.lnp2-promise-section .lnp2-title {
    color: var(--lnp2-dark) !important;
}

/* Step number circles — warm brown */
.lnp2-promise-num {
    background: var(--lnp2-gold) !important;
    color: #fff !important;
    width: 32px !important;
    height: 32px !important;
}

/* Step label — dark */
.lnp2-promise-label {
    color: var(--lnp2-dark) !important;
    font-weight: 700 !important;
    font-size: .9rem !important;
}

/* Step desc — muted gray (NOT purple) */
.lnp2-promise-desc {
    color: var(--lnp2-muted) !important;
    font-size: .825rem !important;
    line-height: 1.6 !important;
}

/* Promise body text */
.lnp2-promise-section .lnp2-body {
    color: var(--lnp2-muted) !important;
}

/* Promise image grid — 2x2 equal squares */
.lnp2-promise-sq-grid {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    grid-template-rows: 1fr 1fr !important;
    gap: .85rem !important;
    aspect-ratio: 1 !important;
    height: auto !important;
}
.lnp2-promise-sq {
    border-radius: 14px !important;
    overflow: hidden !important;
    aspect-ratio: 1 !important;
}
.lnp2-promise-sq img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    display: block !important;
}

/* ── 3. Product card (catalogue grid) — V2 design ────────── */
.lnp-toy-card,
.lnp-catalogue-card {
    background: #fff !important;
    border-radius: 18px !important;
    overflow: hidden !important;
    border: 1.5px solid var(--lnp2-border) !important;
    transition: box-shadow .2s, transform .2s !important;
    display: flex !important;
    flex-direction: column !important;
    height: 100% !important;
    text-decoration: none !important;
}
.lnp-toy-card:hover,
.lnp-catalogue-card:hover {
    box-shadow: 0 8px 28px rgba(124,92,191,.15) !important;
    transform: translateY(-3px) !important;
}

.lnp-toy-card-img,
.lnp-toy-card-image {
    aspect-ratio: 1 !important;
    background: var(--lnp2-purple-bg) !important;
    overflow: hidden !important;
    position: relative !important;
}
.lnp-toy-card-img img,
.lnp-toy-card-image img {
    width: 100% !important;
    height: 100% !important;
    object-fit: contain !important;
    padding: .75rem !important;
    transition: transform .3s !important;
}
.lnp-toy-card:hover .lnp-toy-card-img img,
.lnp-toy-card:hover .lnp-toy-card-image img {
    transform: scale(1.05) !important;
}

/* Card body */
.lnp-toy-card-body { padding: .85rem !important; flex: 1 !important; }

/* Age tag */
.lnp-toy-card-age,
.lnp-toy-card .lnp-tag-age {
    font-family: var(--font-body) !important;
    font-size: .68rem !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: .6px !important;
    color: var(--lnp2-purple) !important;
    display: block !important;
    margin-bottom: .2rem !important;
}

/* Toy name */
.lnp-toy-card-name,
.lnp-toy-card h5,
.lnp-toy-card h6 {
    font-family: 'Fredoka', sans-serif !important;
    font-weight: 600 !important;
    font-size: .95rem !important;
    color: var(--lnp2-dark) !important;
    line-height: 1.3 !important;
    margin-bottom: .25rem !important;
}

/* Brand */
.lnp-toy-card-brand {
    font-family: var(--font-body) !important;
    font-size: .75rem !important;
    color: var(--lnp2-muted) !important;
}

/* Available badge */
.lnp-toy-badge,
.lnp-badge-available,
.lnp-badge-unavailable {
    font-family: var(--font-body) !important;
    font-size: .68rem !important;
    font-weight: 700 !important;
    border-radius: 20px !important;
    padding: .2rem .65rem !important;
}
.lnp-badge-available {
    background: rgba(74,158,92,.12) !important;
    color: #3A7A4C !important;
    border: 1px solid rgba(74,158,92,.25) !important;
}
.lnp-badge-unavailable {
    background: rgba(239,68,68,.1) !important;
    color: #B91C1C !important;
    border: 1px solid rgba(239,68,68,.2) !important;
}

/* Add to bag button on card */
.lnp-toy-card-btn,
.lnp-card-btn {
    background: var(--lnp2-purple) !important;
    color: #fff !important;
    border: none !important;
    border-radius: 50px !important;
    font-family: var(--font-body) !important;
    font-weight: 700 !important;
    font-size: .8rem !important;
    padding: .5rem 1rem !important;
    width: 100% !important;
    cursor: pointer !important;
    transition: background .2s !important;
}
.lnp-toy-card-btn:hover,
.lnp-card-btn:hover {
    background: var(--lnp2-purple-lt) !important;
}

/* ── 4. Single toy page — V2 design ──────────────────────── */
.lnp-toy-detail-page {
    background: #FBF7FF !important;
    padding-top: 80px !important;
}

/* Breadcrumb */
.lnp-breadcrumb {
    font-family: var(--font-body) !important;
    font-size: .825rem !important;
    color: var(--lnp2-muted) !important;
    display: flex !important;
    align-items: center !important;
    gap: .4rem !important;
    flex-wrap: wrap !important;
    margin-bottom: 1.5rem !important;
}
.lnp-breadcrumb a { color: var(--lnp2-muted) !important; text-decoration: none !important; }
.lnp-breadcrumb a:hover { color: var(--lnp2-purple) !important; }
.lnp-breadcrumb .active { color: var(--lnp2-dark) !important; font-weight: 600 !important; }

/* Gallery */
.lnp-toy-gallery { position: relative !important; }
.lnp-gallery-main {
    border-radius: 20px !important;
    overflow: hidden !important;
    background: var(--lnp2-purple-bg) !important;
    aspect-ratio: 1 !important;
    margin-bottom: .75rem !important;
}
.lnp-gallery-main-img {
    width: 100% !important;
    height: 100% !important;
    object-fit: contain !important;
    padding: 1rem !important;
}

/* Thumbnails */
.lnp-gallery-thumbs {
    display: flex !important;
    gap: .5rem !important;
    flex-wrap: wrap !important;
}
.lnp-gallery-thumb {
    width: 72px !important;
    height: 72px !important;
    border-radius: 10px !important;
    overflow: hidden !important;
    border: 2px solid transparent !important;
    cursor: pointer !important;
    background: var(--lnp2-purple-bg) !important;
    transition: border-color .2s !important;
}
.lnp-gallery-thumb img { width: 100% !important; height: 100% !important; object-fit: contain !important; padding: .25rem !important; }
.lnp-gallery-thumb.active,
.lnp-gallery-thumb:hover { border-color: var(--lnp2-purple) !important; }

/* Info side */
.lnp-toy-info { padding-left: .5rem !important; }

/* Tags */
.lnp-toy-tags { display: flex !important; flex-wrap: wrap !important; gap: .4rem !important; }
.lnp-tag {
    font-family: var(--font-body) !important;
    font-size: .72rem !important;
    font-weight: 600 !important;
    padding: .22rem .75rem !important;
    border-radius: 20px !important;
    background: var(--lnp2-purple-bg) !important;
    color: var(--lnp2-purple) !important;
    border: 1px solid rgba(124,92,191,.2) !important;
    text-decoration: none !important;
    transition: all .2s !important;
}
.lnp-tag:hover { background: var(--lnp2-purple) !important; color: #fff !important; }
.lnp-tag-age { background: rgba(74,158,92,.1) !important; color: #3A7A4C !important; border-color: rgba(74,158,92,.25) !important; }

/* Toy title */
.lnp-toy-detail-title {
    font-family: 'Fredoka', sans-serif !important;
    font-size: clamp(1.5rem, 3vw, 2.2rem) !important;
    font-weight: 700 !important;
    color: var(--lnp2-dark) !important;
    line-height: 1.2 !important;
    margin: .75rem 0 .25rem !important;
}

/* Brand */
.lnp-toy-detail-brand {
    font-family: var(--font-body) !important;
    font-size: .875rem !important;
    color: var(--lnp2-muted) !important;
    margin-bottom: .75rem !important;
}

/* Avail status */
.lnp-toy-avail-status {
    display: inline-flex !important;
    align-items: center !important;
    gap: .4rem !important;
    font-family: var(--font-body) !important;
    font-size: .825rem !important;
    font-weight: 700 !important;
    border-radius: 20px !important;
    padding: .3rem .85rem !important;
    margin-bottom: 1rem !important;
}
.lnp-toy-avail-status.available { background: rgba(74,158,92,.12) !important; color: #3A7A4C !important; }
.lnp-toy-avail-status.unavailable { background: rgba(239,68,68,.1) !important; color: #B91C1C !important; }

/* Pricing block */
.lnp-toy-pricing {
    display: flex !important;
    align-items: center !important;
    background: var(--lnp2-purple-bg) !important;
    border-radius: 16px !important;
    padding: 1rem 1.25rem !important;
    gap: 1rem !important;
    margin-bottom: 1.25rem !important;
}
.lnp-price-label {
    font-family: var(--font-body) !important;
    font-size: .68rem !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: .8px !important;
    color: var(--lnp2-muted) !important;
    display: block !important;
    margin-bottom: .15rem !important;
}
.lnp-price-free {
    font-family: 'Fredoka', sans-serif !important;
    font-size: 1.75rem !important;
    font-weight: 700 !important;
    color: #3A7A4C !important;
    display: block !important;
}
.lnp-price-striked {
    font-family: 'Fredoka', sans-serif !important;
    font-size: 1.4rem !important;
    color: #9CA3AF !important;
    text-decoration: line-through !important;
    display: block !important;
}
.lnp-price-divider { width: 1px !important; height: 40px !important; background: var(--lnp2-border) !important; flex-shrink: 0 !important; }

/* Subscribe button */
.lnp-toy-detail-page .lnp-btn-primary,
.lnp-toy-cta-btn {
    background: var(--lnp2-purple) !important;
    border-color: var(--lnp2-purple) !important;
    color: #fff !important;
    border-radius: 50px !important;
    font-family: 'Fredoka', sans-serif !important;
    font-weight: 700 !important;
    font-size: 1rem !important;
    padding: .85rem 2rem !important;
    width: 100% !important;
    display: flex !important;
    justify-content: center !important;
}
.lnp-toy-detail-page .lnp-btn-primary:hover,
.lnp-toy-cta-btn:hover { background: var(--lnp2-purple-lt) !important; }

/* Trust badges */
.lnp-trust-badges { display: flex !important; gap: 1rem !important; flex-wrap: wrap !important; margin-top: .75rem !important; }
.lnp-trust-badge { display: flex !important; align-items: center !important; gap: .35rem !important; font-family: var(--font-body) !important; font-size: .78rem !important; color: var(--lnp2-muted) !important; }
.lnp-trust-badge i { color: var(--lnp2-purple) !important; font-size: .8rem !important; }

/* Product details section */
.lnp-toy-detail-desc { font-family: var(--font-body) !important; font-size: .9rem !important; color: var(--lnp2-muted) !important; line-height: 1.75 !important; }

/* Details table */
.lnp-detail-table { width: 100% !important; }
.lnp-detail-table td { padding: .5rem 0 !important; font-family: var(--font-body) !important; font-size: .875rem !important; }
.lnp-detail-table td:first-child { color: var(--lnp2-muted) !important; width: 110px !important; }
.lnp-detail-table td:last-child { color: var(--lnp2-dark) !important; font-weight: 600 !important; }

/* Section headers on detail page */
.lnp-toy-detail-page h3,
.lnp-toy-detail-page h4 {
    font-family: 'Fredoka', sans-serif !important;
    color: var(--lnp2-dark) !important;
}

/* Gallery badge position */
.lnp-gallery-badge {
    position: absolute !important;
    top: .75rem !important;
    right: .75rem !important;
    z-index: 2 !important;
}

/* Related toys */
.lnp-related-section { background: var(--lnp2-bg) !important; padding: 60px 0 !important; }
.lnp-related-section .lnp2-title,
.lnp-related-section h2 { font-family: 'Fredoka', sans-serif !important; color: var(--lnp2-dark) !important; }

/* ── 5. Catalogue page filters V2 ────────────────────────── */
.lnp-catalogue-page { background: #FBF7FF !important; }

.lnp-filter-sidebar {
    background: #fff !important;
    border-radius: 18px !important;
    border: 1px solid var(--lnp2-border) !important;
    padding: 1.25rem !important;
}

.lnp-filter-title {
    font-family: 'Fredoka', sans-serif !important;
    font-weight: 700 !important;
    font-size: 1rem !important;
    color: var(--lnp2-dark) !important;
}

.lnp-filter-group-title {
    font-family: 'Fredoka', sans-serif !important;
    font-size: .875rem !important;
    font-weight: 700 !important;
    color: var(--lnp2-dark) !important;
}

.lnp-filter-check label {
    font-family: var(--font-body) !important;
    font-size: .85rem !important;
    color: var(--lnp2-dark) !important;
}

.lnp-filter-check input[type="radio"],
.lnp-filter-check input[type="checkbox"] {
    accent-color: var(--lnp2-purple) !important;
}

/* Apply filter btn */
.lnp-apply-filter-btn {
    background: var(--lnp2-purple) !important;
    color: #fff !important;
    border: none !important;
    border-radius: 50px !important;
    font-family: 'Fredoka', sans-serif !important;
    font-weight: 700 !important;
    padding: .6rem 1.5rem !important;
    width: 100% !important;
    cursor: pointer !important;
}
.lnp-apply-filter-btn:hover { background: var(--lnp2-purple-lt) !important; }

/* Results count */
.lnp-results-count {
    font-family: var(--font-body) !important;
    font-size: .875rem !important;
    color: var(--lnp2-muted) !important;
}
.lnp-results-count strong { color: var(--lnp2-purple) !important; }

/* Responsive */
@media (max-width: 767px) {
    .lnp2-promise-section { padding: 50px 0 !important; }
    .lnp2-promise-sq-grid { max-width: 100% !important; }
    .lnp-toy-detail-page { padding-top: 85px !important; }
    .lnp-gallery-thumbs .lnp-gallery-thumb { width: 56px !important; height: 56px !important; }
}