/* =====================================================================
   Store — full product page (items/showcase.php)
   ---------------------------------------------------------------------
   A single scrolling product story in the shape of a manufacturer's
   product page (Huawei / Apple): a full-bleed hero that gives the product
   the whole screen, a highlight strip, a gallery, the overview, the
   specification table and the related products of the same category.

   The material is iOS 26 "liquid glass": translucent panels over a soft
   ground, hairline strokes, capsule controls and one system-blue accent.
   Nothing here is a new component — the buttons, badges and grid are the
   app's own, only re-dressed.

   Scoped to `.nz-ps26` (set on #page-content of items/showcase.php) so it
   cannot reach the store grid, the cart or the item modal.

   Dark mode is NIZU's body.color-1E202D theme, not prefers-color-scheme.
   ===================================================================== */

.nz-ps26 {
    /* geometry */
    --ps-radius-hero: 30px;
    --ps-radius-panel: 24px;
    --ps-radius-tile: 18px;
    --ps-radius-pill: 999px;
    --ps-section-gap: 26px;

    /* material */
    --ps-blur: saturate(180%) blur(24px);
    --ps-glass: rgba(255, 255, 255, 0.72);
    --ps-glass-soft: rgba(255, 255, 255, 0.55);
    --ps-stroke: rgba(255, 255, 255, 0.6);
    --ps-hairline: rgba(60, 60, 67, 0.12);
    --ps-ground-1: #ffffff;
    --ps-ground-2: #eef1f6;
    --ps-shadow: 0 18px 44px -28px rgba(30, 40, 70, 0.32);
    --ps-shadow-lift: 0 26px 60px -30px rgba(30, 40, 70, 0.42);

    /* ink */
    --ps-ink: #1d1d1f;
    --ps-ink-2: #43434a;
    --ps-ink-dim: #86868b;

    /* accent (Apple system blue), used sparingly */
    --ps-accent: #007aff;
    --ps-accent-strong: #0a6fe0;
    --ps-accent-soft: rgba(0, 122, 255, 0.1);
    --ps-good: #2fa84f;
    --ps-warn: #d9822b;
    /* the checkout fill. Deeper than the iOS system green on purpose: white
       15px semibold on #34c759 is only 2.2:1, this is 4.4:1 */
    --ps-checkout: #178a3f;
    --ps-checkout-strong: #127033;

    /* motion — the iOS spring */
    --ps-ease: cubic-bezier(0.32, 0.72, 0, 1);
    --ps-dur: 620ms;

    /* The app does not scroll the window: PerfectScrollbar drives
       `.main-scrollable-page`, so a sticky element is measured from THAT
       scrollport's top edge — which already sits below the fixed topbar.
       Hence a small inset here, not the topbar height. */
    --ps-bar-top: 10px;

    padding: 0 0 40px;
    color: var(--ps-ink);
    -webkit-font-smoothing: antialiased;
}

.nz-ps26 .nz-ps26-wrap {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 22px;
}

/* ------------------------------------------------------ scroll reveal --- */

.nz-ps26 .nz-ps26-reveal {
    opacity: 0;
    transform: translateY(26px);
    transition:
        opacity var(--ps-dur) var(--ps-ease),
        transform var(--ps-dur) var(--ps-ease);
    will-change: opacity, transform;
}

.nz-ps26 .nz-ps26-reveal.is-in {
    opacity: 1;
    transform: none;
}

/* a reveal never hides content from someone who cannot run the observer,
   and never animates for someone who asked the system not to */
@media (prefers-reduced-motion: reduce) {
    .nz-ps26 .nz-ps26-reveal {
        opacity: 1;
        transform: none;
        transition: none;
    }
}

/* --------------------------------------------------- sticky buy bar --- */

.nz-ps26 .nz-ps26-bar {
    position: sticky;
    top: var(--ps-bar-top);
    z-index: 40;
    margin: 0 auto 18px;
    max-width: 1180px;
    border-radius: var(--ps-radius-pill);
    background: var(--ps-glass);
    -webkit-backdrop-filter: var(--ps-blur);
    backdrop-filter: var(--ps-blur);
    border: 1px solid var(--ps-stroke);
    box-shadow: var(--ps-shadow);
    padding: 9px 14px;
    display: flex;
    align-items: center;
    gap: 14px;

    /* it only appears once the hero has scrolled past */
    opacity: 0;
    transform: translateY(-12px);
    pointer-events: none;
    transition:
        opacity 320ms var(--ps-ease),
        transform 320ms var(--ps-ease);
}

