/* ============================================================
   NAD.Power — single-product landing storefront
   Brand: vibrant pink/magenta, white surfaces, energetic but premium.
   No build step. Hand-written, mobile-first.
   ============================================================ */

:root {
    /* Brand */
    --np-pink:       #ee1d70;
    --np-pink-600:   #d11461;
    --np-pink-700:   #a90c4d;
    --np-pink-50:    #fff0f6;
    --np-pink-100:   #ffe1ec;
    --np-magenta:    #ff2d92;
    --np-violet:     #6a3aff;
    --np-cyan:       #38d3ff;
    --np-yellow:     #ffd23a;

    /* Neutrals */
    --np-ink:        #0f1115;
    --np-ink-2:      #1d2026;
    --np-ink-3:      #3a3f4b;
    --np-mute:       #6a6f7d;
    --np-line:       #e7e8ec;
    --np-bg:         #ffffff;
    --np-bg-soft:    #fafafb;
    --np-bg-tint:    #fef5f9;

    /* Type */
    --np-font-ui:    'Inter', system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
    --np-font-disp:  'Fraunces', Georgia, "Times New Roman", serif;

    /* Scale */
    --np-radius:     14px;
    --np-radius-lg:  22px;
    --np-shadow-sm:  0 1px 2px rgba(15,17,21,.06), 0 4px 14px rgba(15,17,21,.04);
    --np-shadow-md:  0 6px 22px rgba(238,29,112,.15), 0 2px 6px rgba(15,17,21,.06);
    --np-shadow-lg:  0 30px 60px rgba(238,29,112,.18), 0 12px 24px rgba(15,17,21,.08);

    --np-container:  1200px;
    --np-pad-x:      clamp(20px, 4vw, 56px);

    --np-h1:         clamp(2.4rem, 5.6vw, 4.6rem);
    --np-h2:         clamp(1.8rem, 3.6vw, 3rem);
    --np-h3:         clamp(1.15rem, 1.8vw, 1.35rem);
}

/* ---------- Reset-ish ---------- */
*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    margin: 0;
    font-family: var(--np-font-ui);
    color: var(--np-ink);
    background: var(--np-bg);
    font-size: 17px;
    line-height: 1.55;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

img { max-width: 100%; height: auto; display: block; }

a { color: var(--np-pink); text-decoration: none; }
a:hover { color: var(--np-pink-700); }

button { font: inherit; }

h1, h2, h3, h4 { margin: 0 0 .4em; line-height: 1.1; }
p { margin: 0 0 1em; }
sup { font-size: .65em; vertical-align: super; }

/* ---------- Buttons ---------- */
.np-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 22px;
    border-radius: 999px;
    border: 1.5px solid transparent;
    font-weight: 600;
    font-size: 15px;
    letter-spacing: .01em;
    text-decoration: none;
    cursor: pointer;
    transition: transform .15s ease, box-shadow .15s ease, background .15s ease, color .15s ease, border-color .15s ease;
    white-space: nowrap;
}
.np-btn--lg { padding: 16px 28px; font-size: 17px; }
.np-btn--block { width: 100%; }

.np-btn--primary {
    background: var(--np-pink);
    color: #fff;
    box-shadow: var(--np-shadow-md);
}
.np-btn--primary:hover {
    background: var(--np-pink-600);
    color: #fff;
    transform: translateY(-1px);
    box-shadow: var(--np-shadow-lg);
}
.np-btn--primary:active { transform: translateY(0); }

.np-btn--ghost {
    background: transparent;
    color: var(--np-ink);
    border-color: var(--np-ink);
}
.np-btn--ghost:hover { background: var(--np-ink); color: #fff; }

.np-btn--white {
    background: #fff;
    color: var(--np-pink);
}
.np-btn--white:hover { background: var(--np-pink-50); color: var(--np-pink-700); }

/* ---------- Nav ---------- */
.np-nav {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255,255,255,.85);
    backdrop-filter: saturate(140%) blur(14px);
    -webkit-backdrop-filter: saturate(140%) blur(14px);
    border-bottom: 1px solid var(--np-line);
}
.np-nav__inner {
    max-width: var(--np-container);
    margin: 0 auto;
    padding: 14px var(--np-pad-x);
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 24px;
}
.np-nav__brand { color: var(--np-ink); font-weight: 800; font-size: 20px; letter-spacing: -.01em; display: inline-flex; align-items: center; }
.np-nav__brand-mark { display: inline-flex; align-items: baseline; }
.np-nav__brand--img { padding: 0; }
.np-nav__logo {
    display: block;
    height: 32px;
    width: auto;
    border-radius: 6px;
}
@media (max-width: 480px) {
    .np-nav__logo { height: 26px; }
}
.np-dot { color: var(--np-pink); }

