/* ═══════════════════════════════════════════════════════════════════════
   EDITORIAL PASS — custom catalog, not a WooCommerce template
   ═══════════════════════════════════════════════════════════════════════ */

:root {
    --ink: #0c1220;
    --paper: #f4f5f7;
    --rule: rgba(12, 18, 32, 0.1);
}

body.prc-editorial {
    background: var(--paper);
}

/* ── Header: quieter, less SaaS ───────────────────────────────────────── */

.prc-editorial .promo-strip {
    justify-content: center;
    gap: 2rem;
    padding: 0.35rem 1rem;
    background: var(--ink);
    font-size: 0.68rem;
    letter-spacing: 0.14em;
}

.prc-editorial .promo-strip span + span::before {
    content: "·";
    margin-right: 2rem;
    color: rgba(255, 255, 255, 0.35);
}

.prc-editorial .header-inner {
    min-height: 76px;
    width: min(1280px, calc(100% - 48px));
}

.prc-editorial .brand-text {
    font-size: 1rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: var(--ink);
}

.prc-editorial .footer-brand .brand-text {
    color: var(--ink);
}

.prc-editorial .product-search {
    max-width: 220px;
    border-color: var(--rule);
}

.home.prc-editorial .product-search {
    display: none;
}

.prc-editorial .menu a {
    font-size: 0.88rem;
    font-weight: 700;
    letter-spacing: 0.01em;
}

/* ── Homepage masthead ────────────────────────────────────────────────── */

.home-editorial .masthead-hero {
    display: grid;
    grid-template-columns: minmax(0, 0.82fr) minmax(460px, 1.28fr);
    gap: clamp(2rem, 3vw, 2.75rem);
    align-items: center;
    width: min(1120px, calc(100% - 48px));
    margin: 0 auto;
    padding: clamp(2.5rem, 5vw, 4rem) 0 clamp(1.5rem, 3vw, 2.5rem);
}

.masthead-hero--calm h1 {
    max-width: 14ch;
    font-size: clamp(1.85rem, 3.8vw, 2.85rem);
    line-height: 1.05;
}

.masthead-hero--calm .masthead-hero__lede {
    max-width: 38ch;
    margin-top: 1rem;
    font-size: 0.98rem;
}

.masthead-hero--calm .masthead-hero__actions {
    margin-top: 1.5rem;
}

.masthead-hero__figure {
    margin: 0;
    padding: 0;
    width: 100%;
    max-width: none;
    justify-self: stretch;
}

.home-editorial .masthead-hero__figure,
.home-editorial .editorial-banner__media {
    position: relative;
    overflow: visible;
    border: 0;
    border-radius: 0;
    background: transparent;
}

/* Homepage photos — crisp image, soft frame (not vignetted pixels) */
.home-photo-frame {
    position: relative;
    display: block;
    margin: 0;
    padding: clamp(0.5rem, 1.2vw, 0.75rem);
    border: 1px solid rgba(12, 18, 32, 0.12);
    border-radius: 8px;
    background: #ffffff;
    line-height: 0;
    box-shadow:
        0 1px 2px rgba(12, 18, 32, 0.04),
        0 16px 44px -8px rgba(12, 18, 32, 0.14);
}

.home-photo-frame img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 3px;
}

.home-photo-frame::after {
    content: "";
    position: absolute;
    inset: -10px;
    z-index: -1;
    border-radius: 14px;
    pointer-events: none;
    box-shadow: 0 22px 56px -16px rgba(12, 18, 32, 0.18);
}

.masthead-hero__figure img {
    filter: none;
}

@media (min-width: 981px) {
    .home-editorial .masthead-hero__figure img {
        min-height: clamp(380px, 36vw, 480px);
        object-fit: cover;
        object-position: 58% center;
        border-radius: 0;
    }
}

