/* =============================================================================
   NexArt — Product Detail Page (PDP)
   Scope: body.nexart-product-active + .nx-pdp
   ============================================================================= */

/* ── 1. HIDE OCEANWP / SHOW FULL-WIDTH ─────────────────────────────────── */
body.nexart-product-active #site-header,
body.nexart-product-active .site-header,
body.nexart-product-active #top-bar-wrap,
body.nexart-product-active #top-bar,
body.nexart-product-active .page-header,
body.nexart-product-active .entry-header,
body.nexart-product-active header.page-header,
body.nexart-product-active .page-header-inner,
body.nexart-product-active #breadcrumbs,
body.nexart-product-active .oceanwp-breadcrumbs,
body.nexart-product-active #footer-widgets,
body.nexart-product-active .site-footer,
body.nexart-product-active #footer,
body.nexart-product-active footer.oceanwp-footer,
body.nexart-product-active #sidebar,
body.nexart-product-active aside#secondary,
body.nexart-product-active .widget-area,
body.nexart-product-active .sidebar-container { display: none !important; }

body.nexart-product-active .content-area,
body.nexart-product-active #primary {
    width: 100% !important;
    float: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

body.nexart-product-active,
body.nexart-product-active #page,
body.nexart-product-active .site,
body.nexart-product-active #content,
body.nexart-product-active #primary {
    background: var(--nx-bg) !important;
    padding: 0 !important;
    margin: 0 !important;
}

body.nexart-product-active .entry-content,
body.nexart-product-active .content-area,
body.nexart-product-active .site-main,
body.nexart-product-active article,
body.nexart-product-active #content-wrap,
body.nexart-product-active .content-wrap {
    padding: 0 !important;
    margin: 0 !important;
    max-width: 100% !important;
    background: transparent !important;
    width: 100% !important;
}

body.nexart-product-active #outer-wrap,
body.nexart-product-active.oceanwp-sticky-header #outer-wrap {
    padding-top: 0 !important;
}

/* ── 2. CONTAINER ──────────────────────────────────────────────────────── */
.nx-pdp-container {
    max-width: var(--nx-max);
    margin: 0 auto;
    padding: 0 28px;
}

/* ── 3. ARTICLE BASE ───────────────────────────────────────────────────── */
.nx-pdp {
    background: var(--nx-bg);
    color: var(--nx-text);
    font-family: var(--nx-font);
    min-height: 100vh;
    padding-top: var(--nx-header-h);
}

/* ── 4. BREADCRUMB ─────────────────────────────────────────────────────── */
.nx-pdp-breadcrumb-bar {
    background: var(--nx-bg);
    border-bottom: 1px solid var(--nx-border);
    padding: 14px 0;
}

.nx-pdp-breadcrumb {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: var(--nx-text-muted);
    flex-wrap: wrap;
}

.nx-pdp-breadcrumb a {
    color: var(--nx-text-muted);
    text-decoration: none;
    transition: color var(--nx-transition);
}

.nx-pdp-breadcrumb a:hover { color: var(--nx-gold); }

.nx-pdp-bc-sep {
    color: var(--nx-text-dim);
    font-size: 11px;
}

.nx-pdp-bc-current {
    color: var(--nx-text-soft);
    font-weight: 500;
}

/* ── 5. HERO ───────────────────────────────────────────────────────────── */
.nx-pdp-hero {
    background: var(--nx-bg);
    padding: 40px 0 56px;
}

.nx-pdp-hero-inner {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
    gap: 56px;
    align-items: start;
}

/* ── 6. GALLERY LEFT COL ───────────────────────────────────────────────── */
.nx-pdp-gallery { display: flex; flex-direction: column; gap: 16px; min-width: 0; width: 100%; }

/* Main image wrapper */
.nx-pdp-gallery-main {
    position: relative;
    width: 100%;
    background: var(--nx-bg-card);
    border: 1px solid var(--nx-border-md);
    border-radius: var(--nx-radius-lg);
    overflow: hidden;
    aspect-ratio: 4 / 3;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nx-pdp-main-img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    display: block;
    transition: transform 0.4s ease;
}

.nx-pdp-gallery-main:hover .nx-pdp-main-img { transform: scale(1.02); }

.nx-pdp-img-placeholder {
    width: 100%;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--nx-text-muted);
    font-size: 14px;
    background: var(--nx-bg-card-2);
}

/* Badge */
.nx-pdp-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    z-index: 2;
    background: var(--nx-gold);
    color: #000;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 5px 12px;
    border-radius: 4px;
}

/* Wishlist button */
.nx-pdp-wishlist-btn {
    position: absolute;
    top: 16px;
    right: 16px;
    z-index: 3;
    width: 40px;
    height: 40px;
    background: rgba(8,8,8,0.72);
    border: 1px solid var(--nx-border-md);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background var(--nx-transition), border-color var(--nx-transition);
    padding: 0;
}

.nx-pdp-wishlist-btn:hover,
.nx-pdp-wishlist-btn.is-active {
    background: rgba(217,164,65,0.15);
    border-color: var(--nx-border-gold);
}

.nx-pdp-wishlist-btn svg {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: var(--nx-text-soft);
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: fill var(--nx-transition), stroke var(--nx-transition);
}

.nx-pdp-wishlist-btn.is-active svg,
.nx-pdp-wishlist-btn:hover svg {
    fill: var(--nx-gold);
    stroke: var(--nx-gold);
}

/* Gallery arrows */
.nx-pdp-gallery-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
    background: rgba(8,8,8,0.72);
    border: 1px solid var(--nx-border-md);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background var(--nx-transition), border-color var(--nx-transition);
    color: var(--nx-text);
    padding: 0;
}

.nx-pdp-gallery-arrow:hover {
    background: rgba(217,164,65,0.15);
    border-color: var(--nx-border-gold);
}

.nx-pdp-gallery-arrow svg {
    width: 18px;
    height: 18px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.nx-gallery-prev { left: 12px; }
.nx-gallery-next { right: 12px; }

/* Thumbnails */
.nx-pdp-thumbs {
    display: flex;
    gap: 10px;
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 4px;
    scrollbar-width: thin;
    scrollbar-color: var(--nx-border-md) transparent;
}

.nx-pdp-thumbs::-webkit-scrollbar { height: 3px; }
.nx-pdp-thumbs::-webkit-scrollbar-track { background: transparent; }
.nx-pdp-thumbs::-webkit-scrollbar-thumb { background: var(--nx-border-md); border-radius: 2px; }

.nx-pdp-thumb {
    flex-shrink: 0;
    width: 84px;
    height: 72px;
    border: 2px solid var(--nx-border);
    border-radius: var(--nx-radius);
    overflow: hidden;
    cursor: pointer;
    background: var(--nx-bg-card);
    padding: 0;
    transition: border-color var(--nx-transition), transform var(--nx-transition);
}

.nx-pdp-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.nx-pdp-thumb:hover { border-color: var(--nx-border-bright); transform: translateY(-2px); }
.nx-pdp-thumb.is-active { border-color: var(--nx-gold); }

/* ── 7. PRODUCT INFO RIGHT COL ─────────────────────────────────────────── */
.nx-pdp-info {
    display: flex;
    flex-direction: column;
    gap: 0;
    min-width: 0;
}

/* Category eyebrow */
.nx-pdp-eyebrow {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--nx-gold);
    text-decoration: none;
    margin-bottom: 10px;
}

