/* ==========================================================================
   NSH Master Landing v2 — layout CSS
   Mobile-first. All classes prefixed .nsh-v2-* for CSS isolation from theme.
   Brand accent exposed as --brand-accent (set via body.brand-{slug} inline).
   ========================================================================== */

/* Smooth scroll for anchor CTAs (Explore Our Curations → #pillars). */
html { scroll-behavior: smooth; }

/* Base tokens ------------------------------------------------------------- */
/* Shared tokens at :root so site-wide components (nav, footer) that live
   outside the .nsh-v2-landing wrapper — e.g. legacy Wellness Nest LP —
   still resolve variables like --nsh-v2-maxw and --nsh-v2-border. */
:root {
    --nsh-v2-bg: #faf8f3;
    --nsh-v2-fg: #2a2826;
    --nsh-v2-muted: #6b6962;
    --nsh-v2-sand: #f0ebe0;
    --nsh-v2-sand-deep: #e6dfce;
    --nsh-v2-sage: #5E7F6B;
    --nsh-v2-terracotta: #c97a5d;
    --nsh-v2-border: rgba(60, 58, 54, 0.08);
    --nsh-v2-radius: 14px;
    --nsh-v2-radius-sm: 8px;
    --nsh-v2-gap: 1.25rem;
    --nsh-v2-gap-lg: 2rem;
    --nsh-v2-maxw: 1120px;

    --brand-accent: var(--nsh-v2-sage);
    --brand-accent-dark: #3e5a4d;
}

.nsh-v2-landing {
    background: var(--nsh-v2-bg);
    color: var(--nsh-v2-fg);
    font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
    line-height: 1.55;
    -webkit-font-smoothing: antialiased;
}

.nsh-v2-main { display: block; }

.nsh-v2-section-inner {
    max-width: var(--nsh-v2-maxw);
    margin: 0 auto;
    padding: 0 1.25rem;      /* 20px mobile */
}

.nsh-v2-section-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(1.6rem, 4.5vw, 2.4rem);
    font-weight: 600;
    letter-spacing: -0.01em;
    margin: 0 0 0.5rem;
    color: var(--nsh-v2-fg);
}

.nsh-v2-section-lead {
    color: var(--nsh-v2-muted);
    margin: 0 0 2rem;
    max-width: 52ch;
}

/* Site Nav ---------------------------------------------------------------- */
.nsh-v2-nav {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(250, 248, 243, 0.96);
    backdrop-filter: saturate(120%) blur(8px);
    -webkit-backdrop-filter: saturate(120%) blur(8px);
    border-bottom: 1px solid var(--nsh-v2-border);
}
.nsh-v2-nav-inner {
    max-width: var(--nsh-v2-maxw);
    margin: 0 auto;
    padding: 0.75rem 1.25rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}
.nsh-v2-nav-brand {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--nsh-v2-fg);
    text-decoration: none;
    letter-spacing: 0.01em;
}
.nsh-v2-nav-brand-logo {
    display: block;
    height: 36px;
    width: auto;
    border-radius: 50%;
    object-fit: cover;
    aspect-ratio: 1 / 1;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
    flex-shrink: 0;
}
.nsh-v2-nav-brand-text {
    white-space: nowrap;
}
@media (max-width: 480px) {
    .nsh-v2-nav-brand { gap: 0.45rem; }
    .nsh-v2-nav-brand-logo { height: 32px; }
    .nsh-v2-nav-brand-text {
        font-size: 0.85rem;
        letter-spacing: 0;
    }
}
@media (max-width: 360px) {
    .nsh-v2-nav-brand-text { display: none; }
}
.nsh-v2-nav-toggle {
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    gap: 4px;
    width: 40px;
    height: 40px;
    background: transparent;
    border: 1px solid var(--nsh-v2-border);
    border-radius: 8px;
    cursor: pointer;
    padding: 0 9px;
}
.nsh-v2-nav-toggle-bar {
    display: block;
    height: 2px;
    background: var(--nsh-v2-fg);
    border-radius: 2px;
    transition: transform 0.2s ease, opacity 0.2s ease;
}
.nsh-v2-nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    background: var(--nsh-v2-bg);
    border-bottom: 1px solid var(--nsh-v2-border);
    flex-direction: column;
    padding: 0.5rem 1.25rem 1rem;
    gap: 0.25rem;
}
.nsh-v2-nav-list.is-open { display: flex; }
.nsh-v2-nav-link {
    display: block;
    padding: 0.65rem 0.5rem;
    color: var(--nsh-v2-fg);
    text-decoration: none;
    font-size: 0.95rem;
    border-radius: 6px;
}
.nsh-v2-nav-link:hover,
.nsh-v2-nav-link:focus-visible { background: var(--nsh-v2-sand); }
.nsh-v2-nav-item.is-current .nsh-v2-nav-link {
    color: var(--brand-accent);
    font-weight: 600;
}

/* CTA button system ------------------------------------------------------- */
.nsh-v2-cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0.85rem 1.4rem;
    border-radius: 999px;
    background: var(--brand-accent);
    color: #fff;
    font-weight: 600;
    letter-spacing: 0.01em;
    text-decoration: none;
    transition: transform 0.15s ease, background-color 0.15s ease;
}
.nsh-v2-cta-btn:hover,
.nsh-v2-cta-btn:focus-visible {
    background: var(--brand-accent-dark, var(--brand-accent));
    transform: translateY(-1px);
    color: #fff;
}
.nsh-v2-cta-btn--primary { width: 100%; max-width: 320px; }
.nsh-v2-cta-btn--card    { width: 100%; margin-top: auto; }
.nsh-v2-cta-btn--large {
    min-height: 56px;
    padding: 1rem 1.8rem;
    font-size: 1.05rem;
}

/* Hero -------------------------------------------------------------------- */
.nsh-v2-hero {
    padding: 2.5rem 1.25rem 2rem;
    background: linear-gradient(180deg, var(--nsh-v2-sand) 0%, var(--nsh-v2-bg) 100%);
}
.nsh-v2-hero-inner {
    max-width: var(--nsh-v2-maxw);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: var(--nsh-v2-gap);
}
.nsh-v2-hero-text  { order: 2; }
.nsh-v2-hero-media { order: 1; }
.nsh-v2-hero-headline {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(1.9rem, 7vw, 3rem);
    font-weight: 600;
    line-height: 1.15;
    letter-spacing: -0.015em;
    margin: 0 0 0.75rem;
}
.nsh-v2-hero-subheadline {
    font-size: clamp(1rem, 3.5vw, 1.15rem);
    color: var(--nsh-v2-muted);
    margin: 0 0 1.5rem;
    max-width: 48ch;
}
.nsh-v2-hero-img {
    display: block;
    width: 100%;
    height: auto;
    max-height: 420px;
    object-fit: contain;
    border-radius: var(--nsh-v2-radius);
}

