.product-show-page {
    --show-bg: #0e110e;
    --show-panel: rgba(255, 255, 255, 0.035);
    --show-panel-strong: rgba(255, 255, 255, 0.06);
    --show-text: rgba(255, 255, 255, 0.96);
    --show-muted: rgba(255, 255, 255, 0.67);
    --show-faint: rgba(255, 255, 255, 0.43);
    --show-line: rgba(255, 255, 255, 0.1);
    --show-accent: #aaff00;
    --show-accent-soft: rgba(170, 255, 0, 0.1);
}

.product-show-page .page_content_wrap .content_wrap_fullscreen {
    width: 100%;
    max-width: none;
    padding-right: 0;
    padding-left: 0;
}

.product-show-shell {
    position: relative;
    width: min(1440px, calc(100% - 48px));
    margin: 0 auto;
    padding: clamp(132px, 9vw, 156px) 0 clamp(100px, 10vw, 150px);
}

.product-show-shell::before {
    position: absolute;
    z-index: -1;
    top: 40px;
    left: 8%;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    background: rgba(170, 255, 0, 0.065);
    filter: blur(130px);
    content: "";
    pointer-events: none;
}

.product-show-breadcrumb {
    display: flex;
    align-items: center;
    width: fit-content;
    max-width: 100%;
    overflow: hidden;
    gap: 12px;
    min-height: 38px;
    margin-bottom: 18px;
    padding: 0 13px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 11px;
    color: var(--show-faint);
    background: rgba(10, 13, 10, 0.72);
    backdrop-filter: blur(14px);
    font-size: 11px;
    letter-spacing: 0.055em;
    text-transform: uppercase;
}

.product-show-breadcrumb a {
    display: inline-flex;
    align-items: center;
    flex: 0 0 auto;
    gap: 9px;
    color: var(--show-muted);
}

.product-show-breadcrumb a:hover {
    color: var(--show-accent);
}

.product-show-breadcrumb strong {
    overflow: hidden;
    color: var(--show-faint);
    font-weight: 500;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.product-show-hero {
    display: grid;
    grid-template-columns: minmax(0, 1.06fr) minmax(380px, 0.94fr);
    overflow: hidden;
    height: clamp(600px, 45vw, 680px);
    min-height: 620px;
    border: 1px solid var(--show-line);
    border-radius: 30px;
    background:
        radial-gradient(circle at 8% 5%, rgba(170, 255, 0, 0.075), transparent 34%),
        linear-gradient(145deg, rgba(19, 24, 18, 0.98), rgba(12, 15, 12, 0.96));
    box-shadow: 0 30px 90px rgba(0, 0, 0, 0.24), inset 0 1px rgba(255, 255, 255, 0.025);
}

.product-show-hero-copy {
    display: flex;
    min-width: 0;
    padding: clamp(38px, 4.5vw, 64px);
    flex-direction: column;
    justify-content: center;
}

.product-show-identity {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 24px;
}

.product-show-logo {
    display: grid;
    overflow: hidden;
    width: 58px;
    height: 58px;
    padding: 9px;
    place-items: center;
    border: 1px solid rgba(170, 255, 0, 0.22);
    border-radius: 16px;
    background: var(--show-accent-soft);
}

.product-show-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.product-show-identity > div {
    display: grid;
    gap: 5px;
}

.product-show-identity a,
.product-show-identity > div > span {
    color: var(--show-accent);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.11em;
    text-transform: uppercase;
}

.product-show-identity > div > span {
    color: var(--show-faint);
}

.product-show-hero h1 {
    margin: 0;
    color: var(--show-text);
    font-size: clamp(44px, 4.7vw, 76px);
    font-weight: 500;
    letter-spacing: -0.052em;
    line-height: 0.98;
    overflow-wrap: break-word;
}

.product-show-summary {
    max-width: 630px;
    margin: 24px 0 0;
    color: var(--show-muted);
    font-size: clamp(16px, 1.35vw, 19px);
    line-height: 1.62;
}

.product-show-meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 18px;
    margin-top: 28px;
}

.product-show-meta span,
.product-show-meta a {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: var(--show-faint);
    font-size: 11px;
}

.product-show-meta a:hover {
    color: var(--show-accent);
}

.product-show-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 9px;
    margin-top: 32px;
}