.np-nav__links { display: flex; gap: 26px; justify-content: center; }
.np-nav__links a {
    color: var(--np-ink-2);
    font-weight: 500;
    font-size: 15px;
    padding: 6px 0;
    border-bottom: 1.5px solid transparent;
}
.np-nav__links a:hover { color: var(--np-pink); border-color: currentColor; }

.np-nav__cta { display: flex; align-items: center; gap: 14px; }
.np-nav__cart {
    position: relative;
    color: var(--np-ink);
    display: inline-flex;
    align-items: center;
}
.np-nav__cart:hover { color: var(--np-pink); }
.np-nav__cart-count {
    position: absolute;
    top: -6px;
    right: -8px;
    min-width: 18px;
    height: 18px;
    padding: 0 5px;
    border-radius: 999px;
    background: var(--np-pink);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.np-nav__cart-count[data-empty="1"] { display: none; }

@media (max-width: 760px) {
    .np-nav__links { display: none; }
    .np-nav__inner { grid-template-columns: 1fr auto; }
}

/* ---------- Hero ---------- */
.np-hero { position: relative; overflow: hidden; isolation: isolate; }
.np-hero__bg {
    position: absolute;
    inset: 0;
    z-index: -1;
    background:
        radial-gradient(1100px 600px at 80% -10%, var(--np-pink-50), transparent 60%),
        radial-gradient(800px 500px at 0% 110%, #fff5e6, transparent 55%);
}
.np-hero__blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: .55;
    pointer-events: none;
}
.np-hero__blob--a {
    width: 420px; height: 420px; background: var(--np-magenta);
    top: -80px; right: -80px;
    animation: np-blob-drift-a 18s ease-in-out infinite;
}
.np-hero__blob--b {
    width: 360px; height: 360px; background: var(--np-violet);
    top: 40%; right: 30%; opacity: .35;
    animation: np-blob-drift-b 22s ease-in-out infinite -4s;
}
.np-hero__blob--c {
    width: 320px; height: 320px; background: var(--np-cyan);
    bottom: -120px; left: -60px; opacity: .35;
    animation: np-blob-drift-c 26s ease-in-out infinite -10s;
}

@keyframes np-blob-drift-a {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33%      { transform: translate(-30px, 24px) scale(1.08); }
    66%      { transform: translate(20px, -18px) scale(.95); }
}
@keyframes np-blob-drift-b {
    0%, 100% { transform: translate(0, 0) scale(1); opacity: .35; }
    50%      { transform: translate(40px, -30px) scale(1.12); opacity: .45; }
}
@keyframes np-blob-drift-c {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50%      { transform: translate(35px, -22px) scale(1.1); }
}

.np-hero__inner {
    max-width: var(--np-container);
    margin: 0 auto;
    padding: clamp(48px, 8vw, 110px) var(--np-pad-x) clamp(48px, 8vw, 110px);
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: clamp(32px, 5vw, 80px);
    align-items: center;
}
.np-hero__title {
    font-family: var(--np-font-disp);
    font-weight: 600;
    font-size: var(--np-h1);
    line-height: 1.02;
    letter-spacing: -.02em;
    color: var(--np-ink);
}
.np-hero__title-accent {
    background: linear-gradient(95deg, var(--np-pink) 0%, var(--np-magenta) 50%, var(--np-violet) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.np-hero__lede {
    font-size: clamp(1rem, 1.2vw, 1.15rem);
    color: var(--np-ink-3);
    max-width: 50ch;
    margin-top: 18px;
}
.np-hero__cta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin: 26px 0 22px;
}
.np-hero__chips {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.np-hero__chips li {
    background: rgba(255,255,255,.7);
    border: 1px solid var(--np-line);
    padding: 7px 12px;
    border-radius: 999px;
    font-size: 13px;
    color: var(--np-ink-2);
    font-weight: 500;
    backdrop-filter: blur(6px);
}

.np-hero__media {
    position: relative;
    display: flex;
    justify-content: center;
}
.np-hero__carousel {
    position: relative;
    width: 540px;
    max-width: 100%;
    aspect-ratio: 1 / 1;
}
.np-hero__image {
    max-width: 100%;
    width: 540px;
    filter: drop-shadow(0 30px 60px rgba(238,29,112,.32));
    transform-origin: 50% 60%;
    animation: np-hero-float 14s ease-in-out infinite;
    will-change: transform;
}
.np-hero__slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    /* Float + crossfade run as independent animations on the same element. */
    animation:
        np-hero-float 14s ease-in-out infinite,
        np-hero-cross 4s ease-in-out infinite;
    /* Stagger each slide by 2s of the cross animation so they alternate. */
    animation-delay: 0s, calc(var(--np-slide-index, 0) * -2s);
}
/* Hide non-first slides by default. The cross animation overrides this when
   active; under prefers-reduced-motion (where animations are killed), only
   the first slide stays visible — graceful static fallback. */
.np-hero__slide:nth-child(n+2) { opacity: 0; }
/* If there's only one slide, no carousel animation is needed. */
.np-hero__carousel[data-np-slides="1"] .np-hero__slide {
    animation: np-hero-float 14s ease-in-out infinite;
    opacity: 1;
}
.np-hero__media:hover .np-hero__slide { animation-play-state: paused; }

@keyframes np-hero-float {
    0%   { transform: rotate(-3deg) translate(0, 0); }
    25%  { transform: rotate(-2deg) translate(10px, -8px); }
    50%  { transform: rotate(-1deg) translate(0, -14px); }
    75%  { transform: rotate(-2deg) translate(-10px, -8px); }
    100% { transform: rotate(-3deg) translate(0, 0); }
}
/* Crossfade: each slide is visible for ~1.6s, fades out over .4s, hidden
   for ~1.6s, fades back in over .4s — repeats every 4s. With two slides
   staggered 2s apart, the second one fades in exactly as the first fades out. */
@keyframes np-hero-cross {
    0%, 40%   { opacity: 1; }
    50%, 90%  { opacity: 0; }
    100%      { opacity: 1; }
}

.np-eyebrow {
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: .12em;
    font-size: 12px;
    font-weight: 700;
    color: var(--np-pink);
    background: var(--np-pink-50);
    padding: 6px 12px;
    border-radius: 999px;
    margin-bottom: 14px;
}

@media (max-width: 880px) {
    .np-hero__inner { grid-template-columns: 1fr; text-align: left; }
    .np-hero__media { order: -1; }
    .np-hero__carousel { width: 70%; max-width: 380px; }
    .np-hero__image {
        width: 70%; max-width: 380px;
        animation-name: np-hero-float-sm;
    }
    .np-hero__slide {
        width: 100%;
        max-width: 100%;
        animation-name: np-hero-float-sm, np-hero-cross;
    }
    .np-hero__carousel[data-np-slides="1"] .np-hero__slide {
        animation-name: np-hero-float-sm;
    }
}
@keyframes np-hero-float-sm {
    0%   { transform: rotate(-4deg) translate(0, 0); }
    25%  { transform: rotate(-3deg) translate(7px, -6px); }
    50%  { transform: rotate(-2deg) translate(0, -10px); }
    75%  { transform: rotate(-3deg) translate(-7px, -6px); }
    100% { transform: rotate(-4deg) translate(0, 0); }
}

/* ---------- Trust strip — horizontal ticker ---------- */
.np-strip {
    background: var(--np-ink);
    color: #fff;
    overflow: hidden;
    position: relative;
}
/* Soft fade at left/right edges so items don't pop in/out abruptly. */
.np-strip::before,
.np-strip::after {
    content: '';
    position: absolute;
    top: 0; bottom: 0;
    width: 64px;
    z-index: 1;
    pointer-events: none;
}
.np-strip::before { left: 0;  background: linear-gradient(to right, var(--np-ink), transparent); }
.np-strip::after  { right: 0; background: linear-gradient(to left,  var(--np-ink), transparent); }

.np-strip__track {
    display: flex;
    width: max-content;
    /* Duplicated content lets the loop reset invisibly at -50%. */
    animation: np-strip-scroll 32s linear infinite;
    will-change: transform;
}
.np-strip:hover .np-strip__track { animation-play-state: paused; }

.np-strip__group {
    display: flex;
    flex-shrink: 0;
    gap: 56px;
    padding: 18px 28px;
}

.np-strip__item {
    font-size: 13px;
    letter-spacing: .04em;
    text-transform: uppercase;
    color: rgba(255,255,255,.78);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}
.np-strip__item::before {
    content: '';
    width: 6px; height: 6px;
    background: var(--np-pink);
    border-radius: 999px;
    display: inline-block;
    flex-shrink: 0;
}

@keyframes np-strip-scroll {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

/* ---------- Sections ---------- */
.np-section { padding: clamp(56px, 8vw, 112px) 0; }
.np-section--alt { background: var(--np-bg-tint); }
.np-section__inner {
    max-width: var(--np-container);
    margin: 0 auto;
    padding: 0 var(--np-pad-x);
}
.np-section__inner--narrow { max-width: 800px; }
.np-section__inner--split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(32px, 5vw, 80px);
    align-items: center;
}
@media (max-width: 880px) {
    .np-section__inner--split { grid-template-columns: 1fr; }
}

.np-section__head {
    max-width: 720px;
    margin: 0 auto 48px;
    text-align: center;
}
.np-section__head .np-eyebrow,
.np-section__head .np-h2 { display: block; }
.np-section__lede {
    color: var(--np-ink-3);
    font-size: 1.1rem;
    margin-top: 6px;
}

.np-h2 {
    font-family: var(--np-font-disp);
    font-weight: 600;
    font-size: var(--np-h2);
    line-height: 1.05;
    letter-spacing: -.015em;
    color: var(--np-ink);
}

.np-section__media img {
    border-radius: var(--np-radius-lg);
    box-shadow: var(--np-shadow-sm);
}

.np-checklist {
    list-style: none;
    padding: 0;
    margin: 8px 0 0;
    display: grid;
    gap: 10px;
}
.np-checklist li {
    position: relative;
    padding-left: 32px;
    color: var(--np-ink-2);
}
.np-checklist li::before {
    content: '';
    position: absolute;
    left: 0; top: 5px;
    width: 20px; height: 20px;
    background: var(--np-pink);
    border-radius: 999px;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='none'><path d='M5 10.5l3 3 7-7' stroke='white' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'/></svg>");
    background-size: 18px;
    background-position: center;
    background-repeat: no-repeat;
}

/* ---------- Variant cards ---------- */
.np-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}
@media (max-width: 760px) {
    .np-cards { grid-template-columns: 1fr; }
}
.np-card {
    background: #fff;
    border-radius: var(--np-radius-lg);
    padding: clamp(24px, 3vw, 36px);
    box-shadow: var(--np-shadow-sm);
    border: 1px solid var(--np-line);
    position: relative;
    overflow: hidden;
    transition: transform .2s ease, box-shadow .2s ease;
}
.np-card:hover { transform: translateY(-4px); box-shadow: var(--np-shadow-md); }
.np-card::before {
    content: '';
    position: absolute;
    inset: 0 0 auto 0;
    height: 6px;
}
.np-card--energy::before { background: linear-gradient(90deg, var(--np-yellow), var(--np-pink)); }
.np-card--anti::before   { background: linear-gradient(90deg, var(--np-violet), var(--np-cyan)); }

.np-card__tag {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    background: var(--np-ink);
    color: #fff;
    padding: 4px 10px;
    border-radius: 999px;
    margin-bottom: 14px;
}
.np-card--anti .np-card__tag { background: var(--np-violet); }
.np-card__title {
    font-family: var(--np-font-disp);
    font-weight: 600;
    font-size: var(--np-h3);
    color: var(--np-ink);
}
.np-card__lede { color: var(--np-mute); margin-bottom: 14px; }
.np-card ul { padding-left: 18px; margin: 0 0 22px; color: var(--np-ink-2); }
.np-card ul li { margin-bottom: 6px; }

/* ---------- Steps ---------- */
.np-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    margin-bottom: 56px;
}
@media (max-width: 760px) { .np-steps { grid-template-columns: 1fr; } }
.np-step {
    background: #fff;
    border-radius: var(--np-radius-lg);
    padding: 28px;
    border: 1px solid var(--np-line);
}
.np-step__num {
    width: 38px; height: 38px;
    background: var(--np-pink);
    color: #fff;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    margin-bottom: 14px;
}
.np-step h3 {
    font-family: var(--np-font-disp);
    font-weight: 600;
    color: var(--np-ink);
    font-size: 1.25rem;
}
.np-step p { color: var(--np-ink-3); margin: 0; }