/* Trust bar --------------------------------------------------------------- */
.nsh-v2-trust-bar {
    background: #fff;
    padding: 1rem 1.25rem;
    border-top: 1px solid var(--nsh-v2-border);
    border-bottom: 1px solid var(--nsh-v2-border);
}
.nsh-v2-trust-bar-affiliate {
    max-width: var(--nsh-v2-maxw);
    margin: 0 auto 1.25rem;
    padding: 0 0.5rem 1.25rem;
    font-size: 0.78rem;
    line-height: 1.55;
    color: var(--nsh-v2-muted);
    text-align: center;
    font-style: italic;
    border-bottom: 1px solid var(--nsh-v2-border);
}
.nsh-v2-trust-bar-affiliate strong {
    font-style: normal;
    color: var(--nsh-v2-fg);
    font-weight: 600;
    margin-right: 0.2rem;
}
.nsh-v2-trust-bar-list {
    list-style: none;
    margin: 0 auto;
    padding: 0;
    max-width: var(--nsh-v2-maxw);
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem 1.5rem;
}
.nsh-v2-trust-bar-item {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.9rem;
    color: var(--nsh-v2-fg);
}
.nsh-v2-trust-bar-icon {
    width: 18px; height: 18px;
    color: var(--brand-accent);
    flex-shrink: 0;
}

/* Products grid ----------------------------------------------------------- */
.nsh-v2-products { padding: 3rem 0; }
.nsh-v2-products-grid {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--nsh-v2-gap);
}
.nsh-v2-product-card {
    position: relative;
    background: #fff;
    border-radius: var(--nsh-v2-radius);
    border: 1px solid var(--nsh-v2-border);
    padding: 1.5rem 1.5rem 1.75rem;   /* 24px mobile padding */
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}
.nsh-v2-product-badge {
    position: absolute;
    top: 0.9rem;
    right: 0.9rem;
    background: var(--brand-accent);
    color: #fff;
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 0.25rem 0.6rem;
    border-radius: 999px;
}
.nsh-v2-product-media {
    aspect-ratio: 1;
    background: var(--nsh-v2-sand);
    border-radius: var(--nsh-v2-radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.nsh-v2-product-img { max-width: 78%; max-height: 78%; object-fit: contain; }
.nsh-v2-product-body {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    flex: 1 1 auto;
}
.nsh-v2-product-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.15rem;
    font-weight: 600;
    margin: 0;
}
.nsh-v2-product-benefit {
    color: var(--nsh-v2-muted);
    font-size: 0.92rem;
    margin: 0;
    flex: 1 1 auto;
}
.nsh-v2-product-price {
    margin: 0.25rem 0;
    font-size: 1rem;
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
}
.nsh-v2-product-price-now { font-weight: 700; color: var(--nsh-v2-fg); }
.nsh-v2-product-price-compare {
    text-decoration: line-through;
    color: var(--nsh-v2-muted);
    font-size: 0.9rem;
}

/* Comparison -------------------------------------------------------------- */
.nsh-v2-comparison { padding: 3rem 0; background: var(--nsh-v2-sand); }
.nsh-v2-comparison-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--nsh-v2-gap);
}
.nsh-v2-comparison-card {
    background: #fff;
    padding: 1.5rem;
    border-radius: var(--nsh-v2-radius);
    border: 1px solid var(--nsh-v2-border);
}
.nsh-v2-comparison-card--positive { border-left: 4px solid var(--brand-accent); }
.nsh-v2-comparison-card--negative { border-left: 4px solid var(--nsh-v2-terracotta); opacity: 0.92; }
.nsh-v2-comparison-card-title { margin: 0 0 0.75rem; font-size: 1.1rem; font-weight: 600; }
.nsh-v2-comparison-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.nsh-v2-comparison-list li {
    display: flex;
    gap: 0.7rem;
    align-items: flex-start;
    font-size: 0.95rem;
    line-height: 1.5;
    padding: 0.15rem 0;
}
.nsh-v2-comparison-icon {
    flex-shrink: 0;
    display: inline-flex;
    width: 22px;
    height: 22px;
    margin-top: 0.05rem;
}
.nsh-v2-comparison-icon svg { width: 100%; height: 100%; display: block; }
.nsh-v2-comparison-text { flex: 1; }
.nsh-v2-comparison-card--positive .nsh-v2-comparison-icon { color: var(--brand-accent); }
.nsh-v2-comparison-card--negative .nsh-v2-comparison-icon { color: var(--nsh-v2-terracotta); }

/* Reviews ----------------------------------------------------------------- */
.nsh-v2-reviews { padding: 3rem 0; }
.nsh-v2-reviews-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--nsh-v2-gap);
}
.nsh-v2-review-card {
    background: #fff;
    border-radius: var(--nsh-v2-radius);
    border: 1px solid var(--nsh-v2-border);
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}
.nsh-v2-review-stars { color: #e0b14b; letter-spacing: 2px; font-size: 1.1rem; }
.nsh-v2-review-quote { margin: 0; font-style: italic; color: var(--nsh-v2-fg); }
.nsh-v2-review-author { font-style: normal; color: var(--nsh-v2-muted); font-size: 0.9rem; }

/* Guarantee --------------------------------------------------------------- */
.nsh-v2-guarantee { padding: 2.5rem 1.25rem; text-align: center; }
.nsh-v2-guarantee-inner {
    max-width: 560px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    align-items: center;
    color: var(--brand-accent);
}
.nsh-v2-guarantee-icon { width: 48px; height: 48px; }
.nsh-v2-guarantee-text { margin: 0; font-size: 1.1rem; font-weight: 600; color: var(--nsh-v2-fg); }

/* Final CTA --------------------------------------------------------------- */
/* Final CTA: distinct bg from Promise's sand gradient so the two blocks
   read as separate sections (user feedback 2026-04-20 round 5). Previous
   bg `sand → sand-deep` visually merged with Promise's ending sand.
   Switch to page-bg cream + hairline top divider = clear break. */
.nsh-v2-final-cta {
    padding: 3.5rem 1.25rem;
    background: var(--nsh-v2-bg);
    border-top: 1px solid var(--nsh-v2-border);
    text-align: center;
}
/* Inner widened 640 → 780 so headline "Ready to bring more calm into your
   day?" (40 chars @ Playfair 2rem) fits on one line at ≥768px. */
.nsh-v2-final-cta-inner { max-width: 780px; margin: 0 auto; }
.nsh-v2-final-cta-headline {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(1.5rem, 4.2vw, 2rem);
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: -0.01em;
    margin: 0 0 1.5rem;
}
.nsh-v2-disclaimer {
    margin-top: 2rem;
    font-size: 0.8rem;
    color: var(--nsh-v2-muted);
    line-height: 1.5;
    max-width: 56ch;
    margin-left: auto;
    margin-right: auto;
}

/* Journal ----------------------------------------------------------------- */
.nsh-v2-journal { padding: 3rem 0; }
.nsh-v2-journal-grid {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--nsh-v2-gap);
}
.nsh-v2-journal-card {
    background: #fff;
    border-radius: var(--nsh-v2-radius);
    border: 1px solid var(--nsh-v2-border);
    overflow: hidden;
}
.nsh-v2-journal-link { display: block; color: inherit; text-decoration: none; }
.nsh-v2-journal-media { aspect-ratio: 16 / 10; overflow: hidden; background: var(--nsh-v2-sand); }
.nsh-v2-journal-img { width: 100%; height: 100%; object-fit: cover; }
.nsh-v2-journal-body { padding: 1rem 1.25rem 1.25rem; }
.nsh-v2-journal-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.15rem;
    margin: 0 0 0.5rem;
    font-weight: 600;
}
.nsh-v2-journal-excerpt { color: var(--nsh-v2-muted); font-size: 0.95rem; margin: 0; }
.nsh-v2-journal-cta { text-align: center; margin-top: 2rem; }
.nsh-v2-journal-more {
    color: var(--brand-accent);
    text-decoration: none;
    font-weight: 600;
}
.nsh-v2-journal-more:hover { text-decoration: underline; }