.product-show-primary-action,
.product-show-external-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    min-height: 50px;
    padding: 0 18px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 700;
}

.product-show-primary-action {
    border: 1px solid var(--show-accent);
    color: #111;
    background: var(--show-accent);
}

.product-show-primary-action:hover {
    color: #111;
    background: #bcff3d;
}

.product-show-external-action {
    border: 1px solid var(--show-line);
    color: var(--show-muted);
    background: rgba(0, 0, 0, 0.17);
}

.product-show-external-action:hover {
    color: var(--show-text);
    border-color: rgba(255, 255, 255, 0.24);
}

.product-show-hero-visual {
    position: relative;
    overflow: hidden;
    min-height: 584px;
    margin: 18px 18px 18px 0;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 22px;
    background: #171a17;
}

.product-show-hero-visual > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-show-image-empty {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 68% 30%, rgba(170, 255, 0, 0.2), transparent 32%),
        linear-gradient(145deg, #181b18, #0c0f0c);
}

.product-show-image-shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(7, 9, 7, 0.02) 48%, rgba(7, 9, 7, 0.76) 100%);
}

.product-show-visual-status {
    position: absolute;
    right: 24px;
    bottom: 24px;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 10px 13px;
    border: 1px solid rgba(255, 255, 255, 0.17);
    border-radius: 999px;
    color: var(--show-text);
    background: rgba(8, 11, 8, 0.76);
    backdrop-filter: blur(18px);
}

.product-show-visual-status span {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--show-accent);
    box-shadow: 0 0 0 5px rgba(170, 255, 0, 0.11);
}

.product-show-visual-status strong {
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.product-show-content-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 300px;
    align-items: start;
    gap: 28px;
    margin-top: 28px;
}

.product-show-section,
.product-comments,
.product-show-related {
    scroll-margin-top: 118px;
}

.product-show-main-column {
    display: grid;
    min-width: 0;
    gap: 28px;
}

.product-show-section {
    overflow: hidden;
    padding: clamp(30px, 4vw, 54px);
    border: 1px solid var(--show-line);
    border-radius: 24px;
    background: var(--show-panel);
}

.product-show-section-heading {
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr) auto;
    align-items: start;
    gap: 18px;
    margin-bottom: 36px;
}

.product-show-section-heading > span {
    padding-top: 6px;
    color: var(--show-accent);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.12em;
}