.masthead-hero__ruo {
    margin: 0 0 0.75rem;
    color: var(--blue);
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.masthead-hero h1 {
    margin: 0;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.masthead-hero__lede {
    color: var(--muted);
    line-height: 1.6;
}

.masthead-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
}

.button-ghost {
    display: inline-flex;
    min-height: 42px;
    align-items: center;
    padding: 0 1rem;
    border: 1px solid var(--rule);
    border-radius: var(--radius);
    background: transparent;
    color: var(--text);
    font-size: 0.88rem;
    font-weight: 800;
}

.button-ghost:hover {
    border-color: rgba(0, 87, 217, 0.35);
    color: var(--blue);
}

.home-editorial .button-primary {
    min-height: 42px;
    font-size: 0.88rem;
}

.standards-band {
    border-top: 1px solid var(--rule);
    border-bottom: 1px solid var(--rule);
    background: #ffffff;
}

.standards-band ul {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0;
    width: min(1280px, calc(100% - 48px));
    margin: 0 auto;
    padding: 0;
    list-style: none;
}

.standards-band li {
    padding: 1.1rem 1.25rem;
    border-right: 1px solid var(--rule);
    color: var(--muted);
    font-size: 0.84rem;
    line-height: 1.45;
}

.standards-band li:last-child {
    border-right: 0;
}

.standards-band strong {
    display: block;
    margin-bottom: 0.2rem;
    color: var(--text);
    font-size: 0.88rem;
}

/* ── Category chips ─────────────────────────────────────────────────── */

.catalog-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    width: min(1280px, calc(100% - 48px));
    margin: 1.5rem auto 0;
    padding: 0;
}

.catalog-chips--home {
    margin-bottom: 0.5rem;
}

.catalog-chips__item {
    display: inline-flex;
    align-items: center;
    min-height: 38px;
    padding: 0 0.95rem;
    border: 1px solid var(--rule);
    border-radius: 999px;
    background: #ffffff;
    color: var(--text);
    font-size: 0.82rem;
    font-weight: 700;
    text-decoration: none;
    transition: border-color 0.15s ease, background 0.15s ease, color 0.15s ease;
}

.catalog-chips__item:hover,
.catalog-chips__item.is-active {
    border-color: var(--ink);
    background: var(--ink);
    color: #ffffff;
}

/* ── Catalog index (homepage + shop) ──────────────────────────────────── */

.catalog-index {
    width: min(1120px, calc(100% - 48px));
    margin: 3rem auto 3.5rem;
}

.catalog-index--featured {
    margin-top: 2.5rem;
    margin-bottom: 0;
}

.catalog-index--featured .catalog-index__head h2 {
    font-size: clamp(1.25rem, 2.2vw, 1.65rem);
}

.catalog-index--featured .catalog-index__head p {
    font-size: 0.88rem;
}

.catalog-index--featured .catalog-index__head p a {
    color: var(--blue);
    font-weight: 700;
    text-decoration: none;
}

/* Homepage featured picks — separate floating cards, not a connected grid */
.catalog-index--featured .catalog-index__grid {
    gap: clamp(1.1rem, 2.5vw, 1.75rem) !important;
    border: 0 !important;
    background: transparent !important;
    overflow: visible !important;
    border-radius: 0 !important;
    padding: 0.35rem 0 0.75rem;
}

.catalog-index--featured .prc-vial-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    margin: 0;
    padding: 0;
    background: #ffffff !important;
    border: 1px solid rgba(24, 37, 56, 0.09) !important;
    border-radius: 14px !important;
    box-shadow:
        0 1px 2px rgba(24, 37, 56, 0.04),
        0 10px 28px rgba(24, 37, 56, 0.08),
        0 22px 44px rgba(24, 37, 56, 0.05) !important;
    overflow: hidden;
    transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease !important;
}

.catalog-index--featured .prc-vial-card:hover {
    transform: translateY(-7px) !important;
    border-color: rgba(0, 87, 217, 0.16) !important;
    box-shadow:
        0 2px 4px rgba(24, 37, 56, 0.05),
        0 16px 36px rgba(24, 37, 56, 0.11),
        0 32px 64px rgba(24, 37, 56, 0.09) !important;
}

.catalog-index--featured .prc-vial-card__link:hover {
    transform: none !important;
    box-shadow: none !important;
    border-color: transparent !important;
}

.catalog-index--featured .prc-vial-card__title {
    font-size: 0.86rem !important;
    text-align: center !important;
    padding: 0.85rem 1.1rem 0.3rem !important;
}

.catalog-index--featured .prc-vial-card__meta {
    display: block !important;
    margin: 0 !important;
    padding: 0 1.1rem 1.15rem !important;
    color: var(--muted);
    font-size: 0.72rem !important;
    font-weight: 600;
    line-height: 1.45;
    text-align: center;
}

.catalog-index--featured .prc-vial-card__cta {
    display: none !important;
}

/* ── Fixed DNA backdrop — static art, page scrolls on top ─────────────── */