/* Hub --------------------------------------------------------------------- */
.nsh-v2-hub-eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 0.78rem;
    color: var(--brand-accent);
    margin: 0 0 0.5rem;
    font-weight: 600;
}
.nsh-v2-hub-headline {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(2rem, 7vw, 3.2rem);
    font-weight: 600;
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin: 0 0 1rem;
}
.nsh-v2-hub-subheadline {
    font-size: clamp(1rem, 3vw, 1.15rem);
    color: var(--nsh-v2-muted);
    max-width: 56ch;
    margin: 0 0 0;
}
.nsh-v2-hub-hero {
    padding: 3rem 0 2rem;
    background: linear-gradient(180deg, var(--nsh-v2-sand) 0%, var(--nsh-v2-bg) 100%);
}
.nsh-v2-hub-brands { padding: 3rem 0; }
.nsh-v2-hub-brand-grid {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--nsh-v2-gap);
}
.nsh-v2-hub-brand-card {
    background: #fff;
    border-radius: var(--nsh-v2-radius);
    border: 1px solid var(--nsh-v2-border);
    overflow: hidden;
    border-top: 4px solid var(--brand-accent);
}
.nsh-v2-hub-brand-link {
    display: block;
    color: inherit;
    text-decoration: none;
}
.nsh-v2-hub-brand-media {
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: var(--nsh-v2-sand);
}
.nsh-v2-hub-brand-media--empty {
    background: linear-gradient(135deg, var(--nsh-v2-sand) 0%, var(--nsh-v2-sand-deep) 100%);
}
.nsh-v2-hub-brand-img { width: 100%; height: 100%; object-fit: cover; }
.nsh-v2-hub-brand-body { padding: 1.5rem; }
.nsh-v2-hub-brand-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.4rem;
    font-weight: 600;
    margin: 0 0 0.5rem;
}
.nsh-v2-hub-brand-sub {
    color: var(--nsh-v2-muted);
    font-size: 0.95rem;
    margin: 0 0 1rem;
    min-height: 2.8em;
}
.nsh-v2-hub-brand-cta {
    color: var(--brand-accent);
    font-weight: 600;
}
.nsh-v2-hub-about {
    padding: 2rem 0;
    background: var(--nsh-v2-sand);
}
.nsh-v2-hub-about-text {
    color: var(--nsh-v2-muted);
    max-width: 56ch;
    margin: 0 auto;
    text-align: center;
    font-size: 0.95rem;
}

/* Blog list / Journal page ------------------------------------------------ */
.nsh-v2-blog-header {
    padding: 3rem 0 1.5rem;
    background: linear-gradient(180deg, var(--nsh-v2-sand) 0%, var(--nsh-v2-bg) 100%);
}
.nsh-v2-blog-list { padding: 2rem 0 3rem; }
.nsh-v2-blog-grid {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem;
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--nsh-v2-gap);
}
.nsh-v2-blog-card {
    background: #fff;
    border-radius: var(--nsh-v2-radius);
    border: 1px solid var(--nsh-v2-border);
    overflow: hidden;
}
.nsh-v2-blog-meta {
    color: var(--nsh-v2-muted);
    font-size: 0.85rem;
    margin: 0 0 0.5rem;
}
.nsh-v2-blog-pagination {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin: 2rem 0 1rem;
}
.nsh-v2-blog-pagination .page-numbers {
    padding: 0.5rem 0.85rem;
    border-radius: 8px;
    background: #fff;
    border: 1px solid var(--nsh-v2-border);
    color: var(--nsh-v2-fg);
    text-decoration: none;
    font-size: 0.9rem;
    min-height: 40px;
    display: inline-flex;
    align-items: center;
}
.nsh-v2-blog-pagination .page-numbers.current {
    background: var(--brand-accent);
    color: #fff;
    border-color: var(--brand-accent);
}
.nsh-v2-blog-pagination .page-numbers:hover { background: var(--nsh-v2-sand); }

/* ==========================================================================
   Front Page (editorial homepage hub) — .nsh-v2-fp-*
   Used by theme/front-page.php when site root is visited.
   ========================================================================== */

.nsh-v2-fp { background: var(--nsh-v2-bg); }

/* Hero — full-width editorial statement (trimmed to match other blocks) --- */
.nsh-v2-fp-hero {
    background: var(--nsh-v2-sand);
    padding: 3rem 1.25rem 2.75rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.nsh-v2-fp-hero::before,
.nsh-v2-fp-hero::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.45;
    pointer-events: none;
}
.nsh-v2-fp-hero::before {
    top: 15%; left: -4%;
    width: 220px; height: 220px;
    background: rgba(94, 127, 107, 0.18);
}
.nsh-v2-fp-hero::after {
    bottom: -12%; right: -6%;
    width: 260px; height: 260px;
    background: rgba(201, 122, 93, 0.14);
}
.nsh-v2-fp-hero-inner {
    max-width: 780px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}
.nsh-v2-fp-eyebrow {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--nsh-v2-sage);
    margin: 0 0 1.25rem;
    font-weight: 500;
}
.nsh-v2-fp-headline {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(2rem, 5.5vw, 3.4rem);
    font-weight: 400;
    line-height: 1.08;
    letter-spacing: -0.02em;
    margin: 0 0 1.25rem;
    color: #1c1b1a;
}
.nsh-v2-fp-sub {
    font-size: clamp(1rem, 2.2vw, 1.15rem);
    color: var(--nsh-v2-muted);
    max-width: 560px;
    margin: 0 auto 2rem;
    line-height: 1.6;
}
.nsh-v2-fp-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 54px;
    padding: 0.95rem 2.1rem;
    background: #1c1b1a;
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    letter-spacing: 0.02em;
    font-size: 0.98rem;
    border-radius: 10px;
    transition: background 0.25s ease, transform 0.15s ease, box-shadow 0.25s ease;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
}
.nsh-v2-fp-cta:hover,
.nsh-v2-fp-cta:focus-visible {
    background: var(--nsh-v2-sage);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(94, 127, 107, 0.35);
}
.nsh-v2-fp-hero-ctas {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}
.nsh-v2-fp-hero-secondary {
    color: var(--nsh-v2-muted);
    font-size: 0.92rem;
    text-decoration: none;
    font-weight: 500;
    border-bottom: 1px solid rgba(107, 105, 98, 0.3);
    padding-bottom: 2px;
    transition: color 0.2s ease, border-color 0.2s ease;
}
.nsh-v2-fp-hero-secondary:hover {
    color: var(--nsh-v2-sage);
    border-bottom-color: var(--nsh-v2-sage);
}