.product-show-section-heading small {
    display: block;
    margin-bottom: 7px;
    color: var(--show-faint);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.product-show-section-heading h2 {
    margin: 0;
    color: var(--show-text);
    font-size: clamp(28px, 3.4vw, 46px);
    font-weight: 500;
    letter-spacing: -0.04em;
    line-height: 1.05;
}

.product-show-section-heading p {
    margin: 10px 0 0;
    color: var(--show-muted);
    font-size: 14px;
    line-height: 1.55;
}

.product-show-richtext {
    color: var(--show-muted);
    font-size: 16px;
    line-height: 1.85;
}

.product-show-richtext > *:first-child {
    margin-top: 0;
}

.product-show-richtext > *:last-child {
    margin-bottom: 0;
}

.product-show-richtext h2,
.product-show-richtext h3,
.product-show-richtext h4 {
    margin: 1.5em 0 0.65em;
    color: var(--show-text);
    font-weight: 500;
    letter-spacing: -0.025em;
}

.product-show-richtext a {
    color: var(--show-accent);
    text-decoration: underline;
    text-decoration-color: rgba(170, 255, 0, 0.35);
    text-underline-offset: 4px;
}

.product-show-richtext a.product-button-link[data-product-button="true"] {
    display: inline-flex;
    align-items: center;
    min-height: 48px;
    margin: 8px 8px 8px 0;
    padding: 0 18px;
    border: 1px solid var(--show-accent);
    border-radius: 11px;
    color: #111;
    font-size: 12px;
    font-weight: 800;
    text-decoration: none;
    background: var(--show-accent);
}

.product-show-richtext blockquote {
    margin: 26px 0;
    padding: 20px 24px;
    border-left: 2px solid var(--show-accent);
    color: var(--show-text);
    background: var(--show-accent-soft);
}

.product-show-richtext img,
.product-show-richtext video,
.product-show-richtext iframe {
    max-width: 100%;
    height: auto;
    border-radius: 14px;
}

.product-show-richtext pre,
.product-show-richtext table {
    max-width: 100%;
    overflow-x: auto;
}

.product-show-richtext table {
    display: block;
}

.product-show-section.product-release-section,
.product-show-section.product-release-history {
    padding: clamp(30px, 4vw, 54px);
    border: 1px solid var(--show-line);
    border-radius: 24px;
    background: var(--show-panel);
}

.product-show-section .product-release-verified {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 8px 11px;
    border: 1px solid rgba(170, 255, 0, 0.25);
    border-radius: 999px;
    color: var(--show-accent);
    font-size: 9px;
    font-style: normal;
    font-weight: 700;
    letter-spacing: 0.05em;
    white-space: nowrap;
    background: var(--show-accent-soft);
}

.product-show-section .product-release-card {
    background: rgba(0, 0, 0, 0.18);
}

.product-show-aside {
    position: sticky;
    top: 112px;
    display: grid;
    gap: 14px;
}

.product-show-facts {
    padding: 25px;
    border: 1px solid var(--show-line);
    border-radius: 20px;
    background: var(--show-panel);
}

.product-show-facts > span {
    display: block;
    margin-bottom: 20px;
    color: var(--show-faint);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.product-show-facts dl {
    margin: 0;
}

.product-show-facts dl > div {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 13px 0;
    border-top: 1px solid var(--show-line);
}

.product-show-facts dt,
.product-show-facts dd {
    margin: 0;
    font-size: 11px;
}

.product-show-facts dt {
    color: var(--show-faint);
}

.product-show-facts dd {
    color: var(--show-text);
    text-align: right;
}

.product-show-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 20px;
}

.product-show-tags span {
    padding: 6px 9px;
    border: 1px solid var(--show-line);
    border-radius: 999px;
    color: var(--show-muted);
    font-size: 9px;
    background: rgba(255, 255, 255, 0.025);
}

.product-show-community-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 20px;
    border: 1px solid rgba(170, 255, 0, 0.22);
    border-radius: 18px;
    color: var(--show-text);
    background: var(--show-accent-soft);
}

.product-show-community-link > span {
    display: grid;
    gap: 4px;
}

.product-show-community-link small {
    color: var(--show-accent);
    font-size: 8px;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.product-show-community-link strong {
    font-size: 12px;
}

.product-show-community-link svg {
    color: var(--show-accent);
}

.product-comments-heading > strong {
    display: grid;
    min-width: 42px;
    height: 42px;
    place-items: center;
    border: 1px solid rgba(170, 255, 0, 0.22);
    border-radius: 12px;
    color: var(--show-accent);
    font-size: 13px;
    background: var(--show-accent-soft);
}

.product-comment-notice {
    margin-bottom: 18px;
    padding: 14px 16px;
    border: 1px solid var(--show-line);
    border-radius: 12px;
    color: var(--show-muted);
    font-size: 13px;
    line-height: 1.55;
}

.product-comment-notice.success {
    color: #dfffaa;
    border-color: rgba(170, 255, 0, 0.26);
    background: rgba(170, 255, 0, 0.075);
}

.product-comment-notice.error {
    color: #ffc1c1;
    border-color: rgba(255, 111, 111, 0.28);
    background: rgba(255, 111, 111, 0.075);
}

.product-comment-notice ul {
    margin: 8px 0 0 18px;
}

.product-comment-form {
    padding: 24px;
    border: 1px solid var(--show-line);
    border-radius: 18px;
    background: rgba(0, 0, 0, 0.18);
}

.product-comment-form-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 22px;
}

.product-comment-form-heading > div {
    display: grid;
    gap: 5px;
}

.product-comment-form-heading strong {
    color: var(--show-text);
    font-size: 17px;
    font-weight: 500;
}

.product-comment-form-heading span {
    color: var(--show-faint);
    font-size: 11px;
}

.product-comment-form-heading > svg {
    color: var(--show-accent);
}

.product-comment-form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 13px;
}

.product-comment-form label {
    display: grid;
    gap: 7px;
}

.product-comment-form label.wide {
    grid-column: 1 / -1;
}