.nx-pdp-eyebrow:hover { color: var(--nx-gold-light); }

/* Title */
.nx-pdp-title {
    font-size: clamp(28px, 3.5vw, 42px);
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -0.02em;
    color: var(--nx-text);
    margin: 0 0 14px;
}

/* Rating */
.nx-pdp-rating-row {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
}

.nx-pdp-stars {
    display: flex;
    gap: 2px;
}

.nx-star {
    width: 16px;
    height: 16px;
}

.nx-star.star-full { fill: var(--nx-gold); stroke: var(--nx-gold); }
.nx-star.star-half { fill: var(--nx-gold); stroke: var(--nx-gold); opacity: 0.6; }
.nx-star.star-empty { fill: none; stroke: var(--nx-text-dim); }

.nx-pdp-rating-text {
    font-size: 13px;
    color: var(--nx-text-muted);
}

.nx-pdp-brand-proof {
    display: flex;
    flex-direction: column;
    gap: 3px;
    margin: -6px 0 16px;
    padding: 10px 12px;
    background: rgba(217,164,65,0.06);
    border: 1px solid rgba(217,164,65,0.16);
    border-radius: var(--nx-radius);
}

.nx-pdp-brand-proof strong {
    font-size: 12px;
    font-weight: 700;
    color: var(--nx-text);
}

.nx-pdp-brand-proof span {
    font-size: 12px;
    line-height: 1.45;
    color: var(--nx-text-muted);
}

/* Short description */
.nx-pdp-short-desc {
    font-size: 14px;
    line-height: 1.65;
    color: var(--nx-text-soft);
    margin-bottom: 20px;
}

.nx-pdp-short-desc p { margin: 0; }

/* USPs */
.nx-pdp-usps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin-bottom: 24px;
    padding: 16px;
    background: var(--nx-bg-card);
    border: 1px solid var(--nx-border);
    border-radius: var(--nx-radius);
}

.nx-pdp-usp {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 6px;
}

.nx-pdp-usp svg {
    width: 22px;
    height: 22px;
    stroke: var(--nx-gold);
    fill: none;
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
    flex-shrink: 0;
}

.nx-pdp-usp span {
    font-size: 11px;
    font-weight: 600;
    color: var(--nx-text-soft);
    line-height: 1.3;
}

/* Price */
.nx-pdp-price-block {
    margin-bottom: 24px;
}

.nx-pdp-price {
    font-size: 32px;
    font-weight: 800;
    color: var(--nx-gold);
    line-height: 1;
    margin-bottom: 4px;
}

.nx-pdp-price .price,
.nx-pdp-price ins,
.nx-pdp-price del { display: inline; }
.nx-pdp-price ins { text-decoration: none; }
.nx-pdp-price del { color: var(--nx-text-dim); font-size: 20px; margin-right: 8px; }

/* Override WooCommerce / OceanWP price color */
.nx-pdp-price .woocommerce-Price-amount,
.nx-pdp-price .woocommerce-Price-amount bdi,
.nx-pdp-price .amount,
.nx-pdp-price bdi { color: var(--nx-gold) !important; }
.nx-pdp-price del .woocommerce-Price-amount,
.nx-pdp-price del bdi { color: var(--nx-text-dim) !important; font-size: 20px; }
.nx-pdp-price ins .woocommerce-Price-amount,
.nx-pdp-price ins bdi { color: var(--nx-gold) !important; }

.nx-pdp-tax-note {
    font-size: 12px;
    color: var(--nx-text-muted);
}

/* ── Shipping estimate (under ATC) ─────────────────────────────────────── */
.nx-pdp-ship-estimate {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    background: rgba(217,164,65,0.05);
    border: 1px solid rgba(217,164,65,0.14);
    border-radius: var(--nx-radius);
    margin-bottom: 16px;
    font-size: 13px;
    color: rgba(245,245,245,0.7);
    line-height: 1.4;
}

.nx-pdp-ship-estimate svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    color: var(--nx-gold);
}

.nx-pdp-ship-estimate strong { color: var(--nx-text); font-weight: 600; }

/* ── 8. WOOCOMMERCE FORM ────────────────────────────────────────────────── */
.nx-pdp-form-wrap { margin-bottom: 20px; }

.nx-pdp-cta-reassurance {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: -8px 0 14px;
}

.nx-pdp-cta-reassurance span {
    position: relative;
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 5px 10px 5px 24px;
    background: rgba(255,255,255,0.035);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 999px;
    font-size: 11px;
    font-weight: 600;
    color: var(--nx-text-soft);
    line-height: 1.2;
}

.nx-pdp-cta-reassurance span::before {
    content: "";
    position: absolute;
    left: 10px;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--nx-gold);
    box-shadow: 0 0 0 3px rgba(217,164,65,0.12);
}

/* Force block layout on the form — prevent OceanWP flex override */
body.nexart-product-active .variations_form,
body.nexart-product-active form.cart {
    display: block !important;
    width: 100% !important;
}

/* Hide WooCommerce default variation table layout */
body.nexart-product-active .variations_form table.variations {
    display: none !important;
}

/* Variation wrap: stack price above qty+button */
body.nexart-product-active .single_variation_wrap {
    display: block !important;
    width: 100%;
}

/* Variation price card */
body.nexart-product-active .single_variation_wrap .woocommerce-variation {
    display: block !important;
    width: 100%;
    box-sizing: border-box;
    margin: 0 0 16px;
    background: var(--nx-bg-card);
    border: 1px solid var(--nx-border-gold);
    border-radius: var(--nx-radius);
    padding: 12px 16px;
}

body.nexart-product-active .single_variation_wrap .woocommerce-variation.nx-is-empty-variation {
    display: none !important;
}

body.nexart-product-active .single_variation_wrap .woocommerce-variation-price .price,
body.nexart-product-active .single_variation_wrap .woocommerce-variation-price .woocommerce-Price-amount,
body.nexart-product-active .single_variation_wrap .woocommerce-variation-price bdi {
    font-size: 22px;
    font-weight: 700;
    color: var(--nx-gold) !important;
}

/* Qty + Add to Cart row */
body.nexart-product-active .woocommerce-variation-add-to-cart {
    display: flex !important;
    gap: 12px;
    align-items: center;
    flex-wrap: wrap;
    width: 100%;
    box-sizing: border-box;
}

/* Quantity wrapper — JS inserts custom +/- around the input */
body.nexart-product-active .quantity {
    display: flex;
    align-items: center;
    gap: 0;
    border: 1px solid var(--nx-border-md);
    border-radius: var(--nx-radius);
    overflow: hidden;
    background: var(--nx-bg-card);
    flex-shrink: 0;
}