.np-howfig {
    margin: 0;
    border-radius: var(--np-radius-lg);
    overflow: hidden;
    box-shadow: var(--np-shadow-md);
    background: #fff;
}
.np-howfig img { width: 100%; }
.np-howfig figcaption {
    padding: 16px 20px;
    color: var(--np-mute);
    font-size: 14px;
    border-top: 1px solid var(--np-line);
}

/* ---------- Buy block ---------- */
.np-buy {
    background:
        radial-gradient(800px 500px at 90% 0%, var(--np-pink-50), transparent 60%),
        var(--np-bg-soft);
    padding: clamp(56px, 8vw, 112px) 0;
}
.np-buy__inner {
    max-width: var(--np-container);
    margin: 0 auto;
    padding: 0 var(--np-pad-x);
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    gap: clamp(32px, 5vw, 80px);
    align-items: center;
}
@media (max-width: 880px) { .np-buy__inner { grid-template-columns: 1fr; } }

.np-buy__media img {
    border-radius: var(--np-radius-lg);
    box-shadow: var(--np-shadow-md);
}
.np-buy__panel {
    background: #fff;
    border-radius: var(--np-radius-lg);
    padding: clamp(28px, 3vw, 44px);
    box-shadow: var(--np-shadow-md);
    border: 1px solid var(--np-line);
}
.np-buy__price {
    font-family: var(--np-font-disp);
    font-weight: 600;
    font-size: clamp(2rem, 3vw, 2.6rem);
    color: var(--np-ink);
    margin: 6px 0 8px;
    line-height: 1;
}
.np-buy__price .woocommerce-Price-currencySymbol { color: var(--np-pink); }
.np-buy__lede { color: var(--np-ink-3); margin-bottom: 24px; }