.home-editorial {
    position: relative;
    overflow-x: clip;
}

.home-dna-backdrop {
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}

.home-dna-backdrop__layer {
    position: absolute;
    inset: 0;
    background-repeat: no-repeat;
    background-size: cover;
}

.home-dna-backdrop__layer--molecular {
    background-image: url("../images/molecular-tech-banner.png");
    background-position: center 78%;
}

.home-dna-backdrop__veil {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        var(--paper) 0%,
        var(--paper) 36%,
        rgba(244, 245, 247, 0.97) 48%,
        rgba(244, 245, 247, 0.9) 62%,
        rgba(244, 245, 247, 0.78) 78%,
        rgba(244, 245, 247, 0.58) 100%
    );
}

.home-dna-stage {
    position: relative;
    z-index: 1;
}

.home-dna-tail {
    position: relative;
    min-height: 0;
    margin-top: 1.25rem;
    padding: 0.25rem 0 0.5rem;
    text-align: right;
}

.home-dna-tail__link {
    position: static;
    display: inline-flex;
    margin-top: 0;
    padding: 0.65rem 1.1rem;
    border: 1px solid rgba(255, 255, 255, 0.72);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(8px);
    color: var(--blue);
    font-size: 0.82rem;
    font-weight: 800;
    text-decoration: none;
    box-shadow: 0 10px 28px rgba(24, 37, 56, 0.12);
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.home-dna-tail__link:hover {
    transform: translateY(-2px);
    background: #ffffff;
    box-shadow: 0 14px 36px rgba(24, 37, 56, 0.16);
}

/* ── Homepage compliance disclaimer ───────────────────────────────────── */

.home-compliance {
    position: relative;
    z-index: 2;
    margin: 0;
    padding: 2rem 0 2rem;
    border-top: 1px solid var(--rule);
    background: #ffffff;
}

/* Homepage ends at compliance — no duplicate footer scroll */
body.home.prc-editorial .site-footer {
    display: none;
}

body.home.prc-editorial {
    background: #ffffff;
}

.home-compliance__inner {
    width: min(1120px, calc(100% - 48px));
    margin: 0 auto;
    max-width: 72ch;
}

.home-compliance__banner {
    margin: 0 0 1rem;
    padding: 0.65rem 0.85rem;
    border-radius: 4px;
    background: var(--ink);
    color: #ffffff;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-align: center;
    text-transform: uppercase;
}

.home-compliance__heading {
    margin: 0 0 0.85rem;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--muted);
}

.home-compliance p {
    margin: 0 0 0.75rem;
    color: var(--muted);
    font-size: 0.78rem;
    line-height: 1.6;
}

.home-compliance p:last-child {
    margin-bottom: 0;
}

@media (prefers-reduced-motion: reduce) {
    .home-dna-backdrop {
        position: absolute;
        height: 100%;
    }
}

.catalog-index__head {
    margin-bottom: 1.75rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--rule);
}

.catalog-index__head h2 {
    margin: 0;
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    font-weight: 800;
    letter-spacing: -0.02em;
}

.catalog-index__head p {
    margin: 0.45rem 0 0;
    color: var(--muted);
    font-size: 0.92rem;
}

.catalog-index__grid,
.catalog-stage__main ul.products {
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 0 !important;
    border: 1px solid var(--rule);
    background: #ffffff;
}

/* ── Catalog tiles (shared) ───────────────────────────────────────────── */

.catalog-tile,
.catalog-tile-wrap {
    margin: 0 !important;
    padding: 0 !important;
    list-style: none;
}

.catalog-tile__link,
.catalog-tile-wrap a.woocommerce-LoopProduct-link {
    display: flex !important;
    flex-direction: column !important;
    height: 100%;
    border: 0 !important;
    border-right: 1px solid var(--rule) !important;
    border-bottom: 1px solid var(--rule) !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    background: #ffffff !important;
    text-decoration: none !important;
    transition: background 0.18s ease !important;
    min-height: 0 !important;
    transform: none !important;
}

.catalog-index__grid .catalog-tile:nth-child(3n) .catalog-tile__link,
.catalog-stage__main ul.products li:nth-child(3n) a.woocommerce-LoopProduct-link {
    border-right: 0 !important;
}

.catalog-index__grid .catalog-tile:nth-last-child(-n+3) .catalog-tile__link,
.catalog-stage__main ul.products li:nth-last-child(-n+3) a.woocommerce-LoopProduct-link {
    border-bottom: 0 !important;
}