/* Hide OceanWP/theme native quantity buttons — we use our own */
body.nexart-product-active .nx-pdp-form-wrap .quantity input.plus,
body.nexart-product-active .nx-pdp-form-wrap .quantity input.minus,
body.nexart-product-active .nx-pdp-form-wrap .quantity button.plus,
body.nexart-product-active .nx-pdp-form-wrap .quantity button.minus { display: none !important; }

body.nexart-product-active .nx-qty-btn {
    width: 38px;
    height: 48px;
    background: transparent;
    border: none;
    color: var(--nx-text);
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background var(--nx-transition), color var(--nx-transition);
    flex-shrink: 0;
    padding: 0;
}

body.nexart-product-active .nx-qty-btn:hover {
    background: var(--nx-gold-glow);
    color: var(--nx-gold);
}

body.nexart-product-active .qty.input-text {
    width: 44px !important;
    height: 48px;
    border: none !important;
    border-left: 1px solid var(--nx-border) !important;
    border-right: 1px solid var(--nx-border) !important;
    background: transparent !important;
    color: var(--nx-text) !important;
    font-size: 15px !important;
    font-weight: 600 !important;
    text-align: center !important;
    -moz-appearance: textfield;
    padding: 0 !important;
}

body.nexart-product-active .qty.input-text::-webkit-outer-spin-button,
body.nexart-product-active .qty.input-text::-webkit-inner-spin-button { -webkit-appearance: none; }

/* Add to Cart button */
body.nexart-product-active .single_add_to_cart_button,
body.nexart-product-active .single_add_to_cart_button.button {
    flex: 1;
    min-width: 0;
    max-width: 100%;
    height: 50px;
    background: var(--nx-gold) !important;
    color: #000 !important;
    border: none !important;
    border-radius: var(--nx-radius) !important;
    font-size: 14px !important;
    font-weight: 700 !important;
    letter-spacing: 0.04em !important;
    text-transform: uppercase !important;
    cursor: pointer !important;
    transition: background var(--nx-transition), transform 0.12s ease !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 8px !important;
    white-space: nowrap !important;
    text-decoration: none !important;
    box-shadow: none !important;
    outline: none !important;
}

body.nexart-product-active .single_add_to_cart_button:hover {
    background: var(--nx-gold-light) !important;
    transform: translateY(-1px) !important;
}

body.nexart-product-active .single_add_to_cart_button.loading { opacity: 0.7; }
body.nexart-product-active .single_add_to_cart_button.added { background: #2d7d46 !important; color: #fff !important; }

/* Reset WC button/link defaults */
body.nexart-product-active .variations_form .reset_variations { display: none !important; }
/* Hide WC "View Cart" link that appears after add-to-cart */
body.nexart-product-active .woocommerce-message a.button,
body.nexart-product-active .added_to_cart.wc-forward { display: none !important; }

/* ── 9. VARIATION PILLS (created by JS) ─────────────────────────────────── */
.nx-pdp-attr-group {
    display: block !important;
    width: 100%;
    margin-bottom: 16px;
}

.nx-pdp-attr-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--nx-text-muted);
    display: block;
    margin-bottom: 8px;
}

.nx-pdp-attr-label span {
    color: var(--nx-text-soft);
    font-weight: 400;
    text-transform: none;
    letter-spacing: 0;
    margin-left: 4px;
}

.nx-pdp-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.nx-pdp-pill {
    padding: 7px 16px;
    border: 1px solid var(--nx-border-md);
    border-radius: var(--nx-radius);
    background: var(--nx-bg-card);
    color: var(--nx-text-soft);
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: border-color var(--nx-transition), color var(--nx-transition),
                background var(--nx-transition), box-shadow var(--nx-transition);
    white-space: nowrap;
    line-height: 1;
}

.nx-pdp-pill:hover {
    border-color: var(--nx-border-bright);
    color: var(--nx-text);
}

.nx-pdp-pill.is-active {
    border-color: var(--nx-gold);
    color: var(--nx-gold);
    background: rgba(217,164,65,0.08);
    box-shadow: 0 0 0 1px var(--nx-gold);
}

.nx-pdp-pill.is-disabled {
    position: relative;
    opacity: 0.42;
    cursor: not-allowed;
    color: rgba(245,245,245,0.34);
    background: rgba(255,255,255,0.025);
    border-color: rgba(255,255,255,0.10);
    text-decoration: line-through;
    box-shadow: none;
}

.nx-pdp-pill.is-disabled:hover {
    color: rgba(245,245,245,0.34);
    background: rgba(255,255,255,0.025);
    border-color: rgba(255,255,255,0.10);
    box-shadow: none;
}

.nx-pdp-pill.is-disabled::after {
    content: "Out of stock";
    position: absolute;
    left: 50%;
    bottom: calc(100% + 8px);
    z-index: 4;
    width: max-content;
    max-width: 150px;
    padding: 6px 8px;
    border: 1px solid rgba(255,255,255,0.14);
    border-radius: 5px;
    background: #0b0b0b;
    color: var(--nx-text-soft);
    font-size: 11px;
    font-weight: 600;
    line-height: 1;
    text-decoration: none;
    opacity: 0;
    pointer-events: none;
    transform: translate(-50%, 4px);
    transition: opacity var(--nx-transition), transform var(--nx-transition);
}

.nx-pdp-pill.is-disabled:hover::after,
.nx-pdp-pill.is-disabled:focus-visible::after {
    opacity: 1;
    transform: translate(-50%, 0);
}

/* ── 10. MAGNETIC BOX ───────────────────────────────────────────────────── */
.nx-pdp-magnetic-box {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    background: var(--nx-bg-card);
    border: 1px solid var(--nx-border-md);
    border-radius: var(--nx-radius);
    padding: 14px 16px;
    margin-bottom: 14px;
}

.nx-pdp-magnetic-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background: rgba(217,164,65,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nx-pdp-magnetic-icon svg {
    width: 20px;
    height: 20px;
    stroke: var(--nx-gold);
    fill: none;
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.nx-pdp-magnetic-box strong {
    display: block;
    font-size: 13px;
    font-weight: 700;
    color: var(--nx-text);
    margin-bottom: 3px;
}

.nx-pdp-magnetic-box p {
    font-size: 12px;
    color: var(--nx-text-muted);
    margin: 0;
    line-height: 1.5;
}

/* ── 11. BUY NOW BUTTON ─────────────────────────────────────────────────── */
.nx-btn-buy-now {
    width: 100%;
    height: 50px;
    background: transparent;
    border: 2px solid var(--nx-border-bright);
    border-radius: var(--nx-radius);
    color: var(--nx-text);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: border-color var(--nx-transition), color var(--nx-transition),
                background var(--nx-transition), transform 0.12s ease;
    margin-bottom: 20px;
}

.nx-btn-buy-now svg {
    width: 16px;
    height: 16px;
    fill: var(--nx-gold);
    stroke: none;
    flex-shrink: 0;
}

.nx-btn-buy-now:hover {
    border-color: var(--nx-gold);
    color: var(--nx-gold);
    background: rgba(217,164,65,0.06);
    transform: translateY(-1px);
}

/* ── 12. INLINE TRUST ROW ───────────────────────────────────────────────── */
.nx-pdp-trust-row {
    display: flex;
    gap: 0;
    border-top: 1px solid var(--nx-border);
    padding-top: 16px;
}

.nx-pdp-trust-item-inline {
    flex: 1;
    display: flex;
    align-items: flex-start;
    gap: 8px;
    padding: 0 12px 0 0;
}

.nx-pdp-trust-item-inline:not(:first-child) {
    padding-left: 12px;
    border-left: 1px solid var(--nx-border);
}

.nx-pdp-trust-item-inline svg {
    width: 18px;
    height: 18px;
    stroke: var(--nx-gold);
    fill: none;
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
    flex-shrink: 0;
    margin-top: 1px;
}

.nx-pdp-trust-item-inline strong {
    display: block;
    font-size: 11px;
    font-weight: 700;
    color: var(--nx-text);
    white-space: nowrap;
}

.nx-pdp-trust-item-inline span {
    font-size: 10px;
    color: var(--nx-text-muted);
    line-height: 1.3;
}

/* ── 13. TABS SECTION ───────────────────────────────────────────────────── */
.nx-pdp-included-section {
    background: var(--nx-bg);
    border-top: 1px solid var(--nx-border);
    padding: 52px 0;
}

.nx-pdp-included-head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 24px;
}

.nx-pdp-section-kicker {
    display: block;
    margin-bottom: 8px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--nx-gold);
}