.nz-ps26 .nz-ps26-bar.is-on {
    opacity: 1;
    transform: none;
    pointer-events: auto;
}

.nz-ps26 .nz-ps26-bar-thumb {
    width: 40px;
    height: 40px;
    flex: 0 0 40px;
    border-radius: 12px;
    background-color: rgba(120, 120, 128, 0.08);
    background-size: cover;
    background-position: center;
    border: 1px solid var(--ps-hairline);
}

.nz-ps26 .nz-ps26-bar-text {
    min-width: 0;
    flex: 1 1 auto;
    line-height: 1.25;
}

.nz-ps26 .nz-ps26-bar-title {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: -0.01em;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.nz-ps26 .nz-ps26-bar-price {
    font-size: 12px;
    color: var(--ps-ink-dim);
}

/* the buy control of the bar — one of the pair is always .hide */
.nz-ps26 .nz-ps26-bar-buy {
    flex: 0 0 auto;
}

/* the in-page section jumps, the way a product page keeps its chapters
   one tap away */
.nz-ps26 .nz-ps26-bar-nav {
    display: flex;
    gap: 4px;
    flex: 0 0 auto;
}

.nz-ps26 .nz-ps26-bar-nav a {
    display: inline-block;
    padding: 6px 13px;
    border-radius: var(--ps-radius-pill);
    font-size: 13px;
    color: var(--ps-ink-2);
    text-decoration: none;
    transition: background 200ms var(--ps-ease), color 200ms var(--ps-ease);
}

.nz-ps26 .nz-ps26-bar-nav a:hover {
    background: rgba(120, 120, 128, 0.12);
    color: var(--ps-ink);
}

.nz-ps26 .nz-ps26-bar-nav a.is-current {
    background: var(--ps-accent-soft);
    color: var(--ps-accent);
    font-weight: 600;
}

/* ------------------------------------------------------------ buttons --- */

.nz-ps26 .nz-ps26-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: 0;
    border-radius: var(--ps-radius-pill);
    padding: 12px 26px;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: -0.01em;
    text-decoration: none;
    cursor: pointer;
    transition:
        transform 200ms var(--ps-ease),
        box-shadow 260ms var(--ps-ease),
        background 200ms var(--ps-ease);
}

.nz-ps26 .nz-ps26-btn-sm {
    padding: 8px 18px;
    font-size: 13px;
}

.nz-ps26 .nz-ps26-btn-primary,
.nz-ps26 .nz-ps26-btn-primary:hover,
.nz-ps26 .nz-ps26-btn-primary:focus {
    background: var(--ps-accent);
    color: #fff;
    box-shadow: 0 10px 26px -12px rgba(0, 122, 255, 0.7);
}

.nz-ps26 .nz-ps26-btn-primary:hover {
    background: var(--ps-accent-strong);
    transform: translateY(-1px);
    box-shadow: 0 16px 32px -14px rgba(0, 122, 255, 0.75);
}

/* Shown in place of "Add to cart" once the item is in the basket: the next
   step, not a dead grey acknowledgement. */
.nz-ps26 .nz-ps26-btn-checkout,
.nz-ps26 .nz-ps26-btn-checkout:hover,
.nz-ps26 .nz-ps26-btn-checkout:focus {
    background: var(--ps-checkout);
    color: #fff;
    box-shadow: 0 10px 26px -12px rgba(23, 138, 63, 0.7);
}

.nz-ps26 .nz-ps26-btn-checkout:hover {
    background: var(--ps-checkout-strong);
    transform: translateY(-1px);
    box-shadow: 0 16px 32px -14px rgba(23, 138, 63, 0.75);
}

/* it does not just blink into place — it arrives */
.nz-ps26 .nz-ps26-btn-checkout.is-arriving {
    animation: nz-ps26-arrive 420ms var(--ps-ease);
}