.catalog-tile__link:hover,
.catalog-tile-wrap a.woocommerce-LoopProduct-link:hover {
    background: #fafbfd !important;
    transform: none !important;
    box-shadow: none !important;
}

.catalog-tile__body,
.catalog-tile-wrap .catalog-tile__body {
    padding: 0.85rem 1.15rem 1.15rem;
}

.catalog-tile__title,
.catalog-tile-wrap .catalog-tile__title,
.catalog-tile-wrap .woocommerce-loop-product__title {
    margin: 0 !important;
    padding: 0 !important;
    color: var(--text) !important;
    font-size: 0.94rem !important;
    font-weight: 700 !important;
    line-height: 1.35 !important;
    text-align: left !important;
}

.catalog-tile__meta,
.catalog-tile-wrap .catalog-tile__meta {
    margin: 0.45rem 0 0;
    color: var(--muted);
    font-size: 0.76rem;
    font-weight: 600;
    line-height: 1.45;
    text-align: left;
}

.prc-vial-card__cta,
.prc-vial-card__meta {
    display: none !important;
}

/* ── Product vial stage (shop, homepage, PDP) ──────────────────────────── */

.product-vial-stage {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    width: 100%;
    box-sizing: border-box;
    background: linear-gradient(180deg, #e9eef5 0%, #f4f6fa 58%, #fbfcfd 100%);
    border: 0;
}

.product-vial-stage img,
.product-vial-stage .prc-vial-card__image,
.product-vial-stage .catalog-tile__image {
    width: auto !important;
    max-width: min(100%, 210px) !important;
    height: auto !important;
    max-height: clamp(170px, 26vw, 250px) !important;
    margin: 0 auto !important;
    padding: 0 !important;
    border: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    object-fit: contain !important;
    object-position: center bottom !important;
    filter: drop-shadow(0 12px 20px rgba(12, 18, 32, 0.15));
}

.product-vial-stage--tile {
    min-height: clamp(210px, 28vw, 280px);
    padding: clamp(0.85rem, 2vw, 1.35rem) clamp(0.65rem, 1.5vw, 1rem) 0;
    border-bottom: 1px solid rgba(12, 18, 32, 0.06);
}

.product-vial-stage--card {
    min-height: clamp(190px, 24vw, 240px);
    padding: clamp(0.85rem, 2vw, 1.25rem) clamp(0.65rem, 1.5vw, 1rem) 0;
}

.catalog-index--featured .prc-vial-card__link {
    display: flex !important;
    flex-direction: column !important;
    flex: 1 1 auto !important;
    border: 0 !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    background: #ffffff !important;
    transform: none !important;
    min-height: 0 !important;
}

.catalog-index--featured .prc-vial-card__image {
    max-width: min(100%, 180px) !important;
    max-height: 140px !important;
    filter: drop-shadow(0 10px 16px rgba(12, 18, 32, 0.13));
}

.catalog-tile-wrap a.woocommerce-LoopProduct-link {
    display: flex !important;
    flex-direction: column !important;
    height: 100%;
    padding: 0 !important;
}

.catalog-tile__image,
.catalog-tile-wrap img {
    width: auto !important;
    max-width: min(100%, 210px) !important;
    height: auto !important;
    max-height: clamp(170px, 26vw, 250px) !important;
    margin: 0 auto !important;
    padding: 0 !important;
    object-fit: contain !important;
    object-position: center bottom !important;
    background: transparent !important;
    filter: drop-shadow(0 12px 20px rgba(12, 18, 32, 0.15));
}

/* ── Editorial split ────────────────────────────────────────────────── */

.editorial-split {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 0.9fr);
    gap: 2.5rem;
    align-items: center;
    width: min(1280px, calc(100% - 48px));
    margin: 0 auto 4rem;
    padding: 3rem 0;
    border-top: 1px solid var(--rule);
}

.editorial-split h2 {
    margin: 0;
    font-size: clamp(1.75rem, 3vw, 2.75rem);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -0.02em;
}

.editorial-split p {
    max-width: 46ch;
    margin: 1rem 0 0;
    color: var(--muted);
    line-height: 1.65;
}

.text-link {
    display: inline-flex;
    margin-top: 1.25rem;
    color: var(--blue);
    font-weight: 800;
    font-size: 0.92rem;
    text-decoration: none;
}