.nx-pdp-included-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}

.nx-pdp-included-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
    min-height: 148px;
    background: var(--nx-bg-card);
    border: 1px solid var(--nx-border);
    border-radius: var(--nx-radius);
    padding: 18px;
}

.nx-pdp-included-item strong {
    font-size: 14px;
    font-weight: 700;
    color: var(--nx-text);
    line-height: 1.25;
}

.nx-pdp-included-item span {
    font-size: 13px;
    color: var(--nx-text-muted);
    line-height: 1.55;
}

.nx-pdp-tabs-section {
    background: var(--nx-bg-2);
    border-top: 1px solid var(--nx-border);
    border-bottom: 1px solid var(--nx-border);
    padding: 0 0 64px;
}

.nx-pdp-tab-nav {
    display: flex;
    border-bottom: 1px solid var(--nx-border);
    gap: 0;
    overflow-x: auto;
    scrollbar-width: none;
}

.nx-pdp-tab-nav::-webkit-scrollbar { display: none; }

.nx-pdp-tab-btn {
    background: transparent;
    border: none;
    border-bottom: 2px solid transparent;
    padding: 20px 24px;
    font-size: 14px;
    font-weight: 600;
    color: var(--nx-text-muted);
    cursor: pointer;
    white-space: nowrap;
    transition: color var(--nx-transition), border-color var(--nx-transition);
    margin-bottom: -1px;
    letter-spacing: 0.01em;
}

.nx-pdp-tab-btn:hover { color: var(--nx-text); }
.nx-pdp-tab-btn.is-active {
    color: var(--nx-text);
    border-bottom-color: var(--nx-gold);
}

.nx-pdp-tab-panels { padding-top: 48px; }

.nx-pdp-tab-panel { display: none; }
.nx-pdp-tab-panel.is-active { display: block; }

/* ── 14. LIFESTYLE SPLIT ────────────────────────────────────────────────── */
.nx-pdp-lifestyle-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: center;
}

.nx-pdp-lifestyle-title {
    font-size: clamp(22px, 2.5vw, 30px);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.02em;
    color: var(--nx-text);
    margin: 0 0 16px;
}

.nx-pdp-lifestyle-desc {
    font-size: 14px;
    line-height: 1.7;
    color: var(--nx-text-soft);
    margin-bottom: 24px;
}

.nx-pdp-lifestyle-desc p { margin: 0 0 12px; }
.nx-pdp-lifestyle-desc h1,
.nx-pdp-lifestyle-desc h2,
.nx-pdp-lifestyle-desc h3 {
    font-size: 22px;
    font-weight: 800;
    margin: 0 0 16px;
    color: var(--nx-text);
}

.nx-pdp-lifestyle-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.nx-pdp-lifestyle-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--nx-text-soft);
    line-height: 1.4;
}

.nx-pdp-lifestyle-list li svg {
    width: 16px;
    height: 16px;
    stroke: var(--nx-gold);
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    flex-shrink: 0;
}

.nx-pdp-lifestyle-img-col { overflow: hidden; }

.nx-pdp-lifestyle-img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    border-radius: var(--nx-radius-lg);
    display: block;
    border: 1px solid var(--nx-border);
}

.nx-pdp-lifestyle-img-ph {
    width: 100%;
    height: 400px;
    background: var(--nx-bg-card);
    border-radius: var(--nx-radius-lg);
    border: 1px solid var(--nx-border);
}

/* ── 15. DETAILS TAB ────────────────────────────────────────────────────── */
.nx-pdp-details-grid {
    display: flex;
    flex-direction: column;
    border: 1px solid var(--nx-border);
    border-radius: var(--nx-radius-lg);
    overflow: hidden;
    max-width: 680px;
}

.nx-pdp-detail-row {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 16px;
    padding: 16px 20px;
    border-bottom: 1px solid var(--nx-border);
}

.nx-pdp-detail-row:last-child { border-bottom: none; }
.nx-pdp-detail-row:nth-child(even) { background: var(--nx-bg-card); }

.nx-pdp-detail-label {
    font-size: 13px;
    font-weight: 600;
    color: var(--nx-text-muted);
}

.nx-pdp-detail-val {
    font-size: 13px;
    color: var(--nx-text-soft);
}

/* ── 16. SHIPPING TAB ───────────────────────────────────────────────────── */
.nx-pdp-shipping-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.nx-pdp-shipping-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    background: var(--nx-bg-card);
    border: 1px solid var(--nx-border);
    border-radius: var(--nx-radius);
    padding: 20px;
}

.nx-pdp-shipping-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    background: rgba(217,164,65,0.1);
    border-radius: var(--nx-radius);
    display: flex;
    align-items: center;
    justify-content: center;
}

.nx-pdp-shipping-icon svg {
    width: 22px;
    height: 22px;
    stroke: var(--nx-gold);
    fill: none;
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.nx-pdp-shipping-item strong {
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: var(--nx-text);
    margin-bottom: 4px;
}

.nx-pdp-shipping-item p {
    font-size: 13px;
    color: var(--nx-text-muted);
    margin: 0;
    line-height: 1.55;
}

/* ── 17. REVIEWS TAB ────────────────────────────────────────────────────── */
.nx-pdp-reviews-wrap { max-width: 800px; }

.nx-pdp-review-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
}

.nx-pdp-review-card {
    background: var(--nx-bg-card);
    border: 1px solid var(--nx-border);
    border-radius: var(--nx-radius-lg);
    padding: 24px;
}

.nx-pdp-review-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    flex-wrap: wrap;
}

.nx-pdp-review-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--nx-gold-glow);
    border: 1px solid var(--nx-border-gold);
    color: var(--nx-gold);
    font-size: 15px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.nx-pdp-review-meta { flex: 1; }

.nx-pdp-review-meta strong {
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: var(--nx-text);
}

.nx-pdp-review-meta span {
    font-size: 12px;
    color: var(--nx-text-muted);
}