/* Affiliate disclosure strip (below hero) */
.nsh-v2-fp-disclosure {
    background: #fdf9ef;
    border-top: 1px solid rgba(94, 127, 107, 0.15);
    border-bottom: 1px solid rgba(94, 127, 107, 0.15);
    padding: 1rem 1.25rem;
}
.nsh-v2-fp-disclosure-text {
    margin: 0;
    font-size: 0.82rem;
    color: var(--nsh-v2-muted);
    text-align: center;
    line-height: 1.55;
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
}
.nsh-v2-fp-disclosure-text strong {
    color: var(--nsh-v2-fg);
    font-weight: 600;
}

/* Trust strip — below hero ------------------------------------------------ */
.nsh-v2-fp-trust {
    background: #fff;
    padding: 1.5rem 1.25rem;
    border-top: 1px solid var(--nsh-v2-border);
    border-bottom: 1px solid var(--nsh-v2-border);
}
.nsh-v2-fp-trust-list {
    list-style: none;
    margin: 0 auto;
    padding: 0;
    max-width: var(--nsh-v2-maxw);
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem 1.5rem;
}
.nsh-v2-fp-trust-item {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    font-size: 0.88rem;
    color: var(--nsh-v2-fg);
    justify-content: center;
}
.nsh-v2-fp-trust-icon {
    width: 24px; height: 24px;
    color: var(--nsh-v2-sage);
    flex-shrink: 0;
}

/* Section title + lead shared across fp sections -------------------------- */
.nsh-v2-fp-section-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(1.9rem, 5.5vw, 2.75rem);
    font-weight: 400;
    letter-spacing: -0.015em;
    margin: 0 0 0.8rem;
    text-align: center;
    color: #1c1b1a;
}
.nsh-v2-fp-section-lead {
    color: var(--nsh-v2-muted);
    text-align: center;
    max-width: 54ch;
    margin: 0 auto 3rem;
    font-size: 1rem;
    line-height: 1.65;
}

/* 3 Pillars --------------------------------------------------------------- */
.nsh-v2-fp-pillars { padding: 5rem 0; }
.nsh-v2-fp-pillar-grid {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}
.nsh-v2-fp-pillar-card {
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid var(--nsh-v2-border);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.nsh-v2-fp-pillar-card:hover,
.nsh-v2-fp-pillar-card:focus-within {
    transform: translateY(-6px);
    box-shadow: 0 28px 50px -24px rgba(28, 27, 26, 0.22);
}
.nsh-v2-fp-pillar-link {
    display: block;
    color: inherit;
    text-decoration: none;
}
.nsh-v2-fp-pillar-media {
    aspect-ratio: 4 / 3;
    background-color: var(--brand-accent);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    display: flex;
    align-items: flex-end;
    padding: 1.5rem;
}
.nsh-v2-fp-pillar-media::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 35%, rgba(0, 0, 0, 0.55) 100%);
}
.nsh-v2-fp-pillar-eyebrow {
    position: relative;
    color: #fff;
    font-size: 0.74rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-weight: 500;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 0.4rem 0.85rem;
    border-radius: 999px;
}
.nsh-v2-fp-pillar-body { padding: 1.75rem 1.75rem 2rem; }
.nsh-v2-fp-pillar-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.65rem;
    font-weight: 500;
    margin: 0 0 0.5rem;
    color: #1c1b1a;
}
.nsh-v2-fp-pillar-sub {
    color: var(--nsh-v2-muted);
    margin: 0 0 1.5rem;
    font-size: 0.95rem;
    letter-spacing: 0.02em;
}
.nsh-v2-fp-pillar-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    color: var(--brand-accent);
    font-weight: 600;
    font-size: 0.95rem;
}

/* Journal highlights ------------------------------------------------------ */
.nsh-v2-fp-journal {
    padding: 5rem 0;
    background: var(--nsh-v2-sand);
}
.nsh-v2-fp-journal-grid {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}
.nsh-v2-fp-journal-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--nsh-v2-border);
    transition: transform 0.35s ease;
}
.nsh-v2-fp-journal-card:hover { transform: translateY(-4px); }
.nsh-v2-fp-journal-link {
    display: block;
    color: inherit;
    text-decoration: none;
}
.nsh-v2-fp-journal-media {
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: var(--nsh-v2-sand-deep);
}
.nsh-v2-fp-journal-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.nsh-v2-fp-journal-card:hover .nsh-v2-fp-journal-img { transform: scale(1.05); }
.nsh-v2-fp-journal-body { padding: 1.75rem; }
.nsh-v2-fp-journal-date {
    font-size: 0.72rem;
    color: var(--nsh-v2-muted);
    text-transform: uppercase;
    letter-spacing: 0.14em;
    margin: 0 0 0.6rem;
    font-weight: 500;
}
.nsh-v2-fp-journal-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.35rem;
    margin: 0 0 0.75rem;
    font-weight: 500;
    line-height: 1.3;
    color: #1c1b1a;
}
.nsh-v2-fp-journal-excerpt {
    color: var(--nsh-v2-muted);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0 0 1rem;
}
.nsh-v2-fp-journal-cta {
    color: var(--nsh-v2-sage);
    font-weight: 600;
    font-size: 0.9rem;
}
.nsh-v2-fp-journal-all {
    text-align: center;
    margin: 3rem 0 0;
}
.nsh-v2-fp-journal-more {
    color: var(--nsh-v2-sage);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    border-bottom: 1px solid currentColor;
    padding-bottom: 3px;
}
.nsh-v2-fp-journal-more:hover { color: var(--nsh-v2-fg); }

