/* Extracted from page_panels/product.php block 5 */
:root {
        --wwp-bg: #000;
        --wwp-card: rgba(8, 10, 14, 0.62);
        --wwp-border: rgba(255,255,255,0.10);
        --wwp-border2: rgba(255,255,255,0.08);
        --wwp-text: rgba(255,255,255,0.92);
        --wwp-muted: rgba(255,255,255,0.70);
        --wwp-dim: rgba(255,255,255,0.60);
        --wwp-shadow: 0 24px 80px rgba(0,0,0,0.62);
    }

    .wwp-product {
        position: relative;
        background: var(--wwp-bg);
        color: var(--wwp-text);
        padding: 3.25rem 1.25rem 4.25rem;
        overflow: hidden;
    }

    .wwp-bg {
        position: absolute;
        inset: 0;
        z-index: 0;
        pointer-events: none;
    }

    .wwp-video {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        transform: translateZ(0);
    }

    .wwp-overlay {
        position: absolute;
        inset: 0;
        background:
            radial-gradient(1100px 760px at 18% 10%, rgba(0,0,0,0.18), rgba(0,0,0,0.82) 60%, rgba(0,0,0,0.92) 100%),
            linear-gradient(to bottom, rgba(0,0,0,0.35), rgba(0,0,0,0.82));
    }

    .wwp-noise {
        position: absolute;
        inset: 0;
        opacity: 0.10;
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='220' height='220'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='220' height='220' filter='url(%23n)' opacity='.65'/%3E%3C/svg%3E");
        background-size: 220px 220px;
    }

    .wwp-inner {
        position: relative;
        z-index: 2;
        max-width: 1200px;
        margin: 0 auto;
    }

    .wwp-panel {
        border-radius: 2px;
        background: var(--wwp-card);
        border: 1px solid var(--wwp-border);
        backdrop-filter: blur(12px);
        box-shadow: var(--wwp-shadow);
        position: relative;
        overflow: hidden;
    }

    .wwp-panel::before {
        content: "";
        position: absolute;
        inset: -2px;
        background: radial-gradient(700px 350px at var(--mx, 30%) var(--my, 20%), rgba(255,255,255,0.12), rgba(255,255,255,0) 55%);
        opacity: 0.75;
        pointer-events: none;
    }

    .wwp-panel::after {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(120deg, rgba(255,255,255,0.08), rgba(255,255,255,0) 28%, rgba(255,255,255,0.05) 62%, rgba(255,255,255,0));
        opacity: 0.18;
        pointer-events: none;
    }

    /* topbar */
    .wwp-topbar {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 1rem;
        padding: 0.85rem 1rem;
        margin-bottom: 1.1rem;
    }

    .wwp-back {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        height: 36px;
        padding: 0 0.95rem;
        border-radius: 2px;
        border: 1px solid rgba(255,255,255,0.14);
        background: rgba(0,0,0,0.22);
        color: rgba(255,255,255,0.86);
        text-decoration: none;
        font-weight: 900;
        font-size: 0.9rem;
        transition: transform 0.10s ease, background 0.10s ease, border-color 0.10s ease;
        position: relative;
        z-index: 2;
    }

    .wwp-back:hover {
        background: rgba(255,255,255,0.12);
        border-color: rgba(255,255,255,0.22);
        transform: translateY(-1px);
    }

    .wwp-topmeta {
        display: inline-flex;
        gap: 0.45rem;
        align-items: center;
        position: relative;
        z-index: 2;
    }

    .wwp-pill {
        display: inline-flex;
        align-items: center;
        height: 28px;
        padding: 0 0.7rem;
        border-radius: 2px;
        border: 1px solid rgba(255,255,255,0.14);
        background: rgba(0,0,0,0.22);
        font-weight: 900;
        font-size: 0.78rem;
        color: rgba(255,255,255,0.76);
        letter-spacing: 0.02em;
        text-transform: uppercase;
        white-space: nowrap;
    }

    /* header */
    .wwp-header {
        display: grid;
        grid-template-columns: minmax(0, 1fr) 320px;
        gap: 1.1rem;
        padding: 1.15rem 1.25rem;
        margin-bottom: 1.1rem;
        align-items: start;
    }

    .wwp-kicker {
        font-weight: 900;
        letter-spacing: 0.06em;
        text-transform: uppercase;
        font-size: 0.78rem;
        color: rgba(255,255,255,0.70);
        position: relative;
        z-index: 2;
    }

    .wwp-title {
        margin: 0.45rem 0 0.35rem 0;
        font-weight: 900;
        letter-spacing: -0.02em;
        font-size: clamp(1.5rem, 2.8vw, 2.05rem);
        line-height: 1.06;
        position: relative;
        z-index: 2;
    }

    .wwp-lead {
        margin: 0;
        font-size: 0.98rem;
        line-height: 1.55;
        color: rgba(255,255,255,0.70);
        position: relative;
        z-index: 2;
    }

    .wwp-header-actions {
        display: grid;
        gap: 0.7rem;
        justify-items: stretch;
        position: relative;
        z-index: 2;
    }

    .wwp-price {
        border: 1px solid rgba(255,255,255,0.12);
        background: rgba(0,0,0,0.22);
        border-radius: 2px;
        padding: 0.75rem 0.85rem;
    }

    .wwp-price-label {
        font-size: 0.78rem;
        font-weight: 900;
        color: rgba(255,255,255,0.70);
        letter-spacing: 0.06em;
        text-transform: uppercase;
        margin-bottom: 0.15rem;
    }

    .wwp-price-value {
        font-size: 1.45rem;
        font-weight: 900;
        letter-spacing: -0.01em;
        color: rgba(255,255,255,0.92);
    }

    /* buttons */
    .wwp-btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        height: 44px;
        padding: 0 1.05rem;
        border-radius: 2px;
        font-size: 0.95rem;
        font-weight: 900;
        text-decoration: none;
        border: 1px solid rgba(255,255,255,0.14);
        background: rgba(255,255,255,0.10);
        color: rgba(255,255,255,0.92);
        box-shadow: 0 18px 46px rgba(0,0,0,0.55);
        transition: transform 0.10s ease, background 0.10s ease, border-color 0.10s ease;
        cursor: pointer;
    }

    .wwp-btn:hover {
        background: rgba(255,255,255,0.14);
        border-color: rgba(255,255,255,0.22);
        transform: translateY(-1px);
    }

    .wwp-btn:active { transform: translateY(0); }

    .wwp-btn-primary {
        background: rgba(255,255,255,0.86);
        color: rgba(0,0,0,0.92);
        border-color: rgba(255,255,255,0.86);
    }

    .wwp-btn-primary:hover {
        background: rgba(255,255,255,0.95);
        border-color: rgba(255,255,255,0.95);
    }

    .wwp-btn-ghost {
        background: rgba(0,0,0,0.22);
        color: rgba(255,255,255,0.88);
    }

    .wwp-btn-sm {
        height: 36px;
        padding: 0 0.95rem;
        font-size: 0.88rem;
    }

    .wwp-btn[disabled],
    .wwp-btn:disabled {
        opacity: 0.55;
        cursor: not-allowed;
        transform: none;
    }

    /* media row */
    .wwp-media-row {
        display: grid;
        grid-template-columns: minmax(0, 3fr) minmax(0, 1.2fr);
        gap: 1.1rem;
        margin-bottom: 1.1rem;
        align-items: stretch;
    }

    .wwp-media-main {
        padding: 0.9rem;
    }

    .wwp-main-frame {
        height: 560px;
        border-radius: 2px;
        border: 1px solid rgba(255,255,255,0.10);
        background: rgba(0,0,0,0.22);
        display: flex;
        align-items: center;
        justify-content: center;
        overflow: hidden;
        position: relative;
        z-index: 2;
    }

    .wwp-main-frame img {
        max-width: 100%;
        max-height: 100%;
        object-fit: contain;
        display: block;
    }

    .wwp-media-thumbs {
        padding: 0.9rem;
        display: grid;
        grid-template-rows: auto 1fr;
        gap: 0.65rem;
    }

    .wwp-thumbs-head {
        display: flex;
        align-items: center;
        justify-content: space-between;
        position: relative;
        z-index: 2;
    }

    .wwp-thumbs-title {
        font-weight: 900;
        letter-spacing: 0.06em;
        text-transform: uppercase;
        font-size: 0.78rem;
        color: rgba(255,255,255,0.72);
    }

    .wwp-thumbs-count {
        height: 26px;
        min-width: 28px;
        padding: 0 0.55rem;
        border-radius: 2px;
        border: 1px solid rgba(255,255,255,0.14);
        background: rgba(0,0,0,0.22);
        display: inline-flex;
        align-items: center;
        justify-content: center;
        font-weight: 900;
        font-size: 0.78rem;
        color: rgba(255,255,255,0.80);
    }

    .wwp-thumbs-grid {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0.6rem;
        align-content: start;
        position: relative;
        z-index: 2;
    }

    .wwp-thumb {
        border-radius: 2px;
        border: 1px solid rgba(255,255,255,0.10);
        background: rgba(0,0,0,0.22);
        padding: 0.35rem;
        cursor: pointer;
        transition: transform 0.10s ease, border-color 0.10s ease, background 0.10s ease;
        height: 118px;
        overflow: hidden;
    }

    .wwp-thumb img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 2px;
        display: block;
        transform: scale(1.02);
        transition: transform 0.14s ease;
    }

    .wwp-thumb:hover img { transform: scale(1.06); }

    .wwp-thumb.is-active {
        border-color: rgba(255,255,255,0.75);
        background: rgba(255,255,255,0.08);
        transform: translateY(-1px);
    }

    /* layout */
    .wwp-layout {
        display: grid;
        grid-template-columns: minmax(0, 2.2fr) minmax(0, 1fr);
        gap: 1.1rem;
        align-items: start;
        margin-top: 0.25rem;
    }

    .wwp-left { min-width: 0; }
    .wwp-right { min-width: 0; display: grid; gap: 1.1rem; }

    .wwp-block {
        padding: 1.05rem 1.1rem 1.15rem;
        margin-bottom: 1.1rem;
    }

    .wwp-block-title {
        font-weight: 900;
        font-size: 0.95rem;
        letter-spacing: 0.02em;
        margin-bottom: 0.7rem;
        position: relative;
        z-index: 2;
    }

    .wwp-bullets {
        margin: 0;
        padding-left: 1.15rem;
        color: rgba(255,255,255,0.74);
        position: relative;
        z-index: 2;
    }

    .wwp-bullets li { margin-bottom: 0.35rem; }
    .wwp-bullets li:last-child { margin-bottom: 0; }

    .wwp-desc {
        border-radius: 2px;
        border: 1px solid rgba(255,255,255,0.10);
        background: rgba(0,0,0,0.22);
        padding: 0.95rem 1rem;
        color: rgba(255,255,255,0.76);
        line-height: 1.6;
        position: relative;
        z-index: 2;
        overflow-wrap: anywhere;
    }

    .wwp-desc-muted { color: rgba(255,255,255,0.68); }

    /* right buy */
    .wwp-buy {
        padding: 1.05rem 1.1rem 1.1rem;
    }

    .wwp-buy-title {
        font-weight: 900;
        margin-bottom: 0.45rem;
        position: relative;
        z-index: 2;
    }

    .wwp-buy-copy {
        color: rgba(255,255,255,0.70);
        line-height: 1.55;
        margin-bottom: 0.85rem;
        position: relative;
        z-index: 2;
    }

    .wwp-buy-btn { width: 100%; margin-bottom: 0.75rem; position: relative; z-index: 2; }

    .wwp-notes {
        border-top: 1px solid rgba(255,255,255,0.10);
        padding-top: 0.75rem;
        margin-top: 0.25rem;
        position: relative;
        z-index: 2;
    }

    .wwp-notes-title {
        font-weight: 900;
        font-size: 0.85rem;
        letter-spacing: 0.06em;
        text-transform: uppercase;
        color: rgba(255,255,255,0.72);
        margin-bottom: 0.4rem;
    }

    .wwp-notes-list {
        margin: 0;
        padding-left: 1.15rem;
        color: rgba(255,255,255,0.70);
        font-size: 0.92rem;
        line-height: 1.55;
    }

    .wwp-buy-discord { width: 100%; margin-top: 0.8rem; }

    .wwp-about {
        padding: 1.0rem 1.1rem 1.05rem;
    }

    .wwp-about-title {
        font-weight: 900;
        margin-bottom: 0.35rem;
        position: relative;
        z-index: 2;
    }

    .wwp-about-copy {
        color: rgba(255,255,255,0.70);
        line-height: 1.55;
        position: relative;
        z-index: 2;
    }

    /* related */
    .wwp-related { margin-top: 0.4rem; }
    .wwp-related-head {
        display: flex;
        align-items: flex-end;
        justify-content: space-between;
        gap: 1rem;
        margin: 0 0 0.75rem 0;
    }

    .wwp-related-title {
        margin: 0;
        font-weight: 900;
        letter-spacing: -0.01em;
        font-size: 1.15rem;
        color: rgba(255,255,255,0.92);
    }

    .wwp-link {
        color: rgba(255,255,255,0.72);
        text-decoration: none;
        font-weight: 900;
        font-size: 0.9rem;
        padding: 0.25rem 0.6rem;
        border-radius: 2px;
        border: 1px solid rgba(255,255,255,0.14);
        background: rgba(0,0,0,0.22);
    }

    .wwp-link:hover {
        background: rgba(255,255,255,0.12);
        border-color: rgba(255,255,255,0.22);
    }

    .wwp-related-grid {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 1.1rem;
    }

    .wwp-card {
        border-radius: 2px;
        overflow: hidden;
    }

    .wwp-card-img {
        position: relative;
        display: block;
        width: 100%;
        height: 170px;
        overflow: hidden;
        border-bottom: 1px solid rgba(255,255,255,0.08);
        text-decoration: none;
    }

    .wwp-card-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transform: scale(1.02);
        transition: transform 180ms ease;
        display: block;
    }

    .wwp-card-imgshade {
        position: absolute;
        inset: 0;
        pointer-events: none;
        background: linear-gradient(to top, rgba(0,0,0,0.75), rgba(0,0,0,0.12));
        opacity: 0.9;
    }

    .wwp-card:hover .wwp-card-img img { transform: scale(1.06); }

    .wwp-card-body {
        padding: 0.9rem 1rem 1.0rem;
        position: relative;
        z-index: 2;
    }

    .wwp-card-name {
        font-weight: 900;
        font-size: 1.0rem;
        line-height: 1.2;
        margin-bottom: 0.35rem;
    }

    .wwp-card-name a {
        color: rgba(255,255,255,0.92);
        text-decoration: none;
    }

    .wwp-card-name a:hover { text-decoration: underline; }

    .wwp-card-short {
        color: rgba(255,255,255,0.70);
        font-size: 0.92rem;
        line-height: 1.45;
        margin-bottom: 0.75rem;
    }

    .wwp-card-meta {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 0.8rem;
    }

    .wwp-card-price {
        font-weight: 900;
        color: rgba(255,255,255,0.90);
    }

    /* responsive */
    @media (max-width: 1024px) {
        .wwp-header { grid-template-columns: minmax(0, 1fr) 280px; }
        .wwp-media-row { grid-template-columns: minmax(0, 1fr); }
        .wwp-media-thumbs { grid-template-rows: auto auto; }
        .wwp-thumbs-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
        .wwp-thumb { height: 110px; }
        .wwp-layout { grid-template-columns: minmax(0, 1fr); }
        .wwp-related-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
        .wwp-main-frame { height: 520px; }
    }

    @media (max-width: 820px) {
        .wwp-header { grid-template-columns: minmax(0, 1fr); }
        .wwp-header-actions { grid-template-columns: minmax(0, 1fr); }
        .wwp-thumbs-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
        .wwp-main-frame { height: 440px; }
    }

    @media (max-width: 720px) {
        .wwp-product { padding: 2.75rem 1rem 3.6rem; }
        .wwp-thumbs-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
        .wwp-main-frame { height: 360px; }
        .wwp-related-grid { grid-template-columns: minmax(0, 1fr); }
    }