.nx-pdp-review-stars {
    display: flex;
    gap: 2px;
    margin-left: auto;
}

.nx-pdp-review-body {
    font-size: 14px;
    line-height: 1.65;
    color: var(--nx-text-soft);
    font-style: italic;
    margin: 0 0 12px;
}

.nx-pdp-review-verified {
    font-size: 11px;
    font-weight: 600;
    color: #4caf7d;
    letter-spacing: 0.04em;
}

.nx-pdp-no-reviews {
    font-size: 14px;
    color: var(--nx-text-muted);
    padding: 24px 0;
}

.nx-pdp-brand-review-list {
    margin-bottom: 28px;
}

/* Review form */
.nx-pdp-review-form-wrap { border-top: 1px solid var(--nx-border); padding-top: 32px; }

.nx-pdp-review-form-wrap #commentform label {
    font-size: 13px;
    color: var(--nx-text-soft);
}

.nx-pdp-review-form-wrap #commentform input[type="text"],
.nx-pdp-review-form-wrap #commentform input[type="email"],
.nx-pdp-review-form-wrap #commentform textarea {
    background: var(--nx-bg-card) !important;
    border: 1px solid var(--nx-border-md) !important;
    border-radius: var(--nx-radius) !important;
    color: var(--nx-text) !important;
    padding: 10px 14px !important;
    font-size: 13px !important;
    width: 100% !important;
}

.nx-pdp-review-submit,
.nx-pdp-review-form-wrap #commentform input[type="submit"] {
    background: var(--nx-gold) !important;
    color: #000 !important;
    border: none !important;
    border-radius: var(--nx-radius) !important;
    padding: 12px 28px !important;
    font-weight: 700 !important;
    cursor: pointer !important;
    font-size: 13px !important;
}

/* ── 18. FAQ ────────────────────────────────────────────────────────────── */
.nx-pdp-faq-section {
    background: var(--nx-bg);
    border-top: 1px solid var(--nx-border);
    padding: 56px 0;
}

.nx-pdp-faq-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.nx-pdp-faq-item {
    background: var(--nx-bg-card);
    border: 1px solid var(--nx-border);
    border-radius: var(--nx-radius);
    padding: 0;
    overflow: hidden;
}

.nx-pdp-faq-item summary {
    cursor: pointer;
    list-style: none;
    padding: 17px 44px 17px 18px;
    color: var(--nx-text);
    font-size: 14px;
    font-weight: 700;
    line-height: 1.35;
    position: relative;
}

.nx-pdp-faq-item summary::-webkit-details-marker { display: none; }

.nx-pdp-faq-item summary::after {
    content: "+";
    position: absolute;
    right: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--nx-gold);
    font-size: 20px;
    font-weight: 400;
    line-height: 1;
}

.nx-pdp-faq-item[open] summary::after { content: "-"; }

.nx-pdp-faq-item p {
    margin: 0;
    padding: 0 18px 18px;
    color: var(--nx-text-muted);
    font-size: 13px;
    line-height: 1.6;
}

/* ── 19. RELATED PRODUCTS ───────────────────────────────────────────────── */
.nx-pdp-related {
    background: var(--nx-bg);
    padding: 64px 0;
    border-top: 1px solid var(--nx-border);
}

.nx-pdp-section-title {
    font-size: clamp(22px, 2.5vw, 28px);
    font-weight: 800;
    letter-spacing: -0.02em;
    color: var(--nx-text);
    margin: 0 0 36px;
}

.nx-pdp-related-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.nx-pdp-rel-card {
    background: var(--nx-bg-card);
    border: 1px solid var(--nx-border);
    border-radius: var(--nx-radius-lg);
    overflow: hidden;
    text-decoration: none;
    color: var(--nx-text);
    transition: border-color var(--nx-transition), transform var(--nx-transition),
                box-shadow var(--nx-transition);
    display: block;
}

.nx-pdp-rel-card:hover {
    border-color: var(--nx-border-md);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.4);
    color: var(--nx-text);
}

.nx-pdp-rel-img-wrap {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4 / 3;
    background: var(--nx-bg-card-2);
}

.nx-pdp-rel-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.nx-pdp-rel-card:hover .nx-pdp-rel-img-wrap img { transform: scale(1.05); }

.nx-pdp-rel-img-ph {
    width: 100%;
    height: 100%;
    background: var(--nx-bg-card-2);
}

.nx-pdp-rel-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 2;
    background: var(--nx-gold);
    color: #000;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 3px 10px;
    border-radius: 3px;
}

.nx-pdp-rel-info {
    padding: 16px;
}

.nx-pdp-rel-cat {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--nx-text-mid);
    display: block;
    margin-bottom: 6px;
}

.nx-pdp-rel-title {
    font-size: 15px;
    font-weight: 700;
    color: var(--nx-text);
    margin: 0 0 8px;
    line-height: 1.3;
}

.nx-pdp-rel-meta {
    display: flex;
    flex-direction: column;
    gap: 2px;
    margin-bottom: 10px;
}

.nx-pdp-rel-meta span {
    font-size: 12px;
    color: var(--nx-text-muted);
}

.nx-pdp-rel-price {
    font-size: 15px;
    font-weight: 700;
    color: var(--nx-gold);
}

.nx-pdp-rel-price .price { font-size: 15px; font-weight: 700; }
.nx-pdp-rel-price .price,
.nx-pdp-rel-price .woocommerce-Price-amount,
.nx-pdp-rel-price .woocommerce-Price-amount bdi,
.nx-pdp-rel-price .amount,
.nx-pdp-rel-price bdi {
    color: var(--nx-gold) !important;
}
.nx-pdp-rel-price ins { text-decoration: none; }
.nx-pdp-rel-price del,
.nx-pdp-rel-price del .woocommerce-Price-amount,
.nx-pdp-rel-price del bdi {
    color: var(--nx-text-dim) !important;
}

/* ── 20. TRUST BAR ──────────────────────────────────────────────────────── */
.nx-pdp-trust-bar {
    background: var(--nx-bg-deep);
    border-top: 1px solid var(--nx-border);
    padding: 40px 0;
}

.nx-pdp-trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    text-align: center;
}

.nx-pdp-trust-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.nx-pdp-trust-icon {
    width: 52px;
    height: 52px;
    background: rgba(217,164,65,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--nx-border-gold);
}

.nx-pdp-trust-icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--nx-gold);
    fill: none;
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.nx-pdp-trust-item strong {
    font-size: 14px;
    font-weight: 700;
    color: var(--nx-text);
    display: block;
}

.nx-pdp-trust-item span {
    font-size: 12px;
    color: var(--nx-text-muted);
    line-height: 1.4;
    max-width: 180px;
}

/* ── 21. RESPONSIVE ─────────────────────────────────────────────────────── */
@media (max-width: 1280px) {
    .nx-pdp-related-grid { grid-template-columns: repeat(4, 1fr); gap: 16px; }
}