/* Journal carousel (homepage) — mirrors WN journal behavior with v2 namespace */
.nsh-v2-fp-carousel {
    max-width: var(--nsh-v2-maxw);
    margin: 0 auto;
    overflow: hidden;
    padding: 0 1.25rem;
    position: relative;
}
.nsh-v2-fp-carousel-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}
.nsh-v2-fp-carousel-slide {
    flex: 0 0 100%;
    padding: 0 0.625rem;
    box-sizing: border-box;
}
.nsh-v2-fp-carousel-card {
    background: #fff;
    border-radius: 16px;
    border: 1px solid var(--nsh-v2-border);
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.nsh-v2-fp-carousel-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px -20px rgba(28, 27, 26, 0.2);
}
.nsh-v2-fp-carousel-thumb {
    display: block;
    position: relative;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: var(--nsh-v2-sand-deep);
}
.nsh-v2-fp-carousel-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.nsh-v2-fp-carousel-card:hover .nsh-v2-fp-carousel-thumb img { transform: scale(1.05); }
.nsh-v2-fp-carousel-tag {
    position: absolute;
    top: 1rem;
    left: 1rem;
    padding: 0.32rem 0.8rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.95);
    color: var(--nsh-v2-fg);
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    z-index: 1;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}
.nsh-v2-fp-carousel-body {
    padding: 1.5rem 1.5rem 1.75rem;
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
    flex: 1 1 auto;
}
.nsh-v2-fp-carousel-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.2rem;
    margin: 0;
    font-weight: 500;
    line-height: 1.35;
    color: #1c1b1a;
}
.nsh-v2-fp-carousel-title a { color: inherit; text-decoration: none; }
.nsh-v2-fp-carousel-title a:hover { color: var(--nsh-v2-sage); }
.nsh-v2-fp-carousel-link {
    color: var(--nsh-v2-sage);
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    margin-top: auto;
}
.nsh-v2-fp-carousel-link svg {
    width: 16px;
    height: 16px;
    transition: transform 0.2s ease;
}
.nsh-v2-fp-carousel-link:hover svg { transform: translateX(3px); }
.nsh-v2-fp-carousel-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin: 2rem 0 0;
    padding: 0;
}
.nsh-v2-fp-carousel-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: rgba(28, 27, 26, 0.18);
    border: 0;
    padding: 0;
    cursor: pointer;
    transition: background 0.25s ease, transform 0.25s ease;
}
.nsh-v2-fp-carousel-dot:hover { background: rgba(28, 27, 26, 0.4); }
.nsh-v2-fp-carousel-dot.is-active {
    background: var(--nsh-v2-sage);
    transform: scale(1.25);
}

/* Why Us ------------------------------------------------------------------ */
.nsh-v2-fp-why {
    padding: 5rem 0;
    background: linear-gradient(180deg, var(--nsh-v2-bg) 0%, #f5f1e8 100%);
}
.nsh-v2-fp-why-inner { max-width: 1040px; margin: 0 auto; }
.nsh-v2-fp-why-lead {
    color: var(--nsh-v2-muted);
    font-size: 1.08rem;
    line-height: 1.75;
    text-align: center;
    margin: 0 auto 3.5rem;
    max-width: 62ch;
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 400;
    font-style: italic;
    letter-spacing: 0.002em;
}
.nsh-v2-fp-why-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
    counter-reset: nsh-why-counter;
}
.nsh-v2-fp-why-list li {
    padding: 2.5rem 2rem 2.25rem;
    background: #fff;
    border-radius: 20px;
    border: 1px solid rgba(94, 127, 107, 0.1);
    color: var(--nsh-v2-muted);
    font-size: 0.97rem;
    line-height: 1.7;
    counter-increment: nsh-why-counter;
    position: relative;
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}
.nsh-v2-fp-why-list li:hover {
    transform: translateY(-4px);
    box-shadow: 0 24px 50px -24px rgba(28, 27, 26, 0.18);
    border-color: rgba(94, 127, 107, 0.25);
}
.nsh-v2-fp-why-list li::before {
    content: counter(nsh-why-counter, decimal-leading-zero);
    display: block;
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 2.6rem;
    font-weight: 400;
    line-height: 1;
    color: var(--nsh-v2-sage);
    margin-bottom: 1.1rem;
    opacity: 0.9;
    letter-spacing: -0.02em;
}
.nsh-v2-fp-why-list strong {
    display: block;
    color: #1c1b1a;
    margin-bottom: 0.65rem;
    font-weight: 500;
    font-size: 1.2rem;
    line-height: 1.35;
    font-family: 'Playfair Display', Georgia, serif;
    letter-spacing: -0.01em;
}

/* Promise section --------------------------------------------------------- */
/* Replaces Reviews slot when _nsh_promise_headline is set on the Page. */
/* Promise section — compacted 2026-04-20 round 4: padding halved, body
   paragraph removed, trust-bar re-styled editorial (no outer card border,
   hairline dividers only) for tighter luxury feel. */
.nsh-v2-promise {
    padding: 2.5rem 0;
    background: linear-gradient(180deg, var(--nsh-v2-bg) 0%, var(--nsh-v2-sand) 100%);
}
.nsh-v2-promise-eyebrow {
    font-family: 'Inter', system-ui, sans-serif;
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--brand-accent);
    margin: 0 0 0.5rem;
    text-align: center;
}
.nsh-v2-promise-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(1.7rem, 4vw, 2.3rem);
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: -0.015em;
    color: var(--nsh-v2-fg);
    margin: 0 0 0.5rem;
    text-align: center;
}
.nsh-v2-promise-lead {
    font-size: 1rem;
    color: var(--nsh-v2-muted);
    margin: 0 auto 1.5rem;
    max-width: 560px;
    text-align: center;
    line-height: 1.55;
}
.nsh-v2-promise-inner { max-width: 880px; margin: 0 auto; }
.nsh-v2-promise-header { margin-bottom: 1.5rem; }

/* Editorial trust-bar: transparent bg, no outer card border. Hairline
   dividers between items only. Stacks 2-col on mobile, 4-col on desktop. */
.nsh-v2-promise-trustbar {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
    background: transparent;
}
.nsh-v2-promise-trustbar-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 0.75rem;
    text-align: center;
    border-right: 1px solid var(--nsh-v2-border);
    border-bottom: 1px solid var(--nsh-v2-border);
}
.nsh-v2-promise-trustbar-item:nth-child(2n) { border-right: 0; }
.nsh-v2-promise-trustbar-item:nth-last-child(-n+2) { border-bottom: 0; }
.nsh-v2-promise-trustbar-icon {
    width: 28px;
    height: 28px;
    color: var(--brand-accent);
    display: inline-flex;
}
.nsh-v2-promise-trustbar-icon svg { width: 100%; height: 100%; stroke-width: 1.4; }
.nsh-v2-promise-trustbar-label {
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    color: var(--nsh-v2-fg);
    line-height: 1.3;
}