@keyframes nz-ps26-arrive {
    0% {
        opacity: 0;
        transform: scale(0.9);
    }

    60% {
        transform: scale(1.03);
    }

    100% {
        opacity: 1;
        transform: none;
    }
}

@media (prefers-reduced-motion: reduce) {
    .nz-ps26 .nz-ps26-btn-checkout.is-arriving {
        animation: none;
    }
}

.nz-ps26 .nz-ps26-btn-quiet,
.nz-ps26 .nz-ps26-btn-quiet:hover,
.nz-ps26 .nz-ps26-btn-quiet:focus {
    background: rgba(120, 120, 128, 0.12);
    color: var(--ps-ink);
}

.nz-ps26 .nz-ps26-btn-quiet:hover {
    background: rgba(120, 120, 128, 0.2);
}

.nz-ps26 .nz-ps26-btn[disabled],
.nz-ps26 .nz-ps26-btn.is-disabled {
    background: rgba(120, 120, 128, 0.14);
    color: var(--ps-ink-dim);
    box-shadow: none;
    cursor: default;
    pointer-events: none;
}

/* ---------------------------------------------------------------- hero --- */

.nz-ps26 .nz-ps26-hero {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    border-radius: var(--ps-radius-hero);
    border: 1px solid var(--ps-hairline);
    background: linear-gradient(180deg, var(--ps-ground-1) 0%, var(--ps-ground-2) 100%);
    box-shadow: var(--ps-shadow-lift);
    margin-bottom: var(--ps-section-gap);
}

.nz-ps26 .nz-ps26-hero-glow {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background:
        radial-gradient(56% 74% at 82% -10%, rgba(0, 122, 255, 0.09), transparent 62%),
        radial-gradient(48% 66% at 6% 108%, rgba(0, 0, 0, 0.05), transparent 60%);
}

.nz-ps26 .nz-ps26-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.55), transparent 20%);
}

.nz-ps26 .nz-ps26-hero-inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    align-items: center;
    gap: 40px;
    padding: 54px 52px 46px;
    min-height: 460px;
}

.nz-ps26 .nz-ps26-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--ps-accent);
    margin-bottom: 14px;
}

.nz-ps26 .nz-ps26-hero h1 {
    margin: 0 0 10px;
    font-size: clamp(34px, 4.6vw, 60px);
    line-height: 1.04;
    font-weight: 700;
    letter-spacing: -0.035em;
    color: var(--ps-ink);
}

.nz-ps26 .nz-ps26-hero-sub {
    font-size: clamp(15px, 1.35vw, 19px);
    line-height: 1.5;
    color: var(--ps-ink-2);
    margin-bottom: 22px;
    max-width: 46ch;
}

.nz-ps26 .nz-ps26-price {
    display: flex;
    align-items: baseline;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 6px;
}

.nz-ps26 .nz-ps26-price-main {
    font-size: clamp(28px, 3.1vw, 40px);
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 1.1;
}

.nz-ps26 .nz-ps26-price-unit,
.nz-ps26 .nz-ps26-price-alt {
    font-size: 15px;
    color: var(--ps-ink-dim);
}

.nz-ps26 .nz-ps26-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 24px;
}

/* the availability / taxable pills */
.nz-ps26 .nz-ps26-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 18px;
}

.nz-ps26 .nz-ps26-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 13px;
    border-radius: var(--ps-radius-pill);
    font-size: 12.5px;
    font-weight: 600;
    background: rgba(120, 120, 128, 0.12);
    color: var(--ps-ink-2);
    border: 1px solid transparent;
}

.nz-ps26 .nz-ps26-pill-good {
    background: rgba(47, 168, 79, 0.12);
    color: var(--ps-good);
}

.nz-ps26 .nz-ps26-pill-warn {
    background: rgba(217, 130, 43, 0.14);
    color: var(--ps-warn);
}

/* the product itself, floating over a soft ground shadow */
.nz-ps26 .nz-ps26-hero-stage {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 320px;
}

.nz-ps26 .nz-ps26-hero-stage::before {
    content: "";
    position: absolute;
    z-index: 0;
    left: 50%;
    bottom: 6%;
    width: 62%;
    height: 26px;
    transform: translateX(-50%);
    border-radius: 50%;
    background: rgba(30, 40, 70, 0.22);
    filter: blur(20px);
}