@media (max-width: 1024px) {
    .nx-pdp-hero-inner {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .nx-pdp-gallery { max-width: 600px; margin: 0 auto; }

    .nx-pdp-usps { grid-template-columns: repeat(4, 1fr); }

    .nx-pdp-lifestyle-split {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .nx-pdp-lifestyle-img { height: 320px; }

    .nx-pdp-included-grid,
    .nx-pdp-faq-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .nx-pdp-related-grid { grid-template-columns: repeat(2, 1fr); }

    .nx-pdp-trust-grid { grid-template-columns: repeat(2, 1fr); }

    .nx-pdp-shipping-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .nx-pdp-container { padding: 0 16px; }

    .nx-pdp-hero { padding: 28px 0 40px; }

    .nx-pdp-title { font-size: 28px; }

    .nx-pdp-usps { grid-template-columns: repeat(2, 1fr); gap: 8px; }

    .nx-pdp-price { font-size: 26px; }

    .nx-pdp-included-head {
        display: block;
    }

    .nx-pdp-included-section,
    .nx-pdp-faq-section {
        padding: 40px 0;
    }

    .nx-pdp-included-item {
        min-height: 0;
    }

    .nx-pdp-trust-row {
        flex-direction: column;
        gap: 12px;
    }

    .nx-pdp-trust-item-inline { border-left: none !important; padding-left: 0 !important; }

    .nx-pdp-lifestyle-split { gap: 28px; }

    .nx-pdp-lifestyle-img { height: 260px; }

    .nx-pdp-related-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }

    .nx-pdp-trust-grid { grid-template-columns: repeat(2, 1fr); }

    .nx-pdp-tab-btn { padding: 16px 16px; font-size: 13px; }

    .nx-pdp-thumb { width: 68px; height: 58px; }

    body.nexart-product-active .woocommerce-variation-add-to-cart,
    body.nexart-product-active .cart:not(.variations_form .cart) {
        flex-wrap: wrap;
    }

    body.nexart-product-active .single_add_to_cart_button { width: 100% !important; }

    .nx-btn-buy-now { height: 48px; }
}

@media (max-width: 480px) {
    .nx-pdp-usps { grid-template-columns: repeat(2, 1fr); }

    .nx-pdp-related-grid { grid-template-columns: 1fr 1fr; }

    .nx-pdp-trust-grid { grid-template-columns: 1fr 1fr; }

    .nx-pdp-detail-row { grid-template-columns: 1fr; gap: 4px; }

    .nx-pdp-lifestyle-img { height: 200px; }

    .nx-pdp-thumb { width: 56px; height: 48px; }
}

/* ── 21. DIRECT-SALE PDP UPGRADE ────────────────────────────────────────── */
@media (min-width: 1025px) {
    body.nexart-product-active .nx-pdp-info {
        position: sticky;
        top: calc(var(--nx-header-h, 88px) + 22px);
        align-self: start;
    }
}

body.nexart-product-active .nx-pdp-info {
    background: linear-gradient(180deg, rgba(255,255,255,0.035), rgba(255,255,255,0.015));
    border: 1px solid rgba(217,164,65,0.18);
    border-radius: 14px;
    padding: clamp(22px, 3vw, 34px);
}

body.nexart-product-active .nx-pdp-gallery-main {
    border-color: rgba(255,255,255,0.12);
    box-shadow: 0 30px 90px rgba(0,0,0,0.34);
}

body.nexart-product-active .nx-pdp-price-block {
    background: rgba(217,164,65,0.07);
    border: 1px solid rgba(217,164,65,0.18);
    border-radius: 12px;
    padding: 14px 16px;
}

body.nexart-product-active .nx-pdp-form-wrap {
    background: rgba(255,255,255,0.028);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 14px;
    padding: 16px;
}

body.nexart-product-active .single_add_to_cart_button,
body.nexart-product-active .nx-btn-buy-now {
    min-height: 52px;
}

body.nexart-product-active .nx-pdp-trust-row {
    background: transparent;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 12px;
    padding: 12px;
}

body.nexart-product-active .nx-pdp-trust-bar {
    background: #090909;
    padding: 24px 0;
}

body.nexart-product-active .nx-pdp-trust-grid {
    text-align: left;
}

body.nexart-product-active .nx-pdp-trust-item {
    align-items: flex-start;
    flex-direction: row;
    text-align: left;
}

body.nexart-product-active .nx-pdp-trust-icon {
    width: 40px;
    height: 40px;
    flex: 0 0 40px;
}

body.nexart-product-active .nx-pdp-trust-icon svg {
    width: 19px;
    height: 19px;
}

@media (max-width: 1024px) {
    body.nexart-product-active .nx-pdp-info {
        position: static;
    }
}

/* =============================================================================
   MOBILE-FIRST HARDENING
   ============================================================================= */
.nx-pdp,
.nx-pdp * {
    min-width: 0;
}

.nx-pdp img {
    max-width: 100%;
}

.nx-pdp-tab-btn,
.nx-pdp-thumb,
.nx-pdp-pill,
.nx-pdp-gallery-arrow,
.nx-pdp-wishlist-btn,
.nx-btn-buy-now,
body.nexart-product-active .nx-qty-btn,
body.nexart-product-active .single_add_to_cart_button {
    min-height: 44px;
}

@media (max-width: 768px) {
    body.nexart-product-active .nx-pdp-info {
        padding: 18px;
        border-radius: 10px;
    }

    .nx-pdp-gallery-main {
        border-radius: 10px;
        aspect-ratio: 1 / 1;
    }

    .nx-pdp-rating-row,
    .nx-pdp-review-header {
        align-items: flex-start;
        flex-wrap: wrap;
    }

    .nx-pdp-usps {
        padding: 12px;
    }

    .nx-pdp-pills {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .nx-pdp-pill {
        white-space: normal;
        text-align: center;
        line-height: 1.25;
        padding: 10px 8px;
    }

    body.nexart-product-active .woocommerce-variation-add-to-cart {
        display: grid !important;
        grid-template-columns: auto minmax(0, 1fr);
        align-items: stretch;
    }

    body.nexart-product-active .single_add_to_cart_button,
    body.nexart-product-active .single_add_to_cart_button.button {
        grid-column: 1 / -1;
        width: 100% !important;
        white-space: normal !important;
        line-height: 1.2 !important;
    }

    .nx-pdp-shipping-item,
    .nx-pdp-magnetic-box {
        padding: 16px;
    }
}

@media (max-width: 480px) {
    .nx-pdp-container {
        padding-left: 14px;
        padding-right: 14px;
    }

    .nx-pdp-title {
        font-size: 26px;
    }

    .nx-pdp-usps,
    .nx-pdp-related-grid,
    .nx-pdp-trust-grid {
        grid-template-columns: 1fr;
    }

    .nx-pdp-tab-panels {
        padding-top: 32px;
    }

    .nx-pdp-tab-btn {
        padding-left: 14px;
        padding-right: 14px;
    }

    .nx-pdp-review-stars {
        margin-left: 0;
        width: 100%;
    }

    .nx-pdp-included-grid,
    .nx-pdp-faq-grid {
        grid-template-columns: 1fr;
    }

    .nx-pdp-cta-reassurance {
        display: grid;
        grid-template-columns: 1fr;
    }
}

/* =============================================================================
   CRO ADDITIONS — Sprint 1 & 2
   Scope: body.nexart-product-active .nx-pdp
   ============================================================================= */

/* ── SKU line (Sprint 1 #6) ─────────────────────────────────────────────── */
body.nexart-product-active .nx-pdp-sku {
    font-size: 12px;
    color: var(--nx-text-muted);
    letter-spacing: 0.04em;
    margin: -4px 0 14px;
    text-transform: uppercase;
}
body.nexart-product-active .nx-pdp-sku span {
    color: var(--nx-text-soft);
    letter-spacing: 0;
    text-transform: none;
    font-weight: 500;
}

/* ── Clickable verified reviews link (Sprint 1 #3) ──────────────────────── */
body.nexart-product-active .nx-pdp-rating-link {
    color: var(--nx-text-soft);
    text-decoration: none;
    border-bottom: 1px dashed transparent;
    transition: color var(--nx-transition), border-color var(--nx-transition);
    cursor: pointer;
}
body.nexart-product-active .nx-pdp-rating-link:hover {
    color: var(--nx-gold);
    border-bottom-color: var(--nx-border-gold);
}
body.nexart-product-active .nx-pdp-rating-link strong {
    color: var(--nx-text);
    font-weight: 600;
}

/* ── Price row + Low stock pill (Sprint 1 #2) ───────────────────────────── */
body.nexart-product-active .nx-pdp-price-row {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}
body.nexart-product-active .nx-pdp-low-stock {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 12px;
    border: 1px solid var(--nx-border-md);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.02);
    font-size: 12px;
    color: var(--nx-text-muted);
    letter-spacing: 0.02em;
}
body.nexart-product-active .nx-pdp-low-stock strong {
    color: var(--nx-text);
    font-weight: 600;
}
body.nexart-product-active .nx-pdp-low-stock-dot {
    display: inline-block;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--nx-gold);
    box-shadow: 0 0 0 3px var(--nx-gold-glow);
    animation: nx-pulse-dot 2.4s ease-in-out infinite;
}
@keyframes nx-pulse-dot {
    0%, 100% { opacity: 1; }
    50%      { opacity: 0.45; }
}