/* Tablet (>=768px) -------------------------------------------------------- */
@media (min-width: 768px) {
    .nsh-v2-section-inner { padding: 0 2rem; }
    .nsh-v2-nav-toggle { display: none; }
    .nsh-v2-nav-list {
        display: flex !important;
        flex-direction: row;
        position: static;
        padding: 0;
        border-bottom: 0;
        background: transparent;
        gap: 0.25rem;
    }
    .nsh-v2-nav-link { padding: 0.5rem 0.85rem; }
    .nsh-v2-hero-inner {
        flex-direction: row;
        align-items: center;
        gap: var(--nsh-v2-gap-lg);
    }
    .nsh-v2-hero-text  { order: 1; flex: 1 1 55%; }
    .nsh-v2-hero-media { order: 2; flex: 1 1 45%; }
    .nsh-v2-cta-btn--primary { width: auto; max-width: none; }
    .nsh-v2-products-grid    { grid-template-columns: repeat(2, 1fr); }
    .nsh-v2-comparison-grid  { grid-template-columns: 1fr 1fr; }
    .nsh-v2-reviews-list     { grid-template-columns: repeat(3, 1fr); }
    .nsh-v2-journal-grid     { grid-template-columns: repeat(3, 1fr); }
    .nsh-v2-hub-brand-grid   { grid-template-columns: repeat(3, 1fr); }
    .nsh-v2-blog-grid        { grid-template-columns: repeat(2, 1fr); }
    .nsh-v2-fp-hero          { padding: 4.5rem 2rem 4rem; }
    .nsh-v2-fp-trust-list    { grid-template-columns: repeat(4, 1fr); gap: 1rem; }
    .nsh-v2-fp-pillar-grid   { grid-template-columns: repeat(3, 1fr); gap: 1.75rem; }
    .nsh-v2-fp-journal-grid  { grid-template-columns: repeat(3, 1fr); }
    .nsh-v2-fp-why-list      { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
    .nsh-v2-promise          { padding: 3.5rem 0; }
    .nsh-v2-promise-trustbar {
        grid-template-columns: repeat(4, 1fr);
    }
    .nsh-v2-promise-trustbar-item {
        padding: 1.25rem 1rem;
        border-right: 1px solid var(--nsh-v2-border);
        border-bottom: 0;
    }
    .nsh-v2-promise-trustbar-item:nth-child(2n) { border-right: 1px solid var(--nsh-v2-border); }
    .nsh-v2-promise-trustbar-item:last-child { border-right: 0; }
    .nsh-v2-promise-trustbar-item:nth-last-child(-n+2) { border-bottom: 0; }
}

/* Desktop (>=1024px) ------------------------------------------------------ */
@media (min-width: 1024px) {
    .nsh-v2-hero       { padding: 4rem 1.25rem 3rem; }
    .nsh-v2-products-grid { grid-template-columns: repeat(3, 1fr); }
    .nsh-v2-blog-grid     { grid-template-columns: repeat(3, 1fr); }
    .nsh-v2-fp-hero       { padding: 5.5rem 2rem 5rem; }
    .nsh-v2-fp-pillar-grid { gap: 2rem; }
    .nsh-v2-fp-why-list    { grid-template-columns: repeat(2, 1fr); gap: 2rem; }
    .nsh-v2-fp-why-list li { padding: 3rem 2.5rem 2.5rem; }
    .nsh-v2-fp-why-list li::before { font-size: 3rem; }
}

/* ==========================================================================
   Product Social Proof — compact pill (inside card) + showcase section (below)
   Two-tier system: pill = single-line identity marker in each card; showcase =
   full quote/editorial detail in a dedicated section. Keeps Collection grid
   heights uniform (flagged 2026-04-19 — reviews inline blew out card heights).
   ========================================================================== */

/* Shared pill style — used in card AND in showcase card header */
.nsh-v2-sp__pill {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 4px 10px 4px 8px;
    border-radius: 999px;
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    line-height: 1;
    white-space: nowrap;
}
.nsh-v2-sp__pill svg { flex-shrink: 0; }
.nsh-v2-sp__pill--verified { background: #e8f2eb; color: #2d6a4a; }
.nsh-v2-sp__pill--expert   { background: #f5ece0; color: #8a5a2b; }

/* Compact in-card pill (anchored under product title) ---------------------- */
.nsh-v2-sp-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin: 0 0 10px;
    padding: 4px 10px;
    border-radius: 999px;
    font-size: 0.78rem;
    line-height: 1;
    font-weight: 500;
    font-family: 'Inter', system-ui, sans-serif;
    letter-spacing: 0.01em;
}
.nsh-v2-sp-pill--verified {
    background: rgba(45, 106, 74, 0.08);
    color: #2d6a4a;
}
.nsh-v2-sp-pill--expert {
    background: rgba(138, 90, 43, 0.08);
    color: #8a5a2b;
}
.nsh-v2-sp-pill-star {
    color: #e8a23d;
    font-size: 0.9rem;
    line-height: 1;
}
.nsh-v2-sp-pill strong { font-weight: 700; color: inherit; }
.nsh-v2-sp-pill-count  { opacity: 0.75; font-size: 0.72rem; }
.nsh-v2-sp-pill-label  {
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding-left: 6px;
    margin-left: 2px;
    border-left: 1px solid currentColor;
    opacity: 0.75;
}
.nsh-v2-sp-pill svg { flex-shrink: 0; }

/* Brand quality-mark corner label on product image ------------------------- */
.nsh-v2-quality-mark {
    position: absolute;
    top: 14px;
    right: 14px;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(4px);
    color: var(--nsh-v2-fg);
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 0.68rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 5px 12px;
    border-radius: 2px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    z-index: 2;
    white-space: nowrap;
}

/* Star sprite (stacked backgrounds — CSS custom prop for fill width) ------- */
.nsh-v2-stars {
    position: relative;
    display: inline-block;
    font-size: 0.95rem;
    letter-spacing: 0.06em;
    line-height: 1;
    color: #d9d5cc;
}
.nsh-v2-stars-bg { display: inline-block; }
.nsh-v2-stars-fill {
    position: absolute;
    top: 0;
    left: 0;
    overflow: hidden;
    color: #e8a23d;
    width: calc(var(--r, 0) / 5 * 100%);
}

/* Verified-buyer tick + country pill (used in showcase quote byline) ------- */
.nsh-v2-sp__tick {
    color: #2d6a4a;
    font-weight: 600;
    font-size: 0.7rem;
}
.nsh-v2-sp__loc {
    background: var(--nsh-v2-sand);
    padding: 1px 6px;
    border-radius: 4px;
    font-size: 0.66rem;
    letter-spacing: 0.05em;
    font-weight: 600;
    color: var(--nsh-v2-fg);
    text-transform: uppercase;
}

/* ==========================================================================
   Social Proof Showcase — dedicated section below products grid.
   Intentionally airy, editorial-feeling layout. Two-col grid on desktop,
   stacked on mobile. Each card can be either Verified Reviews OR Editor's Pick.
   ========================================================================== */
.nsh-v2-showcase {
    padding: 4rem 0 3rem;
    background: linear-gradient(180deg, var(--nsh-v2-bg) 0%, #fff 100%);
}
.nsh-v2-showcase-intro {
    max-width: 680px;
    margin: 0 auto 3rem;
    text-align: center;
}
.nsh-v2-showcase-eyebrow {
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--brand-accent);
    margin: 0 0 0.8rem;
}
.nsh-v2-showcase-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(1.6rem, 4vw, 2.25rem);
    font-weight: 500;
    letter-spacing: -0.015em;
    line-height: 1.25;
    color: var(--nsh-v2-fg);
    margin: 0 0 0.8rem;
}
.nsh-v2-showcase-lead {
    font-size: 0.95rem;
    line-height: 1.65;
    color: var(--nsh-v2-muted);
    margin: 0;
}
/* Carousel shell (replaced the old CSS grid — grid is too tall when N>6 items) */
.nsh-v2-showcase-carousel {
    position: relative;
    padding: 0 0 0.5rem;
}
.nsh-v2-showcase-track {
    display: flex;
    gap: 1.25rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    padding: 0.4rem 0 1rem;
}
.nsh-v2-showcase-track::-webkit-scrollbar { display: none; }
.nsh-v2-showcase-track .nsh-v2-showcase-card {
    flex: 0 0 calc(100% - 0.5rem);
    scroll-snap-align: start;
}
/* Arrow buttons — ghost pills positioned above track on desktop, hidden on
   touch-first mobile where scroll-swipe is natural. */
/* Arrow buttons — classic side-middle floats. Hidden on mobile (swipe-first),
   shown on tablet+ as thin-line ghost circles that lift on hover. */
.nsh-v2-showcase-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    padding: 0;
    align-items: center;
    justify-content: center;
    background: #fff;
    border: 1px solid var(--nsh-v2-border);
    border-radius: 999px;
    color: var(--nsh-v2-fg);
    cursor: pointer;
    box-shadow: 0 2px 12px -4px rgba(28, 27, 26, 0.08);
    transition: border-color 0.18s ease, color 0.18s ease, background-color 0.18s ease, opacity 0.18s ease, transform 0.18s ease;
    display: none; /* shown on tablet+ only */
    z-index: 3;
}
.nsh-v2-showcase-arrow:hover:not(:disabled) {
    border-color: var(--brand-accent);
    color: var(--brand-accent);
    transform: translateY(-50%) scale(1.05);
}
.nsh-v2-showcase-arrow:disabled {
    opacity: 0.3;
    cursor: default;
}
.nsh-v2-showcase-arrow--prev { left: -1.25rem; }
.nsh-v2-showcase-arrow--next { right: -1.25rem; }
/* Dots under the carousel */
.nsh-v2-showcase-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 1.25rem;
    padding: 0;
}
.nsh-v2-showcase-dot {
    width: 8px;
    height: 8px;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: rgba(60, 58, 54, 0.18);
    cursor: pointer;
    transition: background-color 0.18s ease, width 0.18s ease;
}
.nsh-v2-showcase-dot:hover { background: rgba(60, 58, 54, 0.35); }
.nsh-v2-showcase-dot.is-active {
    background: var(--brand-accent);
    width: 22px;
}
.nsh-v2-showcase-card {
    background: #fff;
    border: 1px solid var(--nsh-v2-border);
    border-radius: 12px;
    padding: 1.5rem 1.5rem 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}