.product-comment-form label > span {
    color: var(--show-faint);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.product-comment-form input,
.product-comment-form textarea {
    width: 100%;
    margin: 0;
    border: 1px solid var(--show-line);
    border-radius: 11px;
    color: var(--show-text);
    outline: 0;
    background: rgba(255, 255, 255, 0.035);
}

.product-comment-form input {
    height: 49px;
    padding: 0 14px;
}

.product-comment-form textarea {
    min-height: 130px;
    padding: 13px 14px;
    line-height: 1.6;
    resize: vertical;
}

.product-comment-form input:focus,
.product-comment-form textarea:focus {
    border-color: rgba(170, 255, 0, 0.5);
    box-shadow: 0 0 0 3px rgba(170, 255, 0, 0.06);
}

.product-comment-form > button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    min-height: 48px;
    margin-top: 14px;
    padding: 0 18px;
    border: 1px solid var(--show-accent);
    border-radius: 11px;
    color: #111;
    font-size: 11px;
    font-weight: 800;
    background: var(--show-accent);
    cursor: pointer;
}

.product-comment-form > button:hover {
    background: #bcff3d;
}

.product-comment-honeypot {
    position: absolute;
    left: -10000px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.product-comment-thread-list {
    display: grid;
    gap: 12px;
    margin-top: 24px;
}

.public-product-comment {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 15px;
    padding: 20px;
    border: 1px solid var(--show-line);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.025);
}

.public-comment-avatar {
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    border: 1px solid rgba(170, 255, 0, 0.22);
    border-radius: 13px;
    color: var(--show-accent);
    font-size: 13px;
    font-weight: 800;
    background: var(--show-accent-soft);
}

.public-comment-content {
    min-width: 0;
}

.public-comment-content > header,
.public-admin-replies header {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}

.public-comment-content header strong,
.public-admin-replies header strong {
    color: var(--show-text);
    font-size: 13px;
}

.public-comment-content time,
.public-admin-replies time {
    color: var(--show-faint);
    font-size: 9px;
}

.public-comment-content > p,
.public-admin-replies p {
    margin: 9px 0 0;
    color: var(--show-muted);
    font-size: 13px;
    line-height: 1.7;
}

.public-admin-replies {
    display: grid;
    gap: 8px;
    margin-top: 16px;
}

.public-admin-replies article {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 11px;
    padding: 14px;
    border: 1px solid rgba(170, 255, 0, 0.16);
    border-radius: 12px;
    background: rgba(170, 255, 0, 0.045);
}

.public-admin-mark {
    display: grid;
    width: 28px;
    height: 28px;
    place-items: center;
    border-radius: 8px;
    color: var(--show-accent);
    background: var(--show-accent-soft);
}

.public-admin-replies em {
    padding: 3px 6px;
    border-radius: 999px;
    color: #111;
    font-size: 7px;
    font-style: normal;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    background: var(--show-accent);
}

.product-comments-empty {
    display: grid;
    min-height: 190px;
    place-items: center;
    align-content: center;
    border: 1px dashed var(--show-line);
    border-radius: 16px;
    text-align: center;
}

.product-comments-empty > span {
    color: var(--show-accent);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.12em;
}

.product-comments-empty strong {
    margin-top: 10px;
    color: var(--show-text);
    font-size: 17px;
}

.product-comments-empty p {
    max-width: 440px;
    margin: 7px 0 0;
    color: var(--show-muted);
    font-size: 12px;
}

.product-comments-pagination {
    margin-top: 26px;
}

.product-show-related {
    margin-top: 100px;
}

.product-show-related > header {
    margin-bottom: 34px;
}