/* ── Klarna split price (Sprint 1 #4) ───────────────────────────────────── */
body.nexart-product-active .nx-pdp-klarna {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 12px;
    padding: 10px 14px;
    border: 1px solid var(--nx-border);
    border-radius: var(--nx-radius);
    background: rgba(255, 255, 255, 0.02);
    font-size: 13px;
    color: var(--nx-text-soft);
}
body.nexart-product-active .nx-pdp-klarna-logo {
    flex: 0 0 auto;
    width: 42px;
    height: auto;
    border-radius: 4px;
}
body.nexart-product-active .nx-pdp-klarna-text {
    line-height: 1.4;
}
body.nexart-product-active .nx-pdp-klarna-text strong {
    color: var(--nx-text);
    font-weight: 600;
}
body.nexart-product-active .nx-pdp-klarna-official {
    padding: 8px 0;
    background: transparent;
    border: 0;
}

/* ── Dynamic delivery estimate (Sprint 1 #1) ────────────────────────────── */
body.nexart-product-active .nx-pdp-delivery-estimate {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 14px;
    padding: 12px 14px;
    border: 1px solid var(--nx-border-gold);
    border-radius: var(--nx-radius);
    background: linear-gradient(180deg, rgba(217, 164, 65, 0.06), rgba(217, 164, 65, 0.02));
    color: var(--nx-text-soft);
}
body.nexart-product-active .nx-pdp-delivery-estimate > svg {
    flex: 0 0 auto;
    width: 22px;
    height: 22px;
    color: var(--nx-gold);
}
body.nexart-product-active .nx-pdp-delivery-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
    font-size: 13px;
    line-height: 1.4;
}
body.nexart-product-active .nx-pdp-delivery-cutoff {
    color: var(--nx-text-muted);
}
body.nexart-product-active .nx-pdp-delivery-cutoff strong {
    color: var(--nx-text);
    font-variant-numeric: tabular-nums;
    font-weight: 600;
    margin: 0 2px;
}
body.nexart-product-active .nx-pdp-delivery-arrives {
    color: var(--nx-text);
    font-weight: 500;
}
body.nexart-product-active .nx-pdp-delivery-arrives strong {
    color: var(--nx-gold);
    font-weight: 600;
}

/* ── Magnetic mount badge in gallery (Sprint 1 #7) ──────────────────────── */
body.nexart-product-active .nx-pdp-gallery-main { position: relative; }
body.nexart-product-active .nx-pdp-mount-badge {
    position: absolute;
    bottom: 16px;
    left: 16px;
    z-index: 3;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 7px 12px 7px 10px;
    border-radius: 999px;
    background: linear-gradient(180deg, rgba(217, 164, 65, 0.95), rgba(184, 134, 46, 0.95));
    color: #1a1206;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.02em;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.35), 0 0 0 1px rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}
body.nexart-product-active .nx-pdp-mount-badge svg {
    width: 14px;
    height: 14px;
    fill: none;
    stroke: currentColor;
    stroke-width: 3;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* ── Wall compatibility (Sprint 2 #8) ───────────────────────────────────── */
body.nexart-product-active .nx-pdp-wall-compat {
    margin-top: 20px;
    border: 1px solid var(--nx-border-md);
    border-left: 3px solid var(--nx-gold);
    border-radius: var(--nx-radius);
    background: var(--nx-bg-card);
    overflow: hidden;
}
body.nexart-product-active .nx-pdp-wall-compat[open] {
    border-color: var(--nx-border-gold);
    border-left-color: var(--nx-gold);
}
body.nexart-product-active .nx-pdp-wall-compat summary {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 16px;
    list-style: none;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    color: var(--nx-text);
    transition: background var(--nx-transition);
}
body.nexart-product-active .nx-pdp-wall-compat summary::-webkit-details-marker { display: none; }
body.nexart-product-active .nx-pdp-wall-compat summary::marker { display: none; }
body.nexart-product-active .nx-pdp-wall-compat summary:hover { background: rgba(255, 255, 255, 0.025); }
body.nexart-product-active .nx-pdp-wall-compat summary > svg {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: var(--nx-gold);
    stroke-width: 1.75;
    stroke-linecap: round;
    stroke-linejoin: round;
}
body.nexart-product-active .nx-pdp-wall-compat summary > span {
    flex: 1 1 auto;
}
body.nexart-product-active .nx-pdp-wall-compat-chev {
    width: 16px;
    height: 16px;
    fill: none;
    stroke: var(--nx-text-muted);
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: transform var(--nx-transition);
}
body.nexart-product-active .nx-pdp-wall-compat[open] .nx-pdp-wall-compat-chev {
    transform: rotate(180deg);
}
body.nexart-product-active .nx-pdp-wall-compat-body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    padding: 4px 16px 16px;
}
body.nexart-product-active .nx-pdp-wall-compat-col strong {
    display: block;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 8px;
}
body.nexart-product-active .nx-pdp-wall-compat-yes { color: var(--nx-gold); }
body.nexart-product-active .nx-pdp-wall-compat-no  { color: var(--nx-text-muted); }
body.nexart-product-active .nx-pdp-wall-compat-col ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 5px;
    font-size: 13px;
    color: var(--nx-text-soft);
}
body.nexart-product-active .nx-pdp-wall-compat-col ul li::before {
    content: "";
    display: inline-block;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--nx-text-muted);
    margin-right: 8px;
    vertical-align: middle;
}
body.nexart-product-active .nx-pdp-wall-compat-link {
    display: block;
    padding: 12px 16px;
    border-top: 1px solid var(--nx-border);
    color: var(--nx-gold);
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: background var(--nx-transition);
}
body.nexart-product-active .nx-pdp-wall-compat-link:hover {
    background: rgba(217, 164, 65, 0.05);
}