.nsh-v2-showcase-card-head {
    display: flex;
    align-items: center;
    gap: 0.85rem;
}
.nsh-v2-showcase-card-thumb {
    width: 56px;
    height: 56px;
    border-radius: 8px;
    object-fit: cover;
    background: var(--nsh-v2-sand);
    flex-shrink: 0;
}
.nsh-v2-showcase-card-meta {
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-width: 0;
}
.nsh-v2-showcase-card-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.05rem;
    font-weight: 500;
    letter-spacing: -0.005em;
    color: var(--nsh-v2-fg);
    margin: 0;
    line-height: 1.25;
}
.nsh-v2-showcase-agg {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.82rem;
    color: var(--nsh-v2-fg);
}
.nsh-v2-showcase-agg strong { font-weight: 700; }
.nsh-v2-showcase-agg-count { color: var(--nsh-v2-muted); font-size: 0.78rem; }
.nsh-v2-showcase-quotes {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}
.nsh-v2-showcase-quote {
    padding: 0.6rem 0 0.2rem;
    border-top: 1px solid var(--nsh-v2-border);
}
.nsh-v2-showcase-quote:first-child { border-top: 0; padding-top: 0.2rem; }
.nsh-v2-showcase-quote-body {
    margin: 4px 0 0.3rem;
    font-size: 0.88rem;
    line-height: 1.5;
    color: var(--nsh-v2-fg);
}
.nsh-v2-showcase-quote-byline {
    margin: 0;
    font-size: 0.72rem;
    color: var(--nsh-v2-muted);
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}
.nsh-v2-showcase-quote-byline strong { color: var(--nsh-v2-fg); font-weight: 600; }
.nsh-v2-showcase-angle {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.02rem;
    font-weight: 500;
    font-style: italic;
    line-height: 1.35;
    color: var(--nsh-v2-fg);
    margin: 0;
}
.nsh-v2-showcase-body {
    margin: 0;
    font-size: 0.88rem;
    line-height: 1.6;
    color: var(--nsh-v2-fg);
}
.nsh-v2-showcase-claims {
    list-style: none;
    margin: 0.25rem 0 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}
.nsh-v2-showcase-claims li {
    position: relative;
    padding-left: 1.1rem;
    font-size: 0.82rem;
    color: var(--nsh-v2-fg);
    line-height: 1.4;
}
.nsh-v2-showcase-claims li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.55rem;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--brand-accent);
}
.nsh-v2-showcase-disclaimer {
    margin: 0.4rem 0 0;
    padding-top: 0.65rem;
    border-top: 1px dashed var(--nsh-v2-border);
    font-size: 0.68rem;
    line-height: 1.4;
    color: var(--nsh-v2-muted);
}
.nsh-v2-showcase-disclaimer strong { color: var(--nsh-v2-fg); font-weight: 600; }

/* "Further reading" tail on showcase cards — thin linework list under disclaimer */
.nsh-v2-showcase-further {
    margin-top: 0.6rem;
    padding-top: 0.65rem;
    border-top: 1px solid var(--nsh-v2-border);
}
.nsh-v2-showcase-further-label {
    font-size: 0.64rem;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--brand-accent);
    margin: 0 0 0.4rem;
}
.nsh-v2-showcase-further-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.nsh-v2-showcase-further-list a {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 0.82rem;
    line-height: 1.35;
    color: var(--nsh-v2-fg);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: color 0.18s ease, border-color 0.18s ease;
    padding-bottom: 1px;
}
.nsh-v2-showcase-further-list a:hover {
    color: var(--brand-accent);
    border-color: currentColor;
}
.nsh-v2-showcase-further-list svg {
    flex-shrink: 0;
    opacity: 0.6;
    transition: opacity 0.18s ease, transform 0.18s ease;
}
.nsh-v2-showcase-further-list a:hover svg {
    opacity: 1;
    transform: translate(1px, -1px);
}

/* ==========================================================================
   Featured Products (blog-side injection — NSH_Related_Links module)
   Rendered at the bottom of single blog posts, above post-nav + article-footer.
   Mirror of the LP product card aesthetics but scaled down and framed as an
   editorial recommendation box (aside element, disclosure line up top).
   ========================================================================== */