.product-show-related > header span {
    color: var(--show-accent);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.product-show-related > header h2 {
    margin: 10px 0 0;
    color: var(--show-text);
    font-size: clamp(36px, 4vw, 58px);
    font-weight: 500;
    letter-spacing: -0.045em;
}

.product-show-related > div {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.product-show-related article {
    overflow: hidden;
    border: 1px solid var(--show-line);
    border-radius: 19px;
    background: var(--show-panel);
}

.product-show-related-image {
    display: block;
    overflow: hidden;
    aspect-ratio: 16 / 9;
    background: #181b18;
}

.product-show-related-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.45s ease;
}

.product-show-related article:hover .product-show-related-image img {
    transform: scale(1.04);
}

.product-show-related article > div {
    padding: 22px;
}

.product-show-related article > div > span {
    color: var(--show-accent);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.product-show-related h3 {
    margin: 9px 0 0;
    font-size: 23px;
    font-weight: 500;
    letter-spacing: -0.025em;
}

.product-show-related h3 a {
    color: var(--show-text);
}

.product-show-related p {
    margin: 12px 0 18px;
    color: var(--show-muted);
    font-size: 12px;
    line-height: 1.6;
}

.product-show-related article > div > a {
    color: var(--show-accent);
    font-size: 10px;
    font-weight: 800;
}

@media (max-width: 1240px) {
    .product-show-hero {
        grid-template-columns: 1fr;
        height: auto;
        min-height: 0;
    }

    .product-show-hero-visual {
        min-height: 0;
        margin: 16px 16px 0;
        aspect-ratio: 16 / 8.5;
        order: -1;
    }

    .product-show-hero-copy {
        padding: clamp(38px, 6vw, 64px);
    }

    .product-show-hero h1 {
        max-width: 900px;
    }

    .product-show-content-grid {
        grid-template-columns: 1fr;
    }

    .product-show-aside {
        position: static;
        grid-template-columns: minmax(0, 1fr) 300px;
    }
}

@media (max-width: 820px) {
    .product-show-shell {
        width: min(100% - 28px, 720px);
        padding: 112px 0 100px;
    }

    .product-show-hero {
        min-height: 0;
        border-radius: 22px;
    }

    .product-show-hero-visual {
        min-height: 0;
        margin: 12px 12px 0;
        border-radius: 16px;
        aspect-ratio: 16 / 10;
    }

    .product-show-hero-copy {
        padding: clamp(30px, 7vw, 46px);
    }

    .product-show-hero h1 {
        font-size: clamp(42px, 9vw, 62px);
    }

    .product-show-aside,
    .product-show-related > div {
        grid-template-columns: 1fr;
    }

    .product-show-section-heading {
        grid-template-columns: 34px minmax(0, 1fr);
    }

    .product-show-section-heading > :last-child:not(div) {
        grid-column: 2;
        justify-self: start;
    }

    .product-comment-form-grid {
        grid-template-columns: 1fr;
    }

    .product-comment-form label.wide {
        grid-column: span 1;
    }

    .product-show-related {
        margin-top: 76px;
    }
}

@media (max-width: 520px) {
    .product-show-shell {
        width: min(100% - 20px, 480px);
        padding-top: 102px;
    }

    .product-show-breadcrumb {
        width: 100%;
        min-height: 36px;
        margin-bottom: 12px;
        padding: 0 10px;
        gap: 8px;
        font-size: 9px;
    }

    .product-show-hero-copy,
    .product-show-section {
        padding: 24px;
    }

    .product-show-hero h1 {
        font-size: clamp(36px, 12vw, 48px);
        line-height: 1;
    }

    .product-show-hero-visual {
        min-height: 0;
        margin: 9px 9px 0;
        border-radius: 14px;
        aspect-ratio: 4 / 3;
    }

    .product-show-identity {
        margin-bottom: 20px;
    }

    .product-show-logo {
        width: 50px;
        height: 50px;
        border-radius: 13px;
    }

    .product-show-summary {
        margin-top: 20px;
        font-size: 15px;
    }

    .product-show-actions,
    .product-show-primary-action,
    .product-show-external-action {
        width: 100%;
    }

    .product-show-primary-action,
    .product-show-external-action {
        justify-content: center;
    }

    .product-show-meta {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        align-items: start;
        gap: 12px;
        margin-top: 24px;
    }

    .product-show-meta > :last-child {
        grid-column: 1 / -1;
    }

    .product-show-section-heading {
        grid-template-columns: 1fr;
    }

    .product-show-section-heading > span {
        padding: 0;
    }

    .product-show-section-heading > :last-child:not(div) {
        grid-column: auto;
    }

    .product-comment-form,
    .public-product-comment {
        padding: 17px;
    }

    .public-product-comment {
        grid-template-columns: 1fr;
    }

    .product-show-related {
        margin-top: 64px;
    }

    .product-show-related > header h2 {
        font-size: 34px;
    }

    .product-show-related article > div {
        padding: 18px;
    }
}