/* ── Mini comparison (Sprint 2 #9) ──────────────────────────────────────── */
body.nexart-product-active .nx-pdp-mini-compare-wrap {
    padding-top: 24px;
    padding-bottom: 8px;
}
body.nexart-product-active .nx-pdp-mini-compare {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}
body.nexart-product-active .nx-pdp-mini-compare-col {
    padding: 18px;
    border: 1px solid var(--nx-border);
    border-radius: var(--nx-radius);
    background: var(--nx-bg-card);
}
body.nexart-product-active .nx-pdp-mini-compare-nx {
    border-color: var(--nx-border-gold);
    background: linear-gradient(180deg, rgba(217, 164, 65, 0.05), transparent 60%);
}
body.nexart-product-active .nx-pdp-mini-compare h4 {
    margin: 0 0 12px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.02em;
}
body.nexart-product-active .nx-pdp-mini-compare-paper h4 { color: var(--nx-text-muted); }
body.nexart-product-active .nx-pdp-mini-compare-nx h4    { color: var(--nx-gold); }
body.nexart-product-active .nx-pdp-mini-compare ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
    font-size: 13px;
    color: var(--nx-text-soft);
}
body.nexart-product-active .nx-pdp-mini-compare li {
    display: flex;
    align-items: center;
    gap: 8px;
    line-height: 1.4;
}
body.nexart-product-active .nx-pdp-mini-compare svg {
    flex: 0 0 auto;
    width: 14px;
    height: 14px;
    fill: none;
    stroke-width: 2.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}
body.nexart-product-active .nx-pdp-mini-compare-paper svg { stroke: var(--nx-text-dim); }
body.nexart-product-active .nx-pdp-mini-compare-nx    svg { stroke: var(--nx-gold); }

/* ── Video thumb (Sprint 2 #10) ─────────────────────────────────────────── */
body.nexart-product-active .nx-pdp-thumb-video {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--nx-bg-card), var(--nx-bg-card-2));
    color: var(--nx-text);
    overflow: hidden;
}
body.nexart-product-active .nx-pdp-thumb-video::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(217, 164, 65, 0.18), transparent 70%);
    pointer-events: none;
}
body.nexart-product-active .nx-pdp-thumb-video-play {
    position: relative;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--nx-gold);
    color: #1a1206;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.35);
    transition: transform var(--nx-transition);
}
body.nexart-product-active .nx-pdp-thumb-video-play svg {
    width: 14px;
    height: 14px;
    fill: currentColor;
}
body.nexart-product-active .nx-pdp-thumb-video:hover .nx-pdp-thumb-video-play {
    transform: scale(1.08);
}
body.nexart-product-active .nx-pdp-thumb-video-label {
    position: absolute;
    bottom: 6px;
    left: 0;
    right: 0;
    text-align: center;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--nx-text-muted);
    z-index: 2;
}

/* ── Video lightbox modal ───────────────────────────────────────────────── */
body.nx-pdp-video-open { overflow: hidden; }
.nx-pdp-video-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(0, 0, 0, 0.88);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 32px;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}
.nx-pdp-video-frame {
    position: relative;
    width: 100%;
    max-width: 960px;
    aspect-ratio: 16 / 9;
    background: #000;
    border-radius: var(--nx-radius-lg);
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
}
.nx-pdp-video-frame iframe,
.nx-pdp-video-frame video {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}
.nx-pdp-video-close {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 2;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid var(--nx-border-md);
    background: rgba(0, 0, 0, 0.6);
    color: var(--nx-text);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background var(--nx-transition), border-color var(--nx-transition);
}
.nx-pdp-video-close:hover {
    background: var(--nx-gold);
    color: #1a1206;
    border-color: var(--nx-gold);
}
.nx-pdp-video-close svg {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* ── Reviews hero (Sprint 2 #12) ────────────────────────────────────────── */
body.nexart-product-active .nx-pdp-reviews-hero {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 28px;
    align-items: center;
    padding: 24px 24px 22px;
    margin-bottom: 24px;
    border: 1px solid var(--nx-border-md);
    border-radius: var(--nx-radius-lg);
    background: linear-gradient(180deg, rgba(217, 164, 65, 0.05), transparent);
}
body.nexart-product-active .nx-pdp-reviews-hero-score {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
    min-width: 140px;
}
body.nexart-product-active .nx-pdp-reviews-hero-num {
    font-size: 52px;
    font-weight: 700;
    line-height: 1;
    color: var(--nx-text);
    letter-spacing: -0.02em;
}
body.nexart-product-active .nx-pdp-reviews-hero-stars {
    display: flex;
    gap: 2px;
}
body.nexart-product-active .nx-pdp-reviews-hero-stars .nx-star {
    width: 18px;
    height: 18px;
}
body.nexart-product-active .nx-pdp-reviews-hero-count {
    font-size: 12px;
    color: var(--nx-text-muted);
}
body.nexart-product-active .nx-pdp-reviews-hero-count strong {
    color: var(--nx-text);
    font-weight: 600;
}
body.nexart-product-active .nx-pdp-reviews-hero-quote {
    position: relative;
    margin: 0;
    padding-left: 38px;
    font-family: Georgia, "Times New Roman", serif;
    font-style: italic;
    font-size: 18px;
    line-height: 1.5;
    color: var(--nx-text-soft);
}
body.nexart-product-active .nx-pdp-reviews-hero-quote svg {
    position: absolute;
    left: 0;
    top: 2px;
    width: 26px;
    height: 26px;
    fill: var(--nx-gold);
    opacity: 0.55;
}

@media (max-width: 720px) {
    body.nexart-product-active .nx-pdp-reviews-hero {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    body.nexart-product-active .nx-pdp-reviews-hero-num { font-size: 44px; }
    body.nexart-product-active .nx-pdp-reviews-hero-quote {
        font-size: 16px;
        padding-left: 32px;
    }
}

@media (max-width: 720px) {
    body.nexart-product-active .nx-pdp-wall-compat-body {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    body.nexart-product-active .nx-pdp-mini-compare {
        grid-template-columns: 1fr;
    }
    body.nexart-product-active .nx-pdp-delivery-estimate {
        flex-wrap: wrap;
    }
    body.nexart-product-active .nx-pdp-mount-badge {
        font-size: 11px;
        padding: 6px 10px;
        bottom: 12px;
        left: 12px;
    }
}