.np-buy__variants {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 22px;
}
@media (max-width: 480px) { .np-buy__variants { grid-template-columns: 1fr; } }

.np-variant {
    position: relative;
    display: grid;
    gap: 4px;
    padding: 16px;
    border: 2px solid var(--np-line);
    border-radius: var(--np-radius);
    cursor: pointer;
    transition: border-color .15s ease, background .15s ease;
}
.np-variant input { position: absolute; opacity: 0; pointer-events: none; }
.np-variant:hover { border-color: var(--np-pink-100); }
.np-variant:has(input:checked) {
    border-color: var(--np-pink);
    background: var(--np-pink-50);
}
.np-variant__name { font-weight: 600; color: var(--np-ink); }
.np-variant__price {
    color: var(--np-ink-3);
    font-size: 14px;
    font-variant-numeric: tabular-nums;
}
.np-variant:has(input:checked) .np-variant__price { color: var(--np-pink-700); }

.np-buy__qty {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
}
.np-buy__qty label { font-weight: 600; color: var(--np-ink); }
.np-qty {
    display: inline-flex;
    align-items: stretch;
    border: 2px solid var(--np-line);
    border-radius: 999px;
    overflow: hidden;
}
.np-qty button {
    width: 40px;
    border: 0;
    background: transparent;
    cursor: pointer;
    font-size: 18px;
    color: var(--np-ink);
}
.np-qty button:hover { background: var(--np-pink-50); color: var(--np-pink); }
.np-qty input {
    width: 56px;
    border: 0;
    background: transparent;
    text-align: center;
    font-weight: 600;
    font-variant-numeric: tabular-nums;
    -moz-appearance: textfield;
    color: var(--np-ink);
}
.np-qty input::-webkit-outer-spin-button,
.np-qty input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }

.np-buy__note {
    margin: 12px 0 0;
    font-size: 14px;
    color: var(--np-mute);
    min-height: 1em;
}
.np-buy__note[data-state="error"] { color: var(--np-pink-700); }
.np-buy__note[data-state="ok"]    { color: #1c8a3a; }

.np-buy__perks {
    list-style: none;
    padding: 0;
    margin: 24px 0 0;
    display: grid;
    gap: 6px;
    color: var(--np-mute);
    font-size: 14px;
}
.np-buy__perks li::before { content: '✓'; color: var(--np-pink); margin-right: 8px; font-weight: 700; }

/* ---------- FAQ ---------- */
.np-faq { display: grid; gap: 8px; }
.np-faq details {
    background: #fff;
    border: 1px solid var(--np-line);
    border-radius: var(--np-radius);
    transition: border-color .15s;
}
.np-faq details[open] { border-color: var(--np-pink-100); }
.np-faq summary {
    list-style: none;
    cursor: pointer;
    padding: 18px 22px;
    font-weight: 600;
    color: var(--np-ink);
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.np-faq summary::-webkit-details-marker { display: none; }
.np-faq summary::after {
    content: '+';
    color: var(--np-pink);
    font-weight: 700;
    font-size: 22px;
    line-height: 1;
    transition: transform .2s;
}
.np-faq details[open] summary::after { content: '−'; }
.np-faq__body {
    padding: 0 22px 20px;
    color: var(--np-ink-3);
}

/* ---------- Footer CTA ---------- */
.np-foot-cta {
    background: linear-gradient(135deg, var(--np-pink) 0%, var(--np-magenta) 60%, var(--np-violet) 130%);
    color: #fff;
}
.np-foot-cta__inner {
    max-width: var(--np-container);
    margin: 0 auto;
    padding: clamp(56px, 7vw, 100px) var(--np-pad-x);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 26px;
    text-align: center;
}
.np-foot-cta h2 {
    font-family: var(--np-font-disp);
    font-weight: 600;
    font-size: var(--np-h2);
    line-height: 1.05;
    letter-spacing: -.015em;
    margin: 0;
}

/* ---------- Footer ---------- */
.np-footer {
    background: var(--np-ink);
    color: rgba(255,255,255,.75);
    padding-top: 56px;
}
.np-footer__inner {
    max-width: var(--np-container);
    margin: 0 auto;
    padding: 0 var(--np-pad-x);
    display: grid;
    grid-template-columns: 1.2fr 2fr;
    gap: 40px 60px;
}
@media (max-width: 760px) { .np-footer__inner { grid-template-columns: 1fr; } }
.np-footer__mark {
    color: #fff;
    font-weight: 800;
    font-size: 22px;
    margin-bottom: 8px;
}
.np-footer__mark .np-dot { color: var(--np-pink); }
.np-footer__logo-link { display: inline-block; margin-bottom: 14px; }
.np-footer__logo {
    display: block;
    height: 38px;
    width: auto;
    border-radius: 6px;
}
.np-footer__tag { color: rgba(255,255,255,.6); max-width: 36ch; margin: 0; }
.np-footer__cols {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
@media (max-width: 560px) { .np-footer__cols { grid-template-columns: 1fr 1fr; } }
.np-footer__cols h4 {
    color: #fff;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: .1em;
    margin: 0 0 14px;
}
.np-footer__cols a {
    display: block;
    color: rgba(255,255,255,.7);
    margin-bottom: 8px;
    font-size: 14px;
}
.np-footer__cols a:hover { color: #fff; }
.np-footer__bar {
    margin-top: 48px;
    border-top: 1px solid rgba(255,255,255,.08);
    padding: 22px var(--np-pad-x);
    max-width: var(--np-container);
    margin-left: auto;
    margin-right: auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 8px;
    font-size: 13px;
    color: rgba(255,255,255,.5);
}

/* ---------- Generic page ---------- */
.np-page { padding: clamp(56px, 7vw, 96px) 0; }
.np-page__inner {
    max-width: 880px;
    margin: 0 auto;
    padding: 0 var(--np-pad-x);
}
.np-page__title {
    font-family: var(--np-font-disp);
    font-weight: 600;
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--np-ink);
    letter-spacing: -.015em;
    margin-bottom: 32px;
}
.np-page__body { color: var(--np-ink-2); line-height: 1.7; font-size: 1.0625rem; }
.np-page__body :is(h2, h3) { font-family: var(--np-font-disp); font-weight: 600; color: var(--np-ink); letter-spacing: -.01em; }
.np-page__body h2 { font-size: clamp(1.4rem, 2vw, 1.75rem); margin: 48px 0 16px; }
.np-page__body h3 { font-size: clamp(1.125rem, 1.5vw, 1.25rem); margin: 32px 0 12px; }
.np-page__body p { margin: 0 0 18px; }
.np-page__body ul, .np-page__body ol { margin: 0 0 18px; padding-left: 22px; }
.np-page__body li { margin-bottom: 6px; }
.np-page__body strong { color: var(--np-ink); }
.np-page__body a { color: var(--np-pink); text-decoration: underline; text-underline-offset: 3px; }
.np-page__body a:hover { text-decoration-thickness: 2px; }
.np-page__body hr { border: 0; border-top: 1px solid var(--np-line); margin: 40px 0; }
.np-page__body img { border-radius: var(--np-radius); margin: 24px 0; }
.np-page__body .np-page__lead { font-size: 1.1875rem; color: var(--np-ink); margin-bottom: 32px; }
.np-page__body .np-page__meta { color: var(--np-ink-3, #888); font-size: .9375rem; margin-bottom: 32px; }
.np-page__body .np-page__address { background: #fafafa; border-left: 3px solid var(--np-pink); padding: 18px 22px; border-radius: var(--np-radius); font-style: normal; }
.np-page__body .np-page__address p { margin: 0 0 4px; }
.np-page__body dl { display: grid; grid-template-columns: 200px 1fr; gap: 8px 20px; margin: 0 0 18px; }
.np-page__body dt { color: var(--np-ink); font-weight: 600; }
.np-page__body dd { margin: 0; }
@media (max-width: 600px) {
    .np-page__body dl { grid-template-columns: 1fr; gap: 4px 0; }
    .np-page__body dd { margin-bottom: 12px; }
}

/* ============================================================
   WooCommerce overrides — cart, checkout, single-product details
   ============================================================ */

.np-wc .woocommerce-notices-wrapper:empty { display: none; }
.np-wc .woocommerce-message,
.np-wc .woocommerce-info,
.np-wc .woocommerce-error {
    background: #fff;
    border: 1px solid var(--np-line);
    border-left: 4px solid var(--np-pink);
    padding: 14px 18px;
    border-radius: var(--np-radius);
    margin-bottom: 22px;
    color: var(--np-ink-2);
    list-style: none;
}
.np-wc .woocommerce-error { border-left-color: #c43d57; color: #b22; }

.np-wc table.shop_table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    border-radius: var(--np-radius);
    overflow: hidden;
    border: 1px solid var(--np-line);
}
.np-wc table.shop_table th,
.np-wc table.shop_table td {
    padding: 14px 16px;
    text-align: left;
    border-bottom: 1px solid var(--np-line);
    font-variant-numeric: tabular-nums;
}
.np-wc table.shop_table tr:last-child td { border-bottom: 0; }
.np-wc table.shop_table th { font-weight: 600; color: var(--np-ink); background: var(--np-bg-soft); }
.np-wc .product-thumbnail img { width: 60px; height: auto; border-radius: 8px; }

.np-wc .button,
.np-wc button[type="submit"],
.np-wc .wc-block-components-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 22px;
    border-radius: 999px;
    border: 0;
    background: var(--np-pink);
    color: #fff;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    text-decoration: none;
    box-shadow: var(--np-shadow-md);
    transition: background .15s ease, transform .15s ease;
}
.np-wc .button:hover,
.np-wc button[type="submit"]:hover,
.np-wc .wc-block-components-button:hover {
    background: var(--np-pink-600);
    transform: translateY(-1px);
    color: #fff;
}

.np-wc .input-text,
.np-wc input[type="text"],
.np-wc input[type="email"],
.np-wc input[type="tel"],
.np-wc input[type="password"],
.np-wc input[type="number"],
.np-wc select,
.np-wc textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1.5px solid var(--np-line);
    border-radius: var(--np-radius);
    background: #fff;
    color: var(--np-ink);
    font: inherit;
    transition: border-color .15s, box-shadow .15s;
}
.np-wc .input-text:focus,
.np-wc input:focus,
.np-wc select:focus,
.np-wc textarea:focus {
    outline: none;
    border-color: var(--np-pink);
    box-shadow: 0 0 0 4px var(--np-pink-100);
}

.np-wc .form-row { margin-bottom: 14px; }
.np-wc .form-row label { display: block; margin-bottom: 6px; font-size: 14px; font-weight: 500; color: var(--np-ink-2); }

.np-wc .cart-collaterals,
.np-wc .checkout {
    display: grid;
    gap: 32px;
    grid-template-columns: 1.2fr .8fr;
    align-items: start;
    margin-top: 24px;
}
@media (max-width: 880px) {
    .np-wc .cart-collaterals,
    .np-wc .checkout { grid-template-columns: 1fr; }
}
.np-wc .cart_totals,
.np-wc #order_review_heading,
.np-wc #order_review,
.np-wc .woocommerce-checkout-review-order {
    background: #fff;
    border: 1px solid var(--np-line);
    border-radius: var(--np-radius-lg);
    padding: 24px;
    box-shadow: var(--np-shadow-sm);
}

.np-wc h2,
.np-wc h3 {
    font-family: var(--np-font-disp);
    font-weight: 600;
    color: var(--np-ink);
}

/* WC single product page — wider container */
.np-wc--product .np-page__inner { max-width: var(--np-container); }

/* ---------- Custom branded single product ---------- */
.np-product { display: block; }
.np-product__inner {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: clamp(32px, 5vw, 72px);
    align-items: start;
}
@media (max-width: 880px) {
    .np-product__inner { grid-template-columns: 1fr; gap: 32px; }
}

.np-product__gallery { position: sticky; top: 88px; display: grid; gap: 16px; }
@media (max-width: 880px) { .np-product__gallery { position: static; } }

.np-product__main {
    margin: 0;
    background:
        radial-gradient(600px 380px at 50% 0%, var(--np-pink-50), transparent 60%),
        var(--np-bg-soft);
    border: 1px solid var(--np-line);
    border-radius: var(--np-radius-lg);
    overflow: hidden;
    aspect-ratio: 1 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
}
.np-product__main img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: opacity .2s ease;
}

.np-product__thumbs {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(72px, 1fr));
    gap: 10px;
}
.np-product__thumb {
    aspect-ratio: 1 / 1;
    padding: 0;
    background: #fff;
    border: 2px solid var(--np-line);
    border-radius: var(--np-radius);
    cursor: pointer;
    overflow: hidden;
    transition: border-color .15s ease, transform .15s ease;
}
.np-product__thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.np-product__thumb:hover { border-color: var(--np-pink-100); transform: translateY(-1px); }
.np-product__thumb.is-active {
    border-color: var(--np-pink);
    box-shadow: 0 0 0 3px var(--np-pink-50);
}

.np-product__panel {
    background: #fff;
    border-radius: var(--np-radius-lg);
    padding: clamp(24px, 3vw, 40px);
    box-shadow: var(--np-shadow-md);
    border: 1px solid var(--np-line);
}
.np-product__title {
    font-family: var(--np-font-disp);
    font-weight: 600;
    font-size: clamp(1.8rem, 3.2vw, 2.5rem);
    line-height: 1.05;
    letter-spacing: -.015em;
    color: var(--np-ink);
    margin: 8px 0 8px;
}
.np-product__lede {
    color: var(--np-ink-3);
    margin-bottom: 22px;
    font-size: 1.0625rem;
    line-height: 1.6;
}
.np-product__lede p:last-child { margin-bottom: 0; }

.np-product__desc {
    margin-top: clamp(48px, 6vw, 80px);
    max-width: 760px;
}
.np-product__desc .np-h2 {
    font-family: var(--np-font-disp);
    font-weight: 600;
    font-size: clamp(1.5rem, 2.4vw, 2rem);
    margin-bottom: 18px;
    color: var(--np-ink);
}
.np-product__desc-body { color: var(--np-ink-2); line-height: 1.7; font-size: 1.0625rem; }
.np-product__desc-body p { margin: 0 0 16px; }

/* WC default fallback (in case content-single-product.php is bypassed) */
.np-wc .product .images img { border-radius: var(--np-radius-lg); }
.np-wc .product .summary .price {
    font-family: var(--np-font-disp);
    font-size: clamp(1.6rem, 2.5vw, 2.2rem);
    color: var(--np-pink);
    margin: 0 0 14px;
}
.np-wc .product .summary .product_title {
    font-family: var(--np-font-disp);
    font-weight: 600;
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    color: var(--np-ink);
}

/* ============================================================
   Reduced motion
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
    /* The decorative animations on this page (slow 14s pen float, 18-26s
       blob drifts, 32s strip ticker) are gentle, not vestibular triggers,
       and central to the brand. They keep running. We only suppress the
       jumpy stuff: smooth-scroll and snappy hover transitions. */
    html { scroll-behavior: auto; }
    *, *::before, *::after {
        transition-duration: 0.01ms !important;
    }
}