.editorial-split__media {
    margin: 0;
    overflow: hidden;
    border-radius: 4px;
}

.editorial-split__media img {
    display: block;
    width: 100%;
    height: auto;
}

/* ── Catalog CTA ──────────────────────────────────────────────────────── */

.catalog-cta {
    width: min(1120px, calc(100% - 48px));
    margin: 0 auto 4rem;
    padding: clamp(1.75rem, 3vw, 2.25rem);
    background: var(--ink);
    color: #ffffff;
}

.catalog-cta--quiet {
    text-align: center;
    background: #ffffff;
    color: var(--text);
    border: 1px solid var(--rule);
}

.catalog-cta--quiet .catalog-cta__eyebrow {
    color: var(--muted);
}

.catalog-cta--quiet h2 {
    max-width: none;
    margin: 0 auto;
    font-size: clamp(1.15rem, 2vw, 1.5rem);
    font-weight: 800;
    line-height: 1.35;
    color: var(--text);
}

.catalog-cta--quiet .button-ghost {
    margin-top: 1.25rem;
}

.catalog-cta__eyebrow {
    margin: 0 0 0.75rem;
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.catalog-cta h2 {
    margin: 0;
    max-width: 16ch;
    font-size: clamp(1.75rem, 3.5vw, 3rem);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -0.02em;
}

.catalog-cta .button-primary {
    margin-top: 1.75rem;
    background: #ffffff;
    color: var(--ink);
    box-shadow: none;
}

/* ── Shop page ────────────────────────────────────────────────────────── */

.prc-shop-archive .commerce-shell {
    width: min(1280px, calc(100% - 48px));
    padding-top: 0;
}

.catalog-masthead {
    padding: clamp(2.5rem, 5vw, 4rem) 0 1.5rem;
    border-bottom: 1px solid var(--rule);
}

.catalog-masthead__ruo {
    margin: 0 0 0.65rem;
    color: var(--blue);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.catalog-masthead h1 {
    margin: 0;
    max-width: 14ch;
    font-size: clamp(2rem, 4.5vw, 3.5rem);
    font-weight: 800;
    line-height: 0.98;
    letter-spacing: -0.03em;
}

.catalog-masthead__lede {
    max-width: 52ch;
    margin: 1rem 0 0;
    color: var(--muted);
    font-size: 1rem;
    line-height: 1.6;
}

.catalog-stage {
    width: 100%;
}

.catalog-stage__main {
    width: 100%;
}

.prc-shop-archive .shop-rail,
.prc-shop-archive .shop-catalog-layout aside {
    display: none !important;
}

.shop-toolbar-premium {
    display: none !important;
}

/* ── Single product ───────────────────────────────────────────────────── */

.prc-single-product .woocommerce div.product {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    gap: clamp(2rem, 4vw, 3.5rem);
    align-items: start;
}

.prc-single-product .woocommerce div.product div.images {
    position: sticky;
    top: 108px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    min-height: clamp(380px, 44vw, 540px);
    margin: 0;
    padding: clamp(2rem, 4vw, 3rem) clamp(1.25rem, 3vw, 2rem) clamp(1.25rem, 2.5vw, 1.75rem);
    border: 0;
    border-radius: 8px;
    background: linear-gradient(180deg, #e9eef5 0%, #f4f6fa 52%, #fbfcfd 100%);
    box-shadow: 0 20px 56px -18px rgba(12, 18, 32, 0.16);
}

.prc-single-product .woocommerce div.product div.images img {
    width: auto !important;
    max-width: 100% !important;
    max-height: clamp(300px, 38vw, 460px) !important;
    height: auto !important;
    margin: 0 auto !important;
    padding: 0 !important;
    border: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
    object-fit: contain !important;
    object-position: center bottom !important;
    filter: drop-shadow(0 18px 28px rgba(12, 18, 32, 0.18));
}

.prc-single-product .product_title {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    letter-spacing: -0.02em;
    line-height: 1.05;
}

.prc-single-product .ruo-notice {
    background: #ffffff;
    border: 1px solid var(--rule);
    border-left: 3px solid var(--blue);
}

.prc-single-product .product-availability--waitlist {
    background: #ffffff;
    border: 1px solid var(--rule);
    color: var(--text);
}

.prc-single-product .product-specs-block--premium,
.prc-single-product .product-coa-block {
    border: 1px solid var(--rule);
    border-radius: 0;
    background: #ffffff;
    box-shadow: none;
}

.prc-single-product .product-coa-block {
    background: #fafbfd;
}

.prc-single-product .notify-me-block--premium {
    border-radius: 0;
}

/* ── Footer ───────────────────────────────────────────────────────────── */

.prc-editorial .site-footer {
    border-top: 1px solid var(--rule);
    background: #ffffff;
}

.prc-editorial .footer-inner {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 2rem 0;
}

.prc-editorial .footer-disclaimer {
    border-top: 1px solid var(--rule);
    padding-top: 1.25rem;
    margin-top: 0.25rem;
    max-width: 72ch;
}

/* ── Hide old template sections if any remain ─────────────────────────── */

.home-editorial .hero-section,
.home-editorial .category-section,
.home-editorial .visual-merch-section,
.home-editorial .trust-section,
.home-editorial .featured-products,
.home-editorial .workflow-section,
.home-editorial .checkout-section,
.home-editorial .proof-strip {
    display: none !important;
}

/* ── Responsive ───────────────────────────────────────────────────────── */

@media (max-width: 980px) {
    .home-editorial .masthead-hero {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .home-editorial .masthead-hero__copy {
        order: 1;
    }

    .home-editorial .masthead-hero__figure {
        order: 2;
        max-width: none;
        width: 100%;
        justify-self: stretch;
    }

    .home-editorial .masthead-hero__figure img {
        width: 100%;
        max-width: none;
    }

    .standards-band ul {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    /* Don't apply generic 2-col border hacks to compact testing grid */
    .standards-band--compact ul {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    /* compact testing grid uses gap borders — skip legacy standards-band li rules */
    .standards-band--testing .standards-band__inner ul li {
        border: 0 !important;
    }

    .standards-band:not(.standards-band--testing) li:nth-child(2) {
        border-right: 0;
    }

    .standards-band:not(.standards-band--testing) li:nth-child(n + 3) {
        border-top: 1px solid var(--rule);
    }

    .catalog-index__grid,
    .catalog-stage__main ul.products {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    }

    .catalog-index__grid .catalog-tile:nth-child(3n) .catalog-tile__link,
    .catalog-stage__main ul.products li:nth-child(3n) a.woocommerce-LoopProduct-link {
        border-right: 1px solid var(--rule) !important;
    }

    .catalog-index__grid .catalog-tile:nth-child(2n) .catalog-tile__link,
    .catalog-stage__main ul.products li:nth-child(2n) a.woocommerce-LoopProduct-link {
        border-right: 0 !important;
    }

    .prc-single-product .woocommerce div.product div.images {
        position: static;
    }
}

@media (max-width: 600px) {
    .standards-band:not(.standards-band--compact) ul {
        grid-template-columns: 1fr;
    }

    .standards-band:not(.standards-band--compact) li {
        border-right: 0;
        border-bottom: 1px solid var(--rule);
    }

    .catalog-index__grid,
    .catalog-stage__main ul.products {
        grid-template-columns: 1fr !important;
    }

    .catalog-tile__link,
    .catalog-tile-wrap a.woocommerce-LoopProduct-link {
        border-right: 0 !important;
    }

    .prc-editorial .header-inner {
        width: min(100% - 32px, 1280px);
    }
}

/* ── Testing panel + Why Delta Peps (editorial homepage) ─────────────── */

.standards-band--testing .standards-band__inner {
    width: min(1120px, calc(100% - 48px));
    margin: 0 auto;
    padding: 1.75rem 0;
}

.standards-band--testing .standards-band__inner ul {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1px;
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 0;
    list-style: none;
    background: var(--rule);
    border: 1px solid var(--rule);
    overflow: hidden;
}

.standards-band--testing .standards-band__inner ul li {
    margin: 0;
    padding: 0.85rem 1rem;
    background: #ffffff;
    color: var(--muted);
    font-size: 0.78rem;
    line-height: 1.45;
    border: 0 !important;
}

.standards-band--testing .standards-band__inner ul li strong {
    display: block;
    margin-bottom: 0.15rem;
    color: var(--text);
    font-size: 0.8rem;
}

.standards-band--compact .standards-band__intro {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    justify-content: space-between;
    gap: 0.75rem 1.5rem;
    margin-bottom: 1rem;
}

.standards-band--compact h2 {
    margin: 0;
    font-size: clamp(1.15rem, 2vw, 1.45rem);
    font-weight: 800;
    letter-spacing: -0.02em;
}

/* Homepage: no full-bleed white slab under testing grid */
.home-editorial .standards-band--testing {
    border: 0;
    background: transparent;
}

.home-editorial .standards-band--testing .standards-band__inner {
    padding-bottom: 1rem;
}

.home-editorial .editorial-banner {
    margin-top: 1rem;
    padding: 0 0 1.75rem;
    border: 0;
    background: transparent;
}

.editorial-banner {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(260px, 0.9fr);
    gap: 2rem;
    align-items: center;
    width: min(1120px, calc(100% - 48px));
    margin: 2.5rem auto;
    padding: 2rem 0;
    border-top: 1px solid var(--rule);
    border-bottom: 1px solid var(--rule);
}

.editorial-banner__media {
    margin: 0;
    overflow: hidden;
    border-radius: 4px;
    border: 1px solid var(--rule);
}

.editorial-banner__media img {
    display: block;
    width: 100%;
    height: auto;
}

.editorial-banner__eyebrow {
    margin: 0 0 0.5rem;
    color: var(--blue);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.editorial-banner__copy h2 {
    margin: 0;
    font-size: clamp(1.35rem, 2.4vw, 1.85rem);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.02em;
}

.editorial-banner__copy p {
    max-width: 42ch;
    margin: 0.85rem 0 0;
    color: var(--muted);
    font-size: 0.92rem;
    line-height: 1.6;
}

.why-delta-peps--lead {
    width: min(1120px, calc(100% - 48px));
    margin: 2rem auto 0;
    padding-top: 0;
    border-top: 0;
    box-sizing: border-box;
}

.why-delta-peps--lead .why-delta-peps__head {
    margin-bottom: 1rem;
}

.why-delta-peps--lead .why-delta-peps__head p {
    margin: 0.4rem 0 0;
    max-width: 48ch;
    color: var(--muted);
    font-size: 0.92rem;
    line-height: 1.55;
}

.why-delta-peps--lead .why-delta-peps__head h2 {
    margin: 0;
    font-size: clamp(1.35rem, 2.4vw, 1.85rem);
}

.why-delta-peps--lead .why-delta-peps__grid {
    overflow: hidden;
}

.why-delta-peps--lead .why-delta-peps__grid div {
    padding: 1.1rem 1.15rem;
}

.why-delta-peps--lead .why-delta-peps__grid strong {
    font-size: 0.88rem;
}

.why-delta-peps--lead .why-delta-peps__grid p {
    font-size: 0.8rem;
}

/* ── Operations strip (fulfillment + support) ─────────────────────────── */

.ops-strip {
    width: min(1120px, calc(100% - 48px));
    margin: 2.5rem auto 0;
    box-sizing: border-box;
}

.ops-strip__head h2 {
    margin: 0;
    font-size: clamp(1.25rem, 2.2vw, 1.65rem);
    font-weight: 800;
    letter-spacing: -0.02em;
}

.ops-strip__head p {
    margin: 0.45rem 0 0;
    max-width: 52ch;
    color: var(--muted);
    font-size: 0.9rem;
    line-height: 1.55;
}

.ops-strip__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1px;
    margin: 1.25rem 0 0;
    padding: 0;
    list-style: none;
    background: var(--rule);
    border: 1px solid var(--rule);
    overflow: hidden;
}

.ops-strip__grid li {
    margin: 0;
    padding: 1.1rem 1.15rem 1.15rem;
    background: #ffffff;
}

.ops-strip__grid strong {
    display: block;
    font-size: 0.88rem;
    font-weight: 800;
    line-height: 1.35;
    color: var(--text);
}

.ops-strip__grid p {
    margin: 0.55rem 0 0;
    color: var(--muted);
    font-size: 0.8rem;
    line-height: 1.55;
}

.ops-strip__link {
    display: inline-flex;
    margin-top: 0.75rem;
    color: var(--blue);
    font-size: 0.78rem;
    font-weight: 800;
    text-decoration: none;
}

.ops-strip__link:hover {
    text-decoration: underline;
}

.why-delta-peps {
    width: min(1120px, calc(100% - 48px));
    margin: 0 auto 2rem;
    padding-top: 0;
    border-top: 0;
    box-sizing: border-box;
}

.why-delta-peps__head h2 {
    margin: 0 0 1rem;
    font-size: clamp(1.35rem, 2.4vw, 1.85rem);
    font-weight: 800;
    letter-spacing: -0.02em;
}

.why-delta-peps__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0;
    border: 1px solid var(--rule);
    background: #ffffff;
}

.why-delta-peps__grid div {
    padding: 1.35rem 1.25rem;
    border-right: 1px solid var(--rule);
}

.why-delta-peps__grid div:last-child {
    border-right: 0;
}

.why-delta-peps__grid strong {
    display: block;
    font-size: 0.95rem;
    font-weight: 800;
    line-height: 1.35;
}

.why-delta-peps__grid p {
    margin: 0.65rem 0 0;
    color: var(--muted);
    font-size: 0.86rem;
    line-height: 1.55;
}

@media (max-width: 980px) {
    .standards-band--testing .standards-band__inner ul {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .ops-strip__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .why-delta-peps__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .why-delta-peps__grid div {
        border-right: 1px solid var(--rule);
        border-bottom: 1px solid var(--rule);
    }

    .why-delta-peps__grid div:nth-child(2n) {
        border-right: 0;
    }

    .why-delta-peps__grid div:nth-last-child(-n + 2) {
        border-bottom: 0;
    }

    .why-delta-peps__grid div:last-child {
        border-right: 0;
    }
}

@media (max-width: 980px) {
    .catalog-index--featured .catalog-index__grid {
        gap: 1.15rem !important;
    }
}

@media (max-width: 600px) {
    .catalog-index--featured .catalog-index__grid {
        gap: 1rem !important;
        padding-bottom: 0.5rem;
    }

    .catalog-index--featured .prc-vial-card:hover {
        transform: translateY(-4px) !important;
    }
}

@media (max-width: 600px) {
    .home-editorial .masthead-hero,
    .home-editorial .why-delta-peps,
    .home-editorial .why-delta-peps--lead,
    .home-editorial .ops-strip,
    .home-editorial .standards-band--testing .standards-band__inner,
    .home-editorial .editorial-banner,
    .home-editorial .catalog-index {
        width: min(1120px, calc(100% - 32px));
        margin-left: auto;
        margin-right: auto;
    }

    .home-compliance__inner {
        width: min(1120px, calc(100% - 32px));
    }

    .home-compliance {
        padding: 1.5rem 0 1.75rem;
    }

    /* Mobile-only: stack COA banner, full-width images, smaller type */
    .home-editorial .masthead-hero {
        gap: 1.35rem;
        padding: 1.75rem 0 1.25rem;
    }

    .home-editorial .masthead-hero__figure {
        width: 100vw;
        max-width: 100vw;
        margin-left: calc(50% - 50vw);
        margin-right: calc(50% - 50vw);
    }

    .home-editorial .masthead-hero__figure img {
        width: 100%;
        max-width: none;
        filter: none;
    }

    .home-editorial .masthead-hero--calm h1 {
        font-size: clamp(1.4rem, 6.8vw, 1.72rem);
        max-width: none;
        line-height: 1.12;
    }

    .home-editorial .masthead-hero--calm .masthead-hero__lede {
        font-size: 0.86rem;
        line-height: 1.55;
    }

    .home-editorial .editorial-banner {
        grid-template-columns: 1fr;
        gap: 1.25rem;
        margin-top: 0.75rem;
        padding: 0 0 1.25rem;
    }

    .home-editorial .editorial-banner__copy {
        order: 1;
    }

    .home-editorial .editorial-banner__media {
        order: 2;
    }

    .home-editorial .editorial-banner__media img {
        width: 100%;
    }

    .home-editorial .editorial-banner__copy h2 {
        font-size: 1.22rem;
        line-height: 1.2;
    }

    .home-editorial .editorial-banner__copy p {
        font-size: 0.84rem;
        line-height: 1.55;
    }

    .home-dna-tail {
        text-align: center;
        padding-bottom: 0.25rem;
    }

    .home-dna-tail__link {
        transform: none;
    }

    .home-dna-tail__link:hover {
        transform: translateY(-2px);
    }

    .standards-band--testing .standards-band__inner ul,
    .ops-strip__grid,
    .why-delta-peps__grid {
        grid-template-columns: 1fr;
    }

    .standards-band--testing .standards-band__inner ul li,
    .why-delta-peps__grid div {
        border: 0 !important;
    }
}