/* Extracted from page_panels/product.php block 4 */
.wwp-content-grid {
        display: grid;
        grid-template-columns: minmax(0, 1.7fr) minmax(280px, 0.78fr);
        gap: 1.2rem;
        align-items: start;
    }

    .wwp-main-col,
    .wwp-side-col {
        min-width: 0;
    }

    .wwp-side-col {
        display: grid;
        gap: 1.2rem;
        position: sticky;
        top: 1rem;
    }

    .wwp-section-head,
    .wwp-related {
        margin-bottom: 1rem;
    }

    .wwp-section-title,
    .wwp-related-title,
    .wwp-side-title {
        margin: 0.25rem 0 0;
        font-size: 1.45rem;
        line-height: 1.1;
        letter-spacing: -0.03em;
        font-weight: 900;
    }

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

    .wwp-feature-card {
        display: flex;
        gap: 0.8rem;
        align-items: flex-start;
        min-height: 100%;
        padding: 1rem;
        border-radius: 2px;
        background: rgba(255, 255, 255, 0.035);
        border: 1px solid rgba(255, 255, 255, 0.08);
    }

    .wwp-prose {
        display: grid;
        gap: 0.9rem;
    }

    .wwp-raw {
        margin-top: 1.2rem;
        padding-top: 1rem;
        border-top: 1px solid rgba(255, 255, 255, 0.08);
    }

    .wwp-raw summary {
        cursor: pointer;
        list-style: none;
        font-weight: 800;
        color: var(--wwp-text);
    }

    .wwp-raw summary::-webkit-details-marker {
        display: none;
    }

    .wwp-raw-body {
        margin-top: 0.9rem;
        padding: 1rem;
        border-radius: 2px;
        background: rgba(255, 255, 255, 0.035);
        border: 1px solid rgba(255, 255, 255, 0.08);
    }

    .wwp-raw-list,
    .wwp-side-list {
        margin: 0;
        padding-left: 1.1rem;
    }

    .wwp-related-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .wwp-card {
        border-radius: 2px;
        overflow: hidden;
    }

    .wwp-card-img {
        position: relative;
        display: block;
        height: 190px;
        overflow: hidden;
        text-decoration: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }

    .wwp-card-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
        transition: transform 180ms ease;
    }

    .wwp-card-imgshade {
        position: absolute;
        inset: 0;
        background: linear-gradient(180deg, rgba(4, 8, 14, 0), rgba(4, 8, 14, 0.78));
    }

    .wwp-card-body {
        padding: 1rem;
    }

    .wwp-card-name {
        margin-bottom: 0.45rem;
        font-size: 1rem;
        line-height: 1.25;
    }

    .wwp-card-name a {
        color: var(--wwp-text);
        text-decoration: none;
    }

    .wwp-card-short {
        margin-bottom: 0.9rem;
        font-size: 0.92rem;
    }

    .wwp-card-meta {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 0.8rem;
    }

    @media (max-width: 1120px) {
        .wwp-hero,
        .wwp-gallery,
        .wwp-content-grid {
            grid-template-columns: minmax(0, 1fr);
        }

        .wwp-side-col {
            position: static;
        }

        .wwp-gallery-frame {
            min-height: 540px;
        }

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

    @media (max-width: 820px) {
        .wwp-product {
            padding: 2.7rem 1rem 3.8rem;
        }

        .wwp-title {
            max-width: none;
            font-size: clamp(1.9rem, 8vw, 2.8rem);
        }

        .wwp-buy-points,
        .wwp-feature-grid,
        .wwp-thumbs-grid {
            grid-template-columns: repeat(2, minmax(0, 1fr));
        }

        .wwp-gallery-frame {
            min-height: 430px;
        }

        .wwp-related-grid {
            grid-template-columns: minmax(0, 1fr);
        }
    }

    @media (max-width: 560px) {
        .wwp-topbar,
        .wwp-related-head,
        .wwp-rail-head {
            flex-direction: column;
            align-items: stretch;
        }

        .wwp-buy-points,
        .wwp-feature-grid,
        .wwp-thumbs-grid {
            grid-template-columns: minmax(0, 1fr);
        }

        .wwp-gallery-frame {
            min-height: 330px;
        }

        .wwp-hero-copy,
        .wwp-buy,
        .wwp-gallery-main,
        .wwp-gallery-rail,
        .wwp-section,
        .wwp-side-card {
            padding: 1.05rem;
        }
    }

/* Extracted from page_panels/product.php block 3 */
.wwp-buy {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        background: linear-gradient(180deg, rgba(15, 23, 35, 0.95), rgba(7, 12, 20, 0.95));
    }

    .wwp-price-value {
        font-size: clamp(2rem, 4vw, 3rem);
        line-height: 1;
        letter-spacing: -0.05em;
    }

    .wwp-buy-copy,
    .wwp-feature-copy,
    .wwp-card-short,
    .wwp-raw-list,
    .wwp-side-list {
        color: var(--wwp-muted);
        line-height: 1.62;
    }

    .wwp-btn {
        min-height: 48px;
        padding: 0.85rem 1.2rem;
        border: 1px solid rgba(255, 255, 255, 0.15);
        font-size: 0.96rem;
        transition: transform 140ms ease, background 140ms ease, border-color 140ms ease, color 140ms ease;
    }

    .wwp-btn-primary {
        background: linear-gradient(135deg, #ecf7ff, #b7fff0);
        color: #07111b;
        border-color: rgba(255, 255, 255, 0.35);
        box-shadow: 0 18px 45px rgba(64, 195, 255, 0.18);
    }

    .wwp-btn-ghost {
        background: rgba(255, 255, 255, 0.04);
        color: var(--wwp-text);
    }

    .wwp-btn-sm {
        min-height: 38px;
        padding: 0.65rem 0.95rem;
        font-size: 0.88rem;
    }

    .wwp-buy-btn,
    .wwp-buy-discord {
        width: 100%;
    }

    .wwp-buy-points {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 0.75rem;
    }

    .wwp-buy-point {
        display: grid;
        gap: 0.2rem;
        padding: 0.9rem 0.8rem;
        border-radius: 2px;
        border: 1px solid rgba(255, 255, 255, 0.08);
        background: rgba(255, 255, 255, 0.04);
    }

    .wwp-buy-point strong,
    .wwp-card-price {
        color: var(--wwp-text);
        font-size: 0.95rem;
        font-weight: 900;
    }

    .wwp-buy-point span {
        color: var(--wwp-dim);
        font-size: 0.78rem;
        line-height: 1.4;
    }

    .wwp-gallery {
        display: grid;
        grid-template-columns: minmax(0, 1.6fr) minmax(300px, 0.75fr);
        gap: 1.2rem;
    }

    .wwp-gallery-frame {
        position: relative;
        min-height: 620px;
        display: flex;
        align-items: center;
        justify-content: center;
        overflow: hidden;
        border-radius: 2px;
        border: 1px solid rgba(255, 255, 255, 0.08);
        background:
            linear-gradient(45deg, rgba(255,255,255,0.92) 25%, transparent 25%, transparent 75%, rgba(255,255,255,0.92) 75%),
            linear-gradient(45deg, rgba(255,255,255,0.92) 25%, transparent 25%, transparent 75%, rgba(255,255,255,0.92) 75%),
            #d8dee8;
        background-position: 0 0, 14px 14px;
        background-size: 28px 28px;
    }

    .wwp-gallery-frame img {
        width: 100%;
        height: 100%;
        object-fit: contain;
        display: block;
        filter: brightness(1.08) contrast(0.98);
    }

    .wwp-gallery-badge,
    .wwp-thumbs-count {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        border: 1px solid rgba(255, 255, 255, 0.12);
        background: rgba(255, 255, 255, 0.05);
        font-size: 0.82rem;
        font-weight: 900;
    }

    .wwp-gallery-badge {
        position: absolute;
        top: 1rem;
        right: 1rem;
        padding: 0.5rem 0.8rem;
        color: var(--wwp-text);
        backdrop-filter: blur(10px);
    }

    .wwp-gallery-rail {
        display: grid;
        grid-template-rows: auto 1fr;
        gap: 1rem;
    }

    .wwp-rail-head,
    .wwp-related-head {
        display: flex;
        justify-content: space-between;
        gap: 1rem;
        align-items: flex-end;
    }

    .wwp-rail-title {
        margin-top: 0.25rem;
        font-size: 1.05rem;
        font-weight: 800;
    }

    .wwp-thumbs-count {
        min-width: 34px;
        min-height: 34px;
        padding: 0 0.7rem;
    }

    .wwp-thumbs-grid,
    .wwp-feature-grid,
    .wwp-related-grid {
        display: grid;
        gap: 1rem;
    }

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

    .wwp-thumb {
        min-height: 126px;
        padding: 0.4rem;
        border-radius: 2px;
        background: rgba(255, 255, 255, 0.03);
        border: 1px solid rgba(255, 255, 255, 0.08);
        transition: transform 140ms ease, border-color 140ms ease, background 140ms ease;
    }

    .wwp-thumb img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
        border-radius: 2px;
        transform: scale(1.01);
        filter: brightness(1.08) contrast(0.98);
        transition: transform 180ms ease;
    }

    .wwp-thumb:hover img,
    .wwp-card:hover .wwp-card-img img {
        transform: scale(1.06);
    }

    .wwp-thumb.is-active {
        background: rgba(159, 231, 255, 0.08);
        border-color: rgba(159, 231, 255, 0.45);
        transform: translateY(-2px);
    }

/* Extracted from page_panels/product.php block 2 */
:root {
        --wwp-bg: #05070c;
        --wwp-border: rgba(162, 201, 255, 0.14);
        --wwp-text: rgba(247, 250, 255, 0.96);
        --wwp-muted: rgba(207, 220, 240, 0.76);
        --wwp-dim: rgba(178, 194, 217, 0.64);
        --wwp-accent: #9fe7ff;
        --wwp-accent-2: #79ffcf;
        --wwp-shadow: 0 28px 90px rgba(0, 0, 0, 0.45);
    }

    .wwp-product {
        padding: 3.25rem 1.25rem 4.5rem;
        background: var(--wwp-bg);
    }

    .wwp-bg,
    .wwp-overlay,
    .wwp-noise,
    .wwp-glow {
        position: absolute;
        inset: 0;
        pointer-events: none;
    }

    .wwp-video {
        filter: saturate(0.95) brightness(0.45);
    }

    .wwp-overlay {
        background:
            radial-gradient(900px 540px at 12% 14%, rgba(17, 77, 122, 0.26), rgba(5, 7, 12, 0) 55%),
            radial-gradient(680px 420px at 84% 18%, rgba(11, 132, 93, 0.16), rgba(5, 7, 12, 0) 50%),
            linear-gradient(180deg, rgba(4, 7, 11, 0.3), rgba(4, 7, 11, 0.9) 56%, rgba(4, 7, 11, 0.98));
    }

    .wwp-noise {
        opacity: 0.08;
    }

    .wwp-glow {
        filter: blur(80px);
        opacity: 0.22;
    }

    .wwp-glow-a {
        inset: 8% auto auto 12%;
        width: 280px;
        height: 280px;
        background: rgba(79, 174, 255, 0.35);
    }

    .wwp-glow-b {
        inset: auto 8% 12% auto;
        width: 220px;
        height: 220px;
        background: rgba(78, 255, 199, 0.22);
    }

    .wwp-inner {
        max-width: 1220px;
    }

    .wwp-panel {
        border-radius: 2px;
        background: linear-gradient(180deg, rgba(16, 24, 36, 0.84), rgba(7, 12, 20, 0.82));
        border: 1px solid var(--wwp-border);
        backdrop-filter: blur(16px);
        box-shadow: var(--wwp-shadow);
    }

    .wwp-panel::before {
        inset: -1px;
        background: radial-gradient(420px 240px at var(--mx, 24%) var(--my, 18%), rgba(159, 231, 255, 0.15), rgba(159, 231, 255, 0) 58%);
        opacity: 0.9;
    }

    .wwp-topbar,
    .wwp-hero,
    .wwp-gallery,
    .wwp-content-grid {
        margin-bottom: 1.2rem;
    }

    .wwp-topbar {
        padding: 0.95rem 1rem;
    }

    .wwp-back,
    .wwp-pill,
    .wwp-chip,
    .wwp-signal,
    .wwp-link,
    .wwp-btn,
    .wwp-gallery-badge,
    .wwp-thumbs-count {
        border-radius: 2px;
    }

    .wwp-back,
    .wwp-link {
        min-height: 38px;
        background: rgba(255, 255, 255, 0.04);
        color: var(--wwp-text);
        border: 1px solid rgba(255, 255, 255, 0.14);
        font-weight: 800;
        transition: background 140ms ease, transform 140ms ease, border-color 140ms ease;
    }

    .wwp-topmeta,
    .wwp-signal-row,
    .wwp-creator-row {
        display: flex;
        flex-wrap: wrap;
        gap: 0.6rem;
        align-items: center;
    }

    .wwp-pill,
    .wwp-chip,
    .wwp-signal {
        min-height: 30px;
        padding: 0.4rem 0.8rem;
        background: rgba(255, 255, 255, 0.05);
        color: var(--wwp-muted);
        border: 1px solid rgba(255, 255, 255, 0.12);
        letter-spacing: 0.05em;
    }

    .wwp-hero {
        display: grid;
        grid-template-columns: minmax(0, 1.45fr) minmax(320px, 0.72fr);
        gap: 1.2rem;
    }

    .wwp-hero-copy,
    .wwp-buy,
    .wwp-gallery-main,
    .wwp-gallery-rail,
    .wwp-section,
    .wwp-side-card {
        padding: 1.35rem;
    }

    .wwp-kicker,
    .wwp-section-kicker,
    .wwp-side-kicker,
    .wwp-rail-kicker,
    .wwp-buy-label {
        color: var(--wwp-accent);
        font-size: 0.78rem;
        font-weight: 900;
        letter-spacing: 0.12em;
        text-transform: uppercase;
    }

    .wwp-creator-label {
        color: var(--wwp-muted);
        font-weight: 700;
        font-size: 0.98rem;
    }

    .wwp-chip {
        background: rgba(121, 255, 207, 0.08);
        border-color: rgba(121, 255, 207, 0.2);
        color: rgba(198, 255, 230, 0.92);
    }

    .wwp-title {
        margin: 1rem 0 0.75rem;
        max-width: 14ch;
        font-size: clamp(2.2rem, 4vw, 3.55rem);
        line-height: 0.98;
        letter-spacing: -0.04em;
    }

    .wwp-lead,
    .wwp-prose p,
    .wwp-side-copy {
        color: var(--wwp-muted);
        line-height: 1.72;
        font-size: 1rem;
    }

    .wwp-lead {
        max-width: 62ch;
        font-size: 1.04rem;
    }

    .wwp-signal-row {
        margin-top: 1.2rem;
    }

    .wwp-signal {
        background: rgba(159, 231, 255, 0.07);
        border-color: rgba(159, 231, 255, 0.18);
        color: rgba(226, 247, 255, 0.92);
    }

    .wwp-hero-highlights {
        display: grid;
        gap: 0.75rem;
        margin-top: 1.35rem;
        padding-top: 1.1rem;
        border-top: 1px solid rgba(255, 255, 255, 0.08);
    }

    .wwp-mini-point {
        display: flex;
        gap: 0.8rem;
        align-items: flex-start;
        color: var(--wwp-text);
        font-size: 0.98rem;
        line-height: 1.45;
    }

    .wwp-mini-dot,
    .wwp-feature-icon {
        flex: 0 0 auto;
        width: 10px;
        height: 10px;
        border-radius: 2px;
        background: linear-gradient(135deg, var(--wwp-accent), var(--wwp-accent-2));
        margin-top: 0.42rem;
        box-shadow: 0 0 18px rgba(159, 231, 255, 0.45);
    }

/* Extracted from page_panels/product.php block 1 */
:root {
        --wwp-bg: #05070c;
        --wwp-surface: rgba(9, 14, 24, 0.96);
        --wwp-surface-soft: #0d1523;
        --wwp-surface-alt: #10192a;
        --wwp-border: rgba(148, 163, 184, 0.14);
        --wwp-text: #f8fbff;
        --wwp-muted: #a7b7cd;
        --wwp-dim: #7f92ac;
        --wwp-accent: #2563eb;
        --wwp-accent-soft: #7dd3fc;
        --wwp-shadow: 0 24px 70px rgba(0, 0, 0, 0.34);
    }

    .wwp-product {
        background:
            radial-gradient(980px 560px at 14% 6%, rgba(37,99,235,0.18), rgba(37,99,235,0) 50%),
            radial-gradient(760px 420px at 88% 16%, rgba(34,197,94,0.10), rgba(34,197,94,0) 52%),
            linear-gradient(180deg, #04070d 0%, #05070c 54%, #07111d 100%);
        color: var(--wwp-text);
    }

    .wwp-video,
    .wwp-noise,
    .wwp-glow {
        display: none;
    }

    .wwp-overlay {
        background:
            linear-gradient(180deg, rgba(3,8,18,0.22), rgba(3,8,18,0.72) 40%, rgba(3,8,18,0.92)),
            radial-gradient(720px 420px at 84% 18%, rgba(37,99,235,0.10), rgba(5,7,12,0) 60%);
    }

    .wwp-inner {
        max-width: none;
        width: min(1680px, calc(100vw - 40px));
    }

    .wwp-panel {
        background: linear-gradient(180deg, rgba(14, 22, 35, 0.96), rgba(8, 13, 23, 0.95));
        border: 1px solid var(--wwp-border);
        border-radius: 2px;
        box-shadow: var(--wwp-shadow);
        backdrop-filter: none;
    }

    .wwp-panel::before {
        background: linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0));
        opacity: 1;
    }

    .wwp-panel::after {
        opacity: 0;
    }

    .wwp-topbar {
        background: rgba(7, 12, 22, 0.72);
    }

    .wwp-back,
    .wwp-link,
    .wwp-pill,
    .wwp-chip,
    .wwp-signal,
    .wwp-gallery-badge,
    .wwp-thumbs-count,
    .wwp-btn {
        border-radius: 2px;
    }

    .wwp-back,
    .wwp-link {
        background: rgba(17,24,39,0.82);
        color: var(--wwp-text);
        border-color: rgba(148,163,184,0.16);
        box-shadow: none;
    }

    .wwp-pill,
    .wwp-chip,
    .wwp-signal {
        background: rgba(15,23,42,0.82);
        color: var(--wwp-muted);
        border-color: rgba(148,163,184,0.16);
        letter-spacing: 0.08em;
    }

    .wwp-chip {
        background: rgba(37,99,235,0.14);
        color: #dbeafe;
    }

    .wwp-signal {
        background: rgba(14,165,233,0.10);
        color: #d9f6ff;
    }

    .wwp-kicker,
    .wwp-section-kicker,
    .wwp-side-kicker,
    .wwp-rail-kicker,
    .wwp-buy-label {
        color: var(--wwp-accent-soft);
        letter-spacing: 0.14em;
        font-size: 0.75rem;
    }

    .wwp-creator-label,
    .wwp-buy-copy,
    .wwp-lead,
    .wwp-prose p,
    .wwp-side-copy,
    .wwp-feature-copy,
    .wwp-card-short,
    .wwp-raw-list,
    .wwp-side-list {
        color: var(--wwp-muted);
    }

    .wwp-title,
    .wwp-section-title,
    .wwp-related-title,
    .wwp-side-title,
    .wwp-rail-title {
        color: var(--wwp-text);
        letter-spacing: -0.04em;
    }

    .wwp-title {
        max-width: 16ch;
        font-size: clamp(2.5rem, 5vw, 4.3rem);
        line-height: 0.94;
        margin: 0.9rem 0 0.8rem;
    }

    .wwp-hero-copy,
    .wwp-buy,
    .wwp-gallery-main,
    .wwp-gallery-rail,
    .wwp-section,
    .wwp-side-card {
        padding: 1.5rem;
    }

    .wwp-hero-copy {
        min-width: 0;
    }

    .wwp-lead {
        max-width: 78ch;
    }

    .wwp-hero-highlights {
        margin-top: 1.2rem;
        padding-top: 1rem;
        border-top: 1px solid rgba(41,32,22,0.10);
    }

    .wwp-mini-point {
        color: var(--wwp-text);
    }

    .wwp-mini-dot,
    .wwp-feature-icon {
        background: linear-gradient(135deg, #60a5fa, #22c55e);
        box-shadow: none;
    }

    .wwp-buy {
        background: linear-gradient(180deg, rgba(16, 27, 44, 0.98), rgba(7, 12, 22, 0.98));
    }

    .wwp-price-value {
        color: var(--wwp-text);
        font-size: clamp(2.3rem, 4vw, 3.4rem);
        letter-spacing: -0.06em;
    }

    .wwp-btn {
        min-height: 50px;
        background: rgba(255,255,255,0.04);
        color: var(--wwp-text);
        border-color: rgba(148,163,184,0.16);
        box-shadow: none;
    }

    .wwp-btn-primary {
        background: var(--wwp-accent);
        color: #fffaf2;
        border-color: var(--wwp-accent);
    }

    .wwp-btn-primary:hover {
        background: #1d4ed8;
        border-color: #1d4ed8;
    }

    .wwp-btn-ghost {
        background: rgba(255,255,255,0.05);
    }

    .wwp-buy-point,
    .wwp-feature-card,
    .wwp-raw-body,
    .wwp-card,
    .wwp-side-card {
        background: rgba(255,255,255,0.035);
        border-color: rgba(148,163,184,0.12);
    }

    .wwp-buy-point strong,
    .wwp-card-price {
        color: var(--wwp-text);
    }

    .wwp-buy-point span {
        color: var(--wwp-dim);
    }

    .wwp-gallery-main,
    .wwp-gallery-rail {
        background: rgba(9,14,24,0.9);
    }

    .wwp-gallery {
        grid-template-columns: minmax(0, 1fr);
        gap: 1rem;
    }

    .wwp-gallery-frame {
        min-height: 760px;
        border-radius: 2px;
        border-color: rgba(148,163,184,0.10);
        background:
            linear-gradient(45deg, rgba(255,255,255,0.92) 25%, transparent 25%, transparent 75%, rgba(255,255,255,0.92) 75%),
            linear-gradient(45deg, rgba(255,255,255,0.92) 25%, transparent 25%, transparent 75%, rgba(255,255,255,0.92) 75%),
            #d8dee8;
        background-position: 0 0, 14px 14px;
        background-size: 28px 28px;
    }

    .wwp-gallery-frame img {
        padding: 1.4rem;
    }

    .wwp-gallery-badge,
    .wwp-thumbs-count {
        background: rgba(9,14,24,0.86);
        color: var(--wwp-text);
        border-color: rgba(148,163,184,0.14);
    }

    .wwp-thumb {
        min-height: 110px;
        display: grid;
        grid-template-columns: 92px minmax(0, 1fr);
        gap: 0.95rem;
        align-items: center;
        padding: 0.75rem;
        border-radius: 2px;
        background: rgba(255,255,255,0.025);
        border-color: rgba(148,163,184,0.10);
        text-align: left;
    }

    .wwp-thumb-media {
        display: block;
        width: 92px;
        height: 92px;
        border-radius: 2px;
        overflow: hidden;
        background: #d8dee8;
    }

    .wwp-thumb img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
        border-radius: 2px;
        filter: brightness(1.08) contrast(0.98);
    }

    .wwp-thumb-copy {
        display: grid;
        gap: 0.18rem;
        min-width: 0;
    }

    .wwp-thumb-label {
        color: var(--wwp-accent-soft);
        font-size: 0.68rem;
        font-weight: 900;
        letter-spacing: 0.12em;
        text-transform: uppercase;
    }

    .wwp-thumb-name {
        color: var(--wwp-text);
        font-size: 0.98rem;
        font-weight: 800;
        line-height: 1.2;
    }

    .wwp-thumb-meta {
        color: var(--wwp-muted);
        font-size: 0.84rem;
        font-weight: 700;
    }

    .wwp-thumb.is-active {
        background: rgba(255,255,255,0.06);
        border-color: rgba(29,41,57,0.32);
        box-shadow: inset 0 0 0 1px rgba(29,41,57,0.14);
    }

    .wwp-gallery-rail {
        padding-top: 1.1rem;
    }

    .wwp-thumbs-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 1rem;
    }

    .wwp-card {
        border-radius: 2px;
    }

    .wwp-card-img {
        height: 210px;
        background: #d8dee8;
        border-bottom-color: rgba(148,163,184,0.10);
    }

    .wwp-card-imgshade {
        background: linear-gradient(180deg, rgba(255,255,255,0) 68%, rgba(2,6,23,0.16));
    }

    @media (max-width: 1120px) {
        .wwp-inner {
            width: 100%;
        }
        .wwp-gallery-frame { min-height: 560px; }
    }

    @media (max-width: 820px) {
        .wwp-title { max-width: none; font-size: clamp(2rem, 9vw, 3.15rem); }
        .wwp-gallery-frame { min-height: 430px; }
        .wwp-thumbs-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
        .wwp-thumb {
            grid-template-columns: 1fr;
            gap: 0.75rem;
        }
        .wwp-thumb-media {
            width: 100%;
            height: 150px;
        }
    }

    @media (max-width: 560px) {
        .wwp-inner {
            width: min(100vw - 24px, 100%);
        }
        .wwp-hero-copy,
        .wwp-buy,
        .wwp-gallery-main,
        .wwp-gallery-rail,
        .wwp-section,
        .wwp-side-card {
            padding: 1.05rem;
        }

        .wwp-gallery-frame { min-height: 320px; }
        .wwp-thumbs-grid {
            display: flex;
            gap: 0.75rem;
            overflow-x: auto;
            padding-bottom: 0.25rem;
            scroll-snap-type: x proximity;
        }
        .wwp-thumb {
            flex: 0 0 260px;
            scroll-snap-align: start;
        }
    }