.nz-ps26 .nz-ps26-hero-stage img {
    position: relative;
    z-index: 1;
    max-width: 100%;
    max-height: 400px;
    object-fit: contain;
    border-radius: 20px;
    transition: transform 700ms var(--ps-ease);
}

.nz-ps26 .nz-ps26-hero-stage:hover img {
    transform: translateY(-6px) scale(1.02);
}

/* the "keep scrolling" cue */
.nz-ps26 .nz-ps26-scroll-cue {
    position: absolute;
    z-index: 3;
    left: 50%;
    bottom: 16px;
    transform: translateX(-50%);
    font-size: 12px;
    color: var(--ps-ink-dim);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3px;
    animation: nz-ps26-bob 2.4s ease-in-out infinite;
}

@keyframes nz-ps26-bob {

    0%,
    100% {
        transform: translate(-50%, 0);
    }

    50% {
        transform: translate(-50%, 6px);
    }
}

@media (prefers-reduced-motion: reduce) {
    .nz-ps26 .nz-ps26-scroll-cue {
        animation: none;
    }
}

/* ---------------------------------------------------------- highlights --- */

.nz-ps26 .nz-ps26-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
    gap: 14px;
    margin-bottom: var(--ps-section-gap);
}

.nz-ps26 .nz-ps26-highlight {
    border-radius: var(--ps-radius-tile);
    background: var(--ps-glass-soft);
    -webkit-backdrop-filter: var(--ps-blur);
    backdrop-filter: var(--ps-blur);
    border: 1px solid var(--ps-hairline);
    box-shadow: var(--ps-shadow);
    padding: 20px 22px;
}

.nz-ps26 .nz-ps26-highlight-value {
    font-size: 26px;
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 1.15;
    word-break: break-word;
}

.nz-ps26 .nz-ps26-highlight-label {
    margin-top: 4px;
    font-size: 12.5px;
    color: var(--ps-ink-dim);
}

/* ------------------------------------------------------------ sections --- */

.nz-ps26 .nz-ps26-section {
    position: relative;
    border-radius: var(--ps-radius-panel);
    background: var(--ps-glass);
    -webkit-backdrop-filter: var(--ps-blur);
    backdrop-filter: var(--ps-blur);
    border: 1px solid var(--ps-hairline);
    box-shadow: var(--ps-shadow);
    padding: 44px 46px;
    margin-bottom: var(--ps-section-gap);
    /* the sticky bar must not land on top of a section heading */
    scroll-margin-top: 96px;
}

.nz-ps26 .nz-ps26-section h2 {
    margin: 0 0 6px;
    font-size: clamp(24px, 2.6vw, 34px);
    font-weight: 700;
    letter-spacing: -0.03em;
    color: var(--ps-ink);
}

.nz-ps26 .nz-ps26-section-hint {
    margin: 0 0 28px;
    font-size: 14.5px;
    color: var(--ps-ink-dim);
}

/* ------------------------------------------------------------- gallery --- */