.nsh-v2-featured-products {
    margin: 3rem 0 1.5rem;
    padding: 1.5rem 1.25rem 1.75rem;
    border: 1px solid var(--nsh-v2-border);
    border-radius: var(--nsh-v2-radius-sm);
    background: #fff;
}
.nsh-v2-fp-eyebrow {
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--brand-accent, #5E7F6B);
    margin: 0 0 0.5rem;
}
.nsh-v2-fp-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.35rem;
    font-weight: 500;
    letter-spacing: -0.01em;
    line-height: 1.25;
    color: var(--nsh-v2-fg);
    margin: 0 0 0.35rem;
}
.nsh-v2-fp-disclosure {
    font-size: 0.74rem;
    color: var(--nsh-v2-muted);
    margin: 0 0 1.2rem;
    line-height: 1.5;
}
.nsh-v2-fp-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}
.nsh-v2-fp-card {
    display: flex;
    gap: 0.85rem;
    padding: 0.85rem;
    border: 1px solid var(--nsh-v2-border);
    border-radius: 6px;
    background: #fafaf7;
    transition: border-color 0.22s ease, transform 0.22s ease, box-shadow 0.22s ease;
    will-change: transform;
}
.nsh-v2-fp-card:hover {
    border-color: var(--brand-accent, #5E7F6B);
    transform: translateY(-3px);
    box-shadow: 0 10px 26px rgba(42, 40, 38, 0.09);
}
.nsh-v2-fp-card:active { transform: translateY(-1px); }
.nsh-v2-fp-card--spotlight {
    position: relative;
    border-color: var(--brand-accent, #5E7F6B);
    box-shadow: 0 4px 18px rgba(94, 127, 107, 0.14);
    background: #fff;
}
.nsh-v2-fp-card--spotlight:hover {
    box-shadow: 0 14px 32px rgba(94, 127, 107, 0.22);
}
.nsh-v2-fp-card--spotlight .nsh-v2-fp-card-title {
    font-size: 1.08rem;
}
.nsh-v2-fp-card-badge {
    position: absolute;
    top: -9px;
    left: 12px;
    z-index: 2;
    background: var(--brand-accent, #5E7F6B);
    color: #fff;
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    padding: 3px 9px;
    border-radius: 999px;
    line-height: 1.4;
}
.nsh-v2-fp-card-img {
    flex: 0 0 72px;
    width: 72px;
    height: 72px;
    border-radius: 4px;
    overflow: hidden;
    display: block;
    position: relative;
    /* No background: product images are opaque cream composites with their own canvas tone.
       A container tint here creates a visible 3-tone seam (card pad → img container → composite). */
}
/* WebP plugin wraps <img> in <picture>, so `.nsh-v2-fp-card-img > img` (direct child) does NOT
   match — img is a grandchild. Also theme's `.wn-single-content img { margin:32px 0; border-radius:12px }`
   has equal specificity to a single-class selector, so load order can let theme win and bleed the image
   outside the rounded card. Fix: anchor `position:relative` + `overflow:hidden`, and raise specificity
   with `.nsh-v2-featured-products` prefix. Absolute-positioned picture & img fill the anchor; margin
   and border-radius explicitly zeroed to neutralize theme inheritance inside single-post content. */
.nsh-v2-featured-products .nsh-v2-fp-card-img {
    overflow: hidden;
    position: relative;
}
.nsh-v2-featured-products .nsh-v2-fp-card-img picture,
.nsh-v2-featured-products .nsh-v2-fp-card-img img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    max-width: none;
    margin: 0;
    border-radius: 0;
    display: block;
}
.nsh-v2-featured-products .nsh-v2-fp-card-img img {
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.nsh-v2-fp-card:hover .nsh-v2-fp-card-img img { transform: scale(1.04); }
.nsh-v2-fp-card-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}
.nsh-v2-fp-card-eyebrow {
    font-size: 0.64rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--brand-accent, #5E7F6B);
    margin: 0;
    opacity: 0.85;
}
.nsh-v2-fp-card-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: -0.005em;
    line-height: 1.25;
    color: var(--nsh-v2-fg);
    margin: 2px 0 0;
}
.nsh-v2-fp-card-title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.18s ease;
}
.nsh-v2-fp-card-title a:hover { color: var(--brand-accent, #5E7F6B); }
.nsh-v2-fp-card-benefit {
    font-size: 0.8rem;
    line-height: 1.4;
    color: var(--nsh-v2-muted);
    margin: 3px 0 0;
}
.nsh-v2-fp-card-cta {
    align-self: flex-start;
    margin-top: 6px;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    color: var(--brand-accent, #5E7F6B);
    text-decoration: none;
    padding-bottom: 1px;
    border-bottom: 1px solid currentColor;
    transition: color 0.2s ease, letter-spacing 0.2s ease;
}
.nsh-v2-fp-card-cta:hover {
    color: var(--brand-accent-dark, #3e5a4d);
    letter-spacing: 0.07em;
}

@media (max-width: 639px) {
    /* Mobile: horizontal scroll carousel with snap when there are 2+ cards.
       Single-card case falls back to full-width (via :only-child) for a clean stack. */
    .nsh-v2-fp-grid {
        display: flex;
        grid-template-columns: none;
        gap: 0.75rem;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        padding: 0.25rem 0.1rem 0.75rem;
        margin: 0 -0.25rem;
        scrollbar-width: none;
    }
    .nsh-v2-fp-grid::-webkit-scrollbar { display: none; }
    .nsh-v2-fp-card {
        flex: 0 0 86%;
        scroll-snap-align: start;
        flex-direction: column;
        gap: 0.75rem;
    }
    .nsh-v2-fp-card:only-child { flex: 0 0 100%; }
    .nsh-v2-fp-card-img {
        flex: 0 0 auto;
        width: 100%;
        aspect-ratio: 16 / 10;
        height: auto;
    }
}

@media (min-width: 640px) {
    .nsh-v2-featured-products { padding: 1.75rem 1.5rem 2rem; }
    .nsh-v2-fp-grid { grid-template-columns: repeat(3, 1fr); gap: 1rem; }
    .nsh-v2-fp-card { flex-direction: column; gap: 0.75rem; }
    .nsh-v2-fp-card-img { flex: 0 0 auto; width: 100%; aspect-ratio: 1; height: auto; }
}

@media (prefers-reduced-motion: reduce) {
    .nsh-v2-fp-card,
    .nsh-v2-fp-card-img img,
    .nsh-v2-fp-card-cta { transition: none; }
    .nsh-v2-fp-card:hover { transform: none; box-shadow: none; }
    .nsh-v2-fp-card:hover .nsh-v2-fp-card-img img { transform: none; }
    .nsh-v2-fp-card-cta:hover { letter-spacing: 0.04em; }
}

@media (min-width: 768px) {
    .nsh-v2-showcase-track { gap: 1.5rem; }
    .nsh-v2-showcase-track .nsh-v2-showcase-card {
        flex-basis: calc((100% - 1.5rem) / 2);
    }
    .nsh-v2-showcase-arrow { display: inline-flex; }
}
@media (min-width: 1024px) {
    .nsh-v2-showcase { padding: 5rem 0 4rem; }
    .nsh-v2-showcase-track { gap: 1.75rem; }
    .nsh-v2-showcase-track .nsh-v2-showcase-card {
        flex-basis: calc((100% - 3.5rem) / 3);
    }
}