.nz-ps26 .nz-ps26-stage {
    position: relative;
    border-radius: var(--ps-radius-tile);
    background: linear-gradient(180deg, #ffffff 0%, #f2f4f8 100%);
    border: 1px solid var(--ps-hairline);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 26px;
    min-height: 380px;
    overflow: hidden;
}

.nz-ps26 .nz-ps26-stage img {
    max-width: 100%;
    max-height: 420px;
    object-fit: contain;
    border-radius: 14px;
    transition: opacity 300ms var(--ps-ease);
}

.nz-ps26 .nz-ps26-thumbs {
    display: flex;
    gap: 10px;
    margin-top: 16px;
    overflow-x: auto;
    padding-bottom: 6px;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.nz-ps26 .nz-ps26-thumbs::-webkit-scrollbar {
    display: none;
}

.nz-ps26 .nz-ps26-thumb {
    flex: 0 0 auto;
    width: 78px;
    height: 78px;
    border-radius: 14px;
    background-color: rgba(120, 120, 128, 0.08);
    background-size: cover;
    background-position: center;
    border: 2px solid transparent;
    box-shadow: inset 0 0 0 1px var(--ps-hairline);
    cursor: pointer;
    transition: border-color 200ms var(--ps-ease), transform 200ms var(--ps-ease);
}

.nz-ps26 .nz-ps26-thumb:hover {
    transform: translateY(-2px);
}

.nz-ps26 .nz-ps26-thumb.is-current {
    border-color: var(--ps-accent);
}

/* ------------------------------------------------------------ overview --- */

.nz-ps26 .nz-ps26-prose {
    font-size: 17px;
    line-height: 1.72;
    color: var(--ps-ink-2);
    max-width: 74ch;
}

.nz-ps26 .nz-ps26-prose img {
    max-width: 100%;
    height: auto;
    border-radius: 14px;
    margin: 14px 0;
}

.nz-ps26 .nz-ps26-prose a {
    color: var(--ps-accent);
}

/* -------------------------------------------------------------- specs --- */

.nz-ps26 .nz-ps26-specs {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 0 40px;
}

.nz-ps26 .nz-ps26-spec {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 20px;
    padding: 15px 0;
    border-bottom: 1px solid var(--ps-hairline);
}

.nz-ps26 .nz-ps26-spec-label {
    font-size: 14.5px;
    color: var(--ps-ink-dim);
    flex: 0 0 auto;
}

.nz-ps26 .nz-ps26-spec-value {
    font-size: 15.5px;
    font-weight: 600;
    text-align: right;
    word-break: break-word;
}

/* ---------------------------------------------------------- related --- */

.nz-ps26 .nz-ps26-related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
    gap: 18px;
}

.nz-ps26 .nz-ps26-related-card {
    display: flex;
    flex-direction: column;
    border-radius: var(--ps-radius-tile);
    background: var(--ps-glass-soft);
    -webkit-backdrop-filter: var(--ps-blur);
    backdrop-filter: var(--ps-blur);
    border: 1px solid var(--ps-hairline);
    box-shadow: var(--ps-shadow);
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    transition: transform 260ms var(--ps-ease), box-shadow 260ms var(--ps-ease);
}

.nz-ps26 a.nz-ps26-related-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--ps-shadow-lift);
    color: inherit;
    text-decoration: none;
}

.nz-ps26 .nz-ps26-related-image {
    height: 168px;
    background-color: rgba(120, 120, 128, 0.08);
    background-size: cover;
    background-position: center;
    border-bottom: 1px solid var(--ps-hairline);
}

.nz-ps26 .nz-ps26-related-body {
    padding: 15px 17px 17px;
    display: flex;
    flex-direction: column;
    gap: 3px;
    flex: 1 1 auto;
}

.nz-ps26 .nz-ps26-related-title {
    font-size: 15px;
    font-weight: 600;
    letter-spacing: -0.01em;
    line-height: 1.35;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.nz-ps26 .nz-ps26-related-price {
    font-size: 14px;
    color: var(--ps-ink-dim);
    margin-top: auto;
    padding-top: 8px;
}

.nz-ps26 .nz-ps26-empty {
    padding: 34px 0;
    text-align: center;
    color: var(--ps-ink-dim);
    font-size: 15px;
}

/* ================================================================ DARK ===
   NIZU dark = body.color-1E202D (theme stylesheet), not html.dark. */

body.color-1E202D .nz-ps26 {
    --ps-ink: #f5f5f7;
    --ps-ink-2: #d1d1d6;
    --ps-ink-dim: #8e8e93;
    --ps-accent: #0a84ff;
    --ps-accent-strong: #409cff;
    --ps-accent-soft: rgba(10, 132, 255, 0.16);
    --ps-good: #4cd071;
    --ps-warn: #f0a54c;
    --ps-hairline: rgba(255, 255, 255, 0.1);
    --ps-stroke: rgba(255, 255, 255, 0.12);
    --ps-glass: rgba(255, 255, 255, 0.07);
    --ps-glass-soft: rgba(255, 255, 255, 0.05);
    --ps-shadow: 0 20px 44px -30px rgba(0, 0, 0, 0.8);
    --ps-shadow-lift: 0 28px 62px -32px rgba(0, 0, 0, 0.88);
}

body.color-1E202D .nz-ps26 .nz-ps26-hero {
    background: linear-gradient(180deg, #2c2e39 0%, #23242e 100%);
    border-color: rgba(255, 255, 255, 0.09);
}

body.color-1E202D .nz-ps26 .nz-ps26-hero::after {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), transparent 20%);
}

body.color-1E202D .nz-ps26 .nz-ps26-hero-glow {
    background:
        radial-gradient(56% 74% at 82% -10%, rgba(10, 132, 255, 0.16), transparent 62%),
        radial-gradient(48% 66% at 6% 108%, rgba(0, 0, 0, 0.34), transparent 60%);
}

body.color-1E202D .nz-ps26 .nz-ps26-hero-stage::before {
    background: rgba(0, 0, 0, 0.55);
}

body.color-1E202D .nz-ps26 .nz-ps26-bar {
    background: rgba(44, 46, 57, 0.82);
}

body.color-1E202D .nz-ps26 .nz-ps26-stage {
    background: linear-gradient(180deg, #2b2d37 0%, #23242e 100%);
}

body.color-1E202D .nz-ps26 .nz-ps26-btn-quiet,
body.color-1E202D .nz-ps26 .nz-ps26-btn-quiet:hover,
body.color-1E202D .nz-ps26 .nz-ps26-btn-quiet:focus {
    background: rgba(255, 255, 255, 0.12);
    color: var(--ps-ink);
}

body.color-1E202D .nz-ps26 .nz-ps26-btn-quiet:hover {
    background: rgba(255, 255, 255, 0.18);
}

body.color-1E202D .nz-ps26 .nz-ps26-btn[disabled],
body.color-1E202D .nz-ps26 .nz-ps26-btn.is-disabled {
    background: rgba(255, 255, 255, 0.1);
    color: var(--ps-ink-dim);
}

/* the green keeps its light-mode value: it is already dark enough to carry
   white text, and lifting it would drop below 4.5:1 */
body.color-1E202D .nz-ps26 .nz-ps26-btn-checkout {
    box-shadow: 0 12px 28px -14px rgba(0, 0, 0, 0.8);
}

body.color-1E202D .nz-ps26 .nz-ps26-bar-nav a:hover {
    background: rgba(255, 255, 255, 0.12);
}

body.color-1E202D .nz-ps26 .nz-ps26-pill {
    background: rgba(255, 255, 255, 0.1);
    color: var(--ps-ink-2);
}

body.color-1E202D .nz-ps26 .nz-ps26-pill-good {
    background: rgba(76, 208, 113, 0.16);
    color: var(--ps-good);
}

body.color-1E202D .nz-ps26 .nz-ps26-pill-warn {
    background: rgba(240, 165, 76, 0.18);
    color: var(--ps-warn);
}

body.color-1E202D .nz-ps26 .nz-ps26-bar-thumb,
body.color-1E202D .nz-ps26 .nz-ps26-thumb,
body.color-1E202D .nz-ps26 .nz-ps26-related-image {
    background-color: rgba(255, 255, 255, 0.07);
}

/* ========================================================== RESPONSIVE === */

@media (max-width: 991px) {
    .nz-ps26 .nz-ps26-hero-inner {
        grid-template-columns: 1fr;
        gap: 26px;
        padding: 36px 26px 40px;
        min-height: 0;
    }

    /* the product leads on a narrow screen, the way it does on a phone */
    .nz-ps26 .nz-ps26-hero-stage {
        order: -1;
        min-height: 0;
    }

    .nz-ps26 .nz-ps26-hero-stage img {
        max-height: 280px;
    }

    .nz-ps26 .nz-ps26-section {
        padding: 32px 24px;
    }

    .nz-ps26 .nz-ps26-scroll-cue {
        display: none;
    }
}

@media (max-width: 767px) {
    .nz-ps26 .nz-ps26-wrap {
        padding: 0 14px;
    }

    .nz-ps26 .nz-ps26-bar-nav {
        display: none;
    }

    .nz-ps26 .nz-ps26-hero-actions .nz-ps26-btn {
        flex: 1 1 100%;
    }

    .nz-ps26 .nz-ps26-spec {
        flex-direction: column;
        align-items: flex-start;
        gap: 2px;
    }

    .nz-ps26 .nz-ps26-spec-value {
        text-align: left;
    }
}
