/* Cyberpunkbando — cyan #01F3FC, black, pink #e0287d */
:root {
    --cp-cyan: #01F3FC;
    --cp-cyan-dark: #01c9d1;
    --cp-pink: #e0287d;
    --cp-pink-dark: #c41f6b;
    --cp-black: #000000;
    --cp-black-soft: #0a0a0a;
    --cp-red: #E31E24;
    --cp-red-dark: #c41a1f;
    --cp-white: #ffffff;
    --cp-gray: #888;
    --cp-heading-font: "Original Surfer", "Rajdhani", cursive;
    --cp-body-font: "Turret Road", "Rajdhani", sans-serif;
    /* legacy alias for replacements */
    --cp-yellow: var(--cp-cyan);
    --cp-yellow-dark: var(--cp-cyan-dark);
}

/* ----- Cart: inside nav bar (right side, inline with Shop Now & Login) ----- */
.landing-nav .nav-right .cart-header.nav-cart {
    position: relative;
    top: auto;
    left: auto;
}

.landing-nav .nav-right .cart-icon {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    color: var(--cp-cyan);
    font-size: 1.2rem;
    cursor: pointer;
    transition: color 0.2s;
}

.landing-nav .nav-right .cart-icon:hover {
    color: var(--cp-white);
}

.landing-nav .nav-right .cart-count {
    position: absolute;
    top: -4px;
    right: -4px;
    min-width: 1.1rem;
    height: 1.1rem;
    padding: 0 4px;
    font-size: 0.7rem;
    line-height: 1.1rem;
    text-align: center;
    background: var(--cp-pink);
    color: var(--cp-white);
    border-radius: 50%;
}

.landing-nav .nav-right .cart-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    margin-top: 0.5rem;
    background: var(--cp-black-soft);
    border: 1px solid #333;
    z-index: 1001;
}

body .cart-dropdown {
    background: var(--cp-black-soft);
    border-color: #333;
}

/* ----- Layout (home only) ----- */
body.landing-page {
    background: var(--cp-black);
    color: var(--cp-white);
    font-family: var(--cp-body-font);
}

.landing-page section {
    border-bottom: none;
}

/* ----- Top nav bar ----- */
.landing-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 2rem;
    background: var(--cp-black);
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.landing-nav .brand {
    font-size: 1.5rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--cp-cyan);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.landing-nav .brand:hover {
    color: var(--cp-cyan);
    opacity: 0.9;
}

.landing-nav .nav-logo-img {
    height: 54px;
    width: auto;
    display: block;
}

.landing-nav .nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.landing-nav .nav-links a {
    color: var(--cp-white);
    text-decoration: none;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.05em;
    transition: color 0.2s;
}

.landing-nav .nav-links a:hover {
    color: var(--cp-cyan);
}

.landing-nav .nav-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.25rem;
    background: var(--cp-cyan);
    color: var(--cp-black);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
}

.landing-nav .nav-cta:hover {
    background: var(--cp-cyan-dark);
    color: var(--cp-black);
}

.landing-nav .nav-cta i {
    font-size: 1rem;
}

.landing-nav .nav-login-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    color: var(--cp-white);
    text-decoration: none;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.05em;
    transition: color 0.2s;
}

.landing-nav .nav-login-link:hover {
    color: var(--cp-cyan);
}

.landing-nav .nav-login-link i {
    font-size: 1rem;
}

.landing-nav .nav-right {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.landing-nav .nav-welcome {
    font-size: 0.85rem;
    color: var(--cp-gray);
}

.landing-nav .nav-login {
    color: var(--cp-white);
    text-decoration: none;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.05em;
}

.landing-nav .nav-login:hover {
    color: var(--cp-cyan);
}

.landing-nav .nav-dropdown-wrap {
    position: relative;
}

.landing-nav .nav-dropdown-trigger {
    background: none;
    border: none;
    color: var(--cp-white);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    cursor: pointer;
    padding: 0;
}

.landing-nav .nav-dropdown-trigger:hover {
    color: var(--cp-cyan);
}

.landing-nav .nav-dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    margin-top: 0.5rem;
    min-width: 180px;
    background: var(--cp-black-soft);
    border: 1px solid #333;
    padding: 0.5rem 0;
    z-index: 1001;
}

.landing-nav .nav-dropdown-content.show {
    display: block;
}

.landing-nav .nav-dropdown-content a {
    display: block;
    padding: 0.6rem 1rem;
    color: var(--cp-white);
    font-size: 0.85rem;
}

.landing-nav .nav-dropdown-content a:hover {
    background: #1a1a1a;
    color: var(--cp-cyan);
}

/* Mobile menu trigger (reuse dropdown for non-home or add later) */
.landing-nav .menu-trigger {
    display: none;
    background: none;
    border: none;
    color: var(--cp-white);
    font-size: 1rem;
    cursor: pointer;
}

@media (max-width: 992px) {
    .landing-nav .nav-links { display: none; }
    .landing-nav .menu-trigger { display: block; }
}

/* ----- Glitch effect for headings ----- */
.hero-glitch {
    position: relative;
    display: inline-block;
    color: var(--cp-white);
    text-shadow: 0 0 10px rgba(1, 243, 252, 0.5);
    animation: glitch-skew 4s infinite;
}

.hero-glitch::before,
.hero-glitch::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-glitch::before {
    left: 2px;
    text-shadow: -2px 0 var(--cp-pink);
    clip-path: polygon(0 0, 100% 0, 100% 35%, 0 35%);
    animation: glitch-1 2s infinite linear alternate-reverse;
}

.hero-glitch::after {
    left: -2px;
    text-shadow: 2px 0 var(--cp-cyan);
    clip-path: polygon(0 65%, 100% 65%, 100% 100%, 0 100%);
    animation: glitch-2 2.5s infinite linear alternate-reverse;
}

@keyframes glitch-1 {
    0% { transform: translate(0); }
    20% { transform: translate(-2px, 2px); }
    40% { transform: translate(2px, -2px); }
    60% { transform: translate(-2px, -2px); }
    80% { transform: translate(2px, 2px); }
    100% { transform: translate(0); }
}

@keyframes glitch-2 {
    0% { transform: translate(0); }
    20% { transform: translate(2px, -2px); }
    40% { transform: translate(-2px, 2px); }
    60% { transform: translate(2px, 2px); }
    80% { transform: translate(-2px, -2px); }
    100% { transform: translate(0); }
}

@keyframes glitch-skew {
    0%, 90%, 100% { transform: skew(0deg); }
    92% { transform: skew(-0.5deg); }
    94% { transform: skew(0.5deg); }
    96% { transform: skew(-0.5deg); }
    98% { transform: skew(0.5deg); }
}

/* ----- Hero (full-width with background image on home) ----- */
.landing-hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 85vh;
    margin-top: 60px;
    position: relative;
}

.landing-hero.hero-with-bg .hero-right {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Decorative hero shapes (home only) - pure CSS animations */
.landing-hero {
    overflow: hidden;
}

.landing-hero .hero-left,
.landing-hero .hero-right {
    position: relative;
    z-index: 3;
}

.landing-hero .hero-decor {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    opacity: 1;
}

.decor-circle {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(1, 243, 252, 0.85);
    box-shadow: 0 0 50px rgba(1, 243, 252, 0.38);
    animation: decor-orbit 10s linear infinite;
    background: radial-gradient(circle at 30% 30%, rgba(1, 243, 252, 0.18), rgba(1, 243, 252, 0.02) 55%, transparent 70%);
}

.decor-circle--a {
    width: 320px;
    height: 320px;
    left: -90px;
    top: 20%;
}

.decor-circle--b {
    width: 235px;
    height: 235px;
    right: 6%;
    top: 12%;
    border-color: rgba(224, 40, 125, 0.7);
    box-shadow: 0 0 50px rgba(224, 40, 125, 0.26);
    animation-duration: 12s;
    background: radial-gradient(circle at 35% 25%, rgba(224, 40, 125, 0.18), rgba(224, 40, 125, 0.02) 55%, transparent 70%);
}

.decor-circle--c {
    width: 520px;
    height: 520px;
    left: 22%;
    bottom: -320px;
    border-color: rgba(1, 243, 252, 0.35);
    box-shadow: 0 0 70px rgba(1, 243, 252, 0.18);
    animation-duration: 14s;
    background: radial-gradient(circle at 30% 35%, rgba(1, 243, 252, 0.14), rgba(1, 243, 252, 0.02) 55%, transparent 70%);
}

@keyframes decor-orbit {
    0% { transform: translate3d(0, 0, 0) rotate(0deg); }
    50% { transform: translate3d(0, -10px, 0) rotate(180deg); }
    100% { transform: translate3d(0, 0, 0) rotate(360deg); }
}

.decor-line {
    position: absolute;
    height: 2px;
    background: linear-gradient(90deg, rgba(1, 243, 252, 0), rgba(1, 243, 252, 0.55), rgba(1, 243, 252, 0));
    opacity: 1;
    animation: decor-scan 5s ease-in-out infinite;
}

.decor-line--a {
    width: 68%;
    left: -10%;
    top: 22%;
}

.decor-line--b {
    width: 55%;
    right: -10%;
    top: 60%;
    background: linear-gradient(90deg, rgba(224, 40, 125, 0), rgba(224, 40, 125, 0.5), rgba(224, 40, 125, 0));
    animation-duration: 6s;
}

@keyframes decor-scan {
    0%, 100% { transform: translateX(0); opacity: 0.45; }
    50% { transform: translateX(12px); opacity: 0.85; }
}

.decor-dotgrid {
    position: absolute;
    inset: -30%;
    opacity: 0.62;
    background-image:
        radial-gradient(circle at 1px 1px, rgba(1, 243, 252, 0.55) 1px, transparent 1px);
    background-size: 24px 24px;
    transform: rotate(-10deg);
    animation: decor-drift 18s linear infinite;
    mask-image: radial-gradient(circle at 50% 45%, rgba(0,0,0,1) 0%, rgba(0,0,0,0) 60%);
}

@keyframes decor-drift {
    0% { transform: translate3d(0, 0, 0) rotate(-10deg); }
    50% { transform: translate3d(-40px, 30px, 0) rotate(-10deg); }
    100% { transform: translate3d(0, 0, 0) rotate(-10deg); }
}

@media (prefers-reduced-motion: reduce) {
    .decor-circle,
    .decor-line,
    .decor-dotgrid {
        animation: none !important;
    }
}

.landing-hero .hero-left {
    background: linear-gradient(135deg, rgba(0,0,0,0.92) 0%, rgba(10,10,10,0.88) 100%);
    color: var(--cp-white);
    padding: 4rem 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Extra pure-CSS modern overlay: grid + scanline (left panel only) */
.landing-hero .hero-left::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background:
        /* Soft filled circles like your reference */
        radial-gradient(circle at 15% 22%, rgba(1, 243, 252, 0.18) 0 34%, transparent 60%),
        radial-gradient(circle at 78% 18%, rgba(224, 40, 125, 0.12) 0 28%, transparent 58%),
        radial-gradient(circle at 60% 78%, rgba(1, 243, 252, 0.10) 0 26%, transparent 60%),
        /* Outlined-ish ring glow */
        radial-gradient(circle at 70% 50%, rgba(1, 243, 252, 0.10) 0 30%, transparent 31%),
        /* Subtle dot grid */
        radial-gradient(circle at 2px 2px, rgba(1, 243, 252, 0.12) 1px, transparent 1px) 0 0 / 22px 22px,
        /* Grid lines */
        repeating-linear-gradient(
            to right,
            rgba(1, 243, 252, 0.12) 0px,
            rgba(1, 243, 252, 0.12) 1px,
            transparent 1px,
            transparent 36px
        ),
        repeating-linear-gradient(
            to bottom,
            rgba(224, 40, 125, 0.08) 0px,
            rgba(224, 40, 125, 0.08) 1px,
            transparent 1px,
            transparent 28px
        );
    opacity: 0.82;
    mix-blend-mode: screen;
    mask-image: radial-gradient(circle at 30% 35%, black 0%, transparent 65%);
    animation: hero-grid-drift 10s linear infinite;
}


@keyframes hero-grid-drift {
    0% { transform: translate3d(0, 0, 0); }
    50% { transform: translate3d(-18px, 10px, 0); }
    100% { transform: translate3d(0, 0, 0); }
}

@keyframes hero-scan {
    0%, 100% { transform: translateY(0); opacity: 0.35; }
    50% { transform: translateY(210px); opacity: 0.75; }
}

.landing-hero .hero-badges {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.landing-hero .hero-badge {
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.landing-hero .hero-title {
    font-family: var(--cp-heading-font);
    font-size: clamp(2rem, 5vw, 5.2rem);
    font-weight: 800;
    line-height: 1.15;
    text-transform: uppercase;
    letter-spacing: -0.02em;
    margin-bottom: 1rem;
}

.landing-hero .hero-japanese {
    font-size: clamp(1rem, 1.5vw, 1.2rem);
    color: #fff;
    margin-bottom: 0.25rem;
    font-style: italic;
    letter-spacing: 0.02em;
    font-weight: bolder;
}

.landing-hero .hero-japanese-sub {
    font-size: 0.9rem;
    color: var(--cp-gray);
    opacity: 0.85;
    margin-bottom: 2rem;
}

.landing-hero .hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.landing-hero .btn-primary-cp {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: var(--cp-cyan);
    color: var(--cp-black);
    border: 2px solid var(--cp-cyan);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
}

.landing-hero .btn-primary-cp:hover {
    background: transparent;
    color: var(--cp-cyan);
}

.landing-hero .btn-secondary-cp {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: transparent;
    color: var(--cp-cyan);
    border: 2px solid var(--cp-cyan);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
}

.landing-hero .btn-secondary-cp:hover {
    background: var(--cp-cyan);
    color: var(--cp-black);
}

.landing-hero .hero-right {
    background: var(--cp-black);
    background-image: url('../images/hero-img.png');
    background-size: cover;
    background-position: center;
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    box-shadow:
        inset 0 0 0 1px rgba(1, 243, 252, 0.18),
        0 40px 90px rgba(0, 0, 0, 0.55);
}

.landing-hero .hero-right::before {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
    background:
        linear-gradient(90deg, rgba(0,0,0,0.88) 0%, rgba(0,0,0,0.25) 55%, rgba(0,0,0,0.82) 100%),
        radial-gradient(circle at 15% 25%, rgba(1, 243, 252, 0.25), transparent 58%),
        radial-gradient(circle at 85% 70%, rgba(224, 40, 125, 0.22), transparent 60%),
        repeating-radial-gradient(circle at 10px 10px, rgba(1, 243, 252, 0.10) 0 1px, transparent 1px 20px);
    opacity: 0.95;
}

.landing-hero .hero-right::after {
    content: '';
    position: absolute;
    inset: -25%;
    pointer-events: none;
    z-index: 2;
    opacity: 0.35;
    mix-blend-mode: screen;
    background: repeating-linear-gradient(
        to bottom,
        rgba(1, 243, 252, 0) 0px,
        rgba(1, 243, 252, 0) 10px,
        rgba(1, 243, 252, 0.25) 11px,
        rgba(1, 243, 252, 0) 12px
    );
    /* animation: hero-right-scan 6s linear infinite; */
}

@keyframes hero-right-scan {
    from { transform: translateY(-6%); }
    to { transform: translateY(6%); }
}

@media (prefers-reduced-motion: reduce) {
    .landing-hero .hero-right::after {
        animation: none !important;
    }
}

@media (max-width: 768px) {
    .landing-hero {
        grid-template-columns: 1fr;
    }
    .landing-hero .hero-right {
        min-height: 40vh;
    }
}

/* ----- Section titles ----- */
.landing-section-title {
    font-family: var(--cp-heading-font);
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: -0.02em;
    text-align: center;
    margin-bottom: 1.5rem;
}

.landing-section-title.yellow-bg {
    color: var(--cp-black);
}

.landing-section-title.dark-bg {
    color: var(--cp-white);
}

/* ----- News & Updates (black bg) — larger, modern grid ----- */
.landing-news {
    background: var(--cp-black);
    padding: 5rem 2rem 5.5rem;
}

.landing-news .landing-section-title.dark-bg {
    margin-bottom: 2.5rem;
    font-size: clamp(2rem, 3.5vw, 2.75rem);
}

.landing-news .news-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    max-width: 1800px;
    margin: 0 auto 2.5rem;
}

/* Featured card — larger, modern block */
.landing-news .news-featured {
    background: var(--cp-red);
    color: var(--cp-white);
    padding: 2.5rem 2.25rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    min-height: 480px;
    text-decoration: none;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    border-radius: 12px;
    overflow: hidden;
}

.landing-news .news-featured:hover {
    color: var(--cp-white);
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.landing-news .news-featured .news-date {
    font-size: 1rem;
    margin-bottom: 0.75rem;
    opacity: 0.95;
    letter-spacing: 0.05em;
}

.landing-news .news-featured .news-headline {
    font-size: clamp(1.5rem, 2.2vw, 1.9rem);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    line-height: 1.2;
}

/* Right column — 2x2 grid of cards, bigger */
.landing-news .news-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
    min-height: 480px;
}

.landing-news .news-card {
    background: #0d0d0d;
    border: 1px solid #252525;
    overflow: hidden;
    text-decoration: none;
    color: var(--cp-white);
    transition: border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
}

.landing-news .news-card:hover {
    border-color: var(--cp-cyan);
    color: var(--cp-white);
    transform: translateY(-4px);
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.35);
}

.landing-news .news-card .news-card-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    background: #1a1a1a;
    flex-shrink: 0;
}

.landing-news .news-card .news-card-body {
    padding: 1.35rem 1.25rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.landing-news .news-card .news-card-date {
    font-size: 0.85rem;
    color: var(--cp-gray);
    margin-bottom: 0.5rem;
    letter-spacing: 0.03em;
}

.landing-news .news-card .news-card-title {
    font-size: clamp(1rem, 1.2vw, 1.15rem);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    line-height: 1.3;
}

.landing-news .more-news {
    text-align: center;
    margin-top: 0.5rem;
}

.landing-news .more-news a {
    color: var(--cp-cyan);
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    text-decoration: none;
    transition: color 0.2s;
}

.landing-news .more-news a:hover {
    color: var(--cp-cyan-dark);
    text-decoration: underline;
}

/* ----- Guide section (home) ----- */
.landing-guide {
    position: relative;
    background:
        radial-gradient(1200px 520px at 15% 10%, rgba(1, 243, 252, 0.1), transparent 60%),
        radial-gradient(900px 420px at 85% 88%, rgba(224, 40, 125, 0.12), transparent 58%),
        linear-gradient(180deg, #080808 0%, var(--cp-black) 100%);
    color: var(--cp-white);
    padding: 4.75rem 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.landing-guide .landing-guide-inner {
    max-width: 1180px;
    margin: 0 auto;
}

.landing-guide .landing-section-title {
    margin-bottom: 0.85rem;
}

.landing-guide .landing-guide-intro {
    max-width: 760px;
    margin: 0 auto 2.5rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.86);
    font-size: 1.05rem;
    line-height: 1.65;
}

.landing-guide .guide-steps {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.2rem;
}

.landing-guide .guide-step {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(1, 243, 252, 0.22);
    border-radius: 14px;
    padding: 1.35rem 1.2rem 1.45rem;
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.35);
    transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.landing-guide .guide-step:hover {
    transform: translateY(-4px);
    border-color: rgba(224, 40, 125, 0.55);
    box-shadow: 0 22px 42px rgba(224, 40, 125, 0.15);
}

.landing-guide .guide-step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 52px;
    height: 30px;
    padding: 0 0.5rem;
    margin-bottom: 0.95rem;
    border: 1px solid var(--cp-cyan);
    border-radius: 999px;
    font-weight: 800;
    color: var(--cp-cyan);
    letter-spacing: 0.04em;
}

.landing-guide .guide-step-title {
    font-family: var(--cp-heading-font);
    color: var(--cp-white);
    text-transform: uppercase;
    letter-spacing: 0.01em;
    font-size: clamp(1.15rem, 2vw, 1.5rem);
    margin-bottom: 0.6rem;
}

.landing-guide .guide-step-text {
    margin: 0;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    font-size: 0.98rem;
}

@media (max-width: 1024px) {
    .landing-guide .guide-steps {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 768px) {
    .landing-news {
        padding: 3.5rem 1.5rem 4rem;
    }
    .landing-news .news-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-bottom: 2rem;
    }
    .landing-news .news-featured {
        min-height: 320px;
        padding: 2rem;
    }
    .landing-news .news-list {
        grid-template-columns: 1fr;
        gap: 1rem;
        min-height: auto;
    }
    .landing-news .news-card .news-card-img {
        height: 180px;
    }

    .landing-guide {
        padding: 3.5rem 1.5rem 3.75rem;
    }

    .landing-guide .guide-steps {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

/* ----- Welcome / Feature collection (with bg image) ----- */
.landing-welcome {
    padding: 4.5rem 2rem;
    color: var(--cp-white);
    position: relative;
    background-color: var(--cp-black);
}

.landing-welcome.welcome-with-bg {
    background-image: url('../images/feature-collection-bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.landing-welcome.welcome-with-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.6) 50%, rgba(0,0,0,0.8) 100%);
    pointer-events: none;
}

.landing-welcome .welcome-section-title {
    font-family: var(--cp-heading-font);
    position: relative;
    z-index: 1;
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: -0.02em;
    text-align: center;
    margin-bottom: 1rem;
    display: block;
}

.landing-welcome .welcome-section-title.hero-glitch {
    text-shadow: 0 0 20px rgba(1, 243, 252, 0.4);
}

.landing-welcome .welcome-intro {
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin: 0 auto 3rem;
    text-align: center;
    font-size: 1.1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
}

.landing-welcome .welcome-cards {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
    max-width: 1800px;
    margin: 0 auto;
}

.landing-welcome .welcome-card {
    background: rgba(13, 13, 13, 0.95);
    color: var(--cp-white);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.landing-welcome .welcome-card:hover {
    transform: translateY(-6px);
    color: var(--cp-white);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.landing-welcome .welcome-card .welcome-card-img {
    width: 100%;
    height: 275px;
    object-fit: cover;
    background: #1a1a1a;
    border-radius: 12px 12px 0 0;
}

.landing-welcome .welcome-card .welcome-card-body {
    padding: 1.25rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.landing-welcome .welcome-card .welcome-card-title {
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    margin-bottom: 0.5rem;
    color: var(--cp-white);
}

.landing-welcome .welcome-card .welcome-card-meta {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1rem;
}

.landing-welcome .welcome-card .welcome-card-cta {
    margin-top: auto;
    display: inline-block;
    color: var(--cp-cyan);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.landing-welcome .welcome-card:hover .welcome-card-cta {
    color: var(--cp-cyan);
    text-decoration: underline;
}

/* ----- Newsletter (dark, animated accents) ----- */
.landing-newsletter {
    position: relative;
    background: radial-gradient(1200px 500px at 20% 10%, rgba(1, 243, 252, 0.12), transparent 55%),
                radial-gradient(900px 450px at 85% 80%, rgba(224, 40, 125, 0.12), transparent 60%),
                linear-gradient(180deg, #050505 0%, var(--cp-black) 100%);
    color: var(--cp-white);
    padding: 5rem 2rem;
    overflow: hidden;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.landing-newsletter::before,
.landing-newsletter::after {
    content: '';
    position: absolute;
    inset: -40%;
    background-repeat: no-repeat;
    pointer-events: none;
    opacity: 0.9;
    filter: blur(0px);
}

/* Floating cyan orb */
.landing-newsletter::before {
    background-image: radial-gradient(circle at 30% 30%, rgba(1, 243, 252, 0.35), transparent 55%);
    animation: float-orb 12s ease-in-out infinite;
}

/* Floating pink orb */
.landing-newsletter::after {
    background-image: radial-gradient(circle at 70% 60%, rgba(224, 40, 125, 0.35), transparent 55%);
    animation: float-orb-2 14s ease-in-out infinite;
}

@keyframes float-orb {
    0%, 100% { transform: translate3d(-4%, -2%, 0); }
    50% { transform: translate3d(6%, 4%, 0); }
}

@keyframes float-orb-2 {
    0%, 100% { transform: translate3d(4%, 2%, 0); }
    50% { transform: translate3d(-6%, -4%, 0); }
}

/* Subtle scanning lines */
.landing-newsletter .newsletter-inner::before {
    content: '';
    position: absolute;
    left: 50%;
    top: -120px;
    width: min(900px, 92vw);
    height: 240px;
    transform: translateX(-50%);
    background: repeating-linear-gradient(
        90deg,
        rgba(1, 243, 252, 0.0) 0px,
        rgba(1, 243, 252, 0.0) 24px,
        rgba(1, 243, 252, 0.08) 25px,
        rgba(1, 243, 252, 0.0) 26px
    );
    opacity: 0.35;
    mask-image: radial-gradient(circle at 50% 60%, black 0%, transparent 70%);
    pointer-events: none;
    animation: scan-pan 10s linear infinite;
}

@keyframes scan-pan {
    0% { transform: translateX(-50%) translateY(0); }
    100% { transform: translateX(-50%) translateY(160px); }
}

@media (prefers-reduced-motion: reduce) {
    .landing-newsletter::before,
    .landing-newsletter::after,
    .landing-newsletter .newsletter-inner::before {
        animation: none !important;
    }
}

.landing-newsletter .newsletter-inner {
    max-width: 560px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
    padding: 2.25rem 2rem;
    border-radius: 14px;
    background: rgba(10, 10, 10, 0.72);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.55);
}

.landing-newsletter .landing-section-title {
    margin-bottom: 0.75rem;
    color: var(--cp-white);
}

.landing-newsletter .newsletter-desc {
    margin-bottom: 1.5rem;
    font-size: 1rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.78);
}

.landing-newsletter .newsletter-form {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.landing-newsletter .newsletter-form input[type="email"] {
    flex: 1;
    min-width: 220px;
    padding: 1rem 1.25rem;
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: rgba(0, 0, 0, 0.55);
    font-size: 1rem;
    color: var(--cp-white);
    border-radius: 10px;
}

.landing-newsletter .newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.55);
}

.landing-newsletter .newsletter-form button,
.landing-newsletter .newsletter-form .btn-submit-cp {
    padding: 1rem 2rem;
    background: var(--cp-cyan);
    color: var(--cp-black);
    border: 2px solid var(--cp-cyan);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
    border-radius: 10px;
}

.landing-newsletter .newsletter-form button:hover,
.landing-newsletter .newsletter-form .btn-submit-cp:hover {
    background: transparent;
    color: var(--cp-cyan);
}

/* ----- Footer (black) ----- */
.landing-footer {
    background: var(--cp-black);
    color: var(--cp-white);
    padding: 3rem 2rem 2rem;
    border-top: 1px solid #222;
}

.landing-footer .footer-top {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #222;
}

.landing-footer .footer-social-title {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
    color: var(--cp-gray);
}

.landing-footer .footer-social-links {
    display: flex;
    gap: 1rem;
}

.landing-footer .footer-social-links a {
    color: var(--cp-white);
    font-size: 1.25rem;
    transition: color 0.2s;
}

.landing-footer .footer-social-links a:hover {
    color: var(--cp-yellow);
}

.landing-footer .footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.landing-footer .footer-links a {
    color: var(--cp-gray);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s;
}

.landing-footer .footer-links a:hover {
    color: var(--cp-yellow);
}

.landing-footer .footer-bottom {
    text-align: center;
    color: var(--cp-gray);
    font-size: 0.85rem;
}

.landing-footer .footer-bottom .brand-footer {
    color: var(--cp-yellow);
    font-weight: 700;
    text-decoration: none;
}

.landing-footer .footer-bottom .brand-footer:hover {
    color: var(--cp-yellow);
}

/* ----- Utility: hide old hero on home when using new landing ----- */
body.landing-page .hero-container.legacy-hero {
    display: none;
}

/* Cart on landing: fixed so it stays visible below nav */
.landing-page .cart-header {
    position: fixed;
    top: 80px;
    left: 30px;
    z-index: 999;
}
.landing-page .cart-icon {
    color: var(--cp-yellow);
}
.landing-page .cart-icon:hover {
    color: var(--cp-white);
}
.landing-page .cart-dropdown {
    background: var(--cp-black-soft);
    border-color: #333;
}

/* ----- Buttons used in landing (overrides for .cyber-button on landing) ----- */
.landing-page .btn-yellow-cp {
    background: var(--cp-yellow);
    color: var(--cp-black);
    border: 2px solid var(--cp-black);
    padding: 0.6rem 1.25rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    text-decoration: none;
    display: inline-block;
    transition: background 0.2s, color 0.2s;
}

.landing-page .btn-yellow-cp:hover {
    background: var(--cp-black);
    color: var(--cp-yellow);
}

/* ========== Product page (landing theme, dynamic unchanged) ========== */
body.product-page {
    background: var(--cp-black);
    color: var(--cp-white);
    font-family: var(--cp-body-font);
    --product-page-max-width: 1800px;
}

/* ========== Product detail page (landing theme) ========== */
body.product-detail-page {
    background: var(--cp-black);
    color: var(--cp-white);
    font-family: var(--cp-body-font);
    --product-detail-max-width: 1800px;
}

body.product-detail-page section {
    border-bottom: none;
}

.product-detail-hero {
    position: relative;
    background:
        radial-gradient(1200px 450px at 15% 5%, rgba(1, 243, 252, 0.12), transparent 58%),
        radial-gradient(900px 380px at 90% 95%, rgba(224, 40, 125, 0.13), transparent 60%),
        linear-gradient(180deg, #050505 0%, var(--cp-black) 100%);
    padding: 4rem 2rem 3.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.product-detail-hero-inner {
    max-width: var(--product-detail-max-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 2rem;
    align-items: center;
}

.product-detail-kicker {
    display: inline-block;
    margin-bottom: 0.8rem;
    color: var(--cp-cyan);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 700;
    font-size: 0.82rem;
}

.product-detail-title {
    font-family: var(--cp-heading-font);
    font-size: clamp(2rem, 3.8vw, 3.2rem);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: -0.02em;
    margin: 0 0 0.65rem;
}

.product-detail-sub {
    margin: 0;
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.98rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.product-detail-sub .sep {
    margin: 0 0.35rem;
    opacity: 0.7;
}

.product-detail-hero-actions {
    margin-top: 1.35rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem;
}

.product-detail-hero-actions .btn-primary-cp,
.product-detail-hero-actions .btn-secondary-cp {
    padding: 0.85rem 1.35rem;
    font-size: 0.9rem;
}

.product-detail-hero-visual {
    position: relative;
    min-height: 260px;
    border: 1px solid rgba(1, 243, 252, 0.35);
    border-radius: 16px;
    background:
        linear-gradient(145deg, rgba(1, 243, 252, 0.06), rgba(224, 40, 125, 0.06)),
        rgba(0, 0, 0, 0.6);
    box-shadow:
        inset 0 0 0 1px rgba(255, 255, 255, 0.05),
        0 28px 58px rgba(0, 0, 0, 0.45);
    padding: 1rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    gap: 0.65rem;
    overflow: hidden;
}

.product-detail-hero-glow {
    position: absolute;
    inset: -25%;
    background:
        radial-gradient(circle at 25% 25%, rgba(1, 243, 252, 0.35), transparent 50%),
        radial-gradient(circle at 75% 70%, rgba(224, 40, 125, 0.32), transparent 52%);
    opacity: 0.7;
    pointer-events: none;
}

.product-detail-hero-chip {
    position: relative;
    z-index: 1;
    border: 1px solid rgba(255, 255, 255, 0.16);
    background: rgba(0, 0, 0, 0.5);
    border-radius: 10px;
    padding: 0.8rem 0.9rem;
}

.product-detail-hero-chip .chip-label {
    display: block;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: rgba(255, 255, 255, 0.66);
    margin-bottom: 0.2rem;
}

.product-detail-hero-chip .chip-value {
    display: block;
    color: var(--cp-white);
    font-weight: 600;
    line-height: 1.35;
}

.product-detail-main {
    background:
        radial-gradient(900px 420px at 10% 0%, rgba(1, 243, 252, 0.06), transparent 55%),
        var(--cp-black);
    padding: 3.5rem 2rem 4rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.product-detail-inner {
    max-width: var(--product-detail-max-width);
    margin: 0 auto;
}

.product-detail-panel {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 1.5rem;
    align-items: start;
    padding: 2rem 1.75rem;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background:
        linear-gradient(180deg, rgba(1, 243, 252, 0.04) 0%, transparent 45%),
        rgba(8, 8, 8, 0.92);
    box-shadow:
        inset 0 0 0 1px rgba(1, 243, 252, 0.08),
        0 24px 56px rgba(0, 0, 0, 0.35);
}

.product-detail-gallery-frame {
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: #121212;
}

.product-detail-img {
    height: 460px;
    object-fit: cover;
}

.product-detail-hint {
    margin: 0.75rem 0 0;
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.88rem;
}

.product-detail-buy-card {
    border-radius: 14px;
    border: 1px solid rgba(1, 243, 252, 0.18);
    background: rgba(0, 0, 0, 0.45);
    padding: 1.25rem 1.25rem 1.35rem;
}

.product-detail-price-row {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.product-detail-price .label {
    display: block;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: rgba(255, 255, 255, 0.55);
    margin-bottom: 0.25rem;
}

.product-detail-price .value {
    display: block;
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--cp-cyan);
    font-family: var(--cp-heading-font);
    line-height: 1.1;
}

.product-detail-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: flex-end;
}

.product-detail-meta .pill {
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.02);
    padding: 0.45rem 0.6rem;
    border-radius: 999px;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.72);
    white-space: nowrap;
}

.product-detail-short {
    color: rgba(255, 255, 255, 0.82);
    line-height: 1.6;
    font-size: 0.98rem;
    margin-bottom: 1.1rem;
}

.product-detail-coming.btn-shine {
    display: block;
    width: 100%;
    margin: 0 !important;
    padding: 0.85rem 0.9rem;
    text-align: center;
    border-radius: 10px;
    border: 1px dashed rgba(255, 255, 255, 0.35);
    color: rgba(255, 255, 255, 0.75) !important;
    background: rgba(255, 255, 255, 0.04) !important;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.product-detail-buy-row {
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 0.75rem;
    align-items: end;
    margin-top: 0.75rem;
}

.product-detail-qty .qty-label {
    display: block;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: rgba(255, 255, 255, 0.55);
    margin-bottom: 0.35rem;
}

.product-detail-qty-input {
    width: 100%;
    padding: 0.8rem 0.85rem;
    border-radius: 10px;
    border: 1px solid rgba(1, 243, 252, 0.35);
    background: rgba(0, 0, 0, 0.55);
    color: var(--cp-white);
}

.product-detail-add {
    width: 100%;
    margin: 0 !important;
    border-radius: 10px;
    border-color: var(--cp-pink) !important;
    color: var(--cp-pink) !important;
}

.product-detail-add:hover {
    background: var(--cp-pink) !important;
    color: var(--cp-white) !important;
    border-color: var(--cp-pink) !important;
}

.product-detail-trust {
    margin-top: 1rem;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.75rem;
}

.product-detail-trust .trust-item {
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.02);
    border-radius: 12px;
    padding: 0.9rem 0.9rem 0.95rem;
}

.product-detail-trust .trust-title {
    font-family: var(--cp-heading-font);
    color: var(--cp-cyan);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    font-size: 0.95rem;
    margin-bottom: 0.35rem;
}

.product-detail-trust .trust-desc {
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.9rem;
    line-height: 1.45;
}

.product-detail-sections {
    margin-top: 2rem;
    display: grid;
    gap: 1.25rem;
}

.product-detail-section {
    padding: 1.6rem 1.5rem;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(8, 8, 8, 0.7);
}

.product-detail-section-title {
    font-family: var(--cp-heading-font);
    font-size: clamp(1.35rem, 2.5vw, 1.85rem);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: -0.02em;
    color: var(--cp-white);
    margin: 0 0 0.85rem;
}

.product-detail-rich {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.75;
}

.product-detail-two-col {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.product-detail-card {
    border-radius: 14px;
    border: 1px solid rgba(1, 243, 252, 0.15);
    background: rgba(0, 0, 0, 0.4);
    padding: 1.25rem 1.2rem 1.25rem;
}

.product-detail-card-title {
    font-family: var(--cp-heading-font);
    color: var(--cp-cyan);
    text-transform: uppercase;
    letter-spacing: 0.02em;
    font-size: 1.15rem;
    margin: 0 0 0.85rem;
}

.product-detail-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 0.55rem;
}

.product-detail-list li {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.55rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.product-detail-list li:last-child {
    border-bottom: none;
}

.product-detail-list .k {
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 0.78rem;
}

.product-detail-list .v {
    color: rgba(255, 255, 255, 0.82);
    font-weight: 600;
    text-align: right;
}

.product-detail-muted {
    color: rgba(255, 255, 255, 0.76);
    line-height: 1.65;
}

.product-detail-accordion .accordion-item {
    background: rgba(0, 0, 0, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    overflow: hidden;
}

.product-detail-accordion .accordion-item + .accordion-item {
    margin-top: 0.75rem;
}

.product-detail-accordion .accordion-button {
    background: rgba(0, 0, 0, 0.35);
    color: var(--cp-white);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-size: 0.9rem;
}

.product-detail-accordion .accordion-button:not(.collapsed) {
    background: rgba(1, 243, 252, 0.08);
    color: var(--cp-white);
}

.product-detail-accordion .accordion-body {
    color: rgba(255, 255, 255, 0.78);
    line-height: 1.65;
}

.product-detail-mini-cta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.25rem 1.25rem;
    border-radius: 14px;
    border: 1px solid rgba(224, 40, 125, 0.22);
    background:
        radial-gradient(800px 260px at 20% 20%, rgba(224, 40, 125, 0.12), transparent 55%),
        rgba(0, 0, 0, 0.4);
}

.product-detail-mini-title {
    font-family: var(--cp-heading-font);
    text-transform: uppercase;
    letter-spacing: -0.02em;
    margin: 0 0 0.35rem;
    color: var(--cp-white);
}

.product-detail-mini-desc {
    margin: 0;
    color: rgba(255, 255, 255, 0.76);
    line-height: 1.6;
}

@media (max-width: 992px) {
    .product-detail-hero-inner {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .product-detail-hero-copy {
        text-align: center;
    }

    .product-detail-hero-actions {
        justify-content: center;
    }

    .product-detail-panel {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .product-detail-hero {
        padding: 3.25rem 1.5rem 2.8rem;
    }

    .product-detail-main {
        padding: 2.75rem 1.5rem 3.25rem;
    }

    .product-detail-panel {
        padding: 1.35rem 1rem;
        border-radius: 12px;
        margin-left: -0.25rem;
        margin-right: -0.25rem;
    }

    .product-detail-img {
        height: 320px;
    }

    .product-detail-trust {
        grid-template-columns: 1fr;
    }

    .product-detail-two-col {
        grid-template-columns: 1fr;
    }
}

body.product-page section {
    border-bottom: none;
}

/* Hero strips (product + art exhibit) */
.product-hero-strip,
.art-hero-strip {
    position: relative;
    background:
        radial-gradient(1200px 450px at 15% 5%, rgba(1, 243, 252, 0.12), transparent 58%),
        radial-gradient(900px 380px at 90% 95%, rgba(224, 40, 125, 0.13), transparent 60%),
        linear-gradient(180deg, #050505 0%, var(--cp-black) 100%);
    color: var(--cp-white);
    padding: 4rem 2rem 3.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.product-hero-strip-inner {
    max-width: var(--product-page-max-width);
}

.art-hero-strip-inner {
    max-width: var(--art-exhibit-max-width);
}

.product-hero-strip-inner,
.art-hero-strip-inner {
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 2rem;
    align-items: center;
}

.product-hero-copy,
.art-hero-copy {
    text-align: left;
}

.product-hero-kicker,
.art-hero-kicker {
    display: inline-block;
    margin-bottom: 0.8rem;
    color: var(--cp-cyan);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 700;
    font-size: 0.82rem;
}

.product-hero-title,
.art-hero-title {
    font-family: var(--cp-heading-font);
    font-size: clamp(2rem, 3.8vw, 3.2rem);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: -0.02em;
    margin-bottom: 0.85rem;
}

.product-hero-desc,
.art-hero-desc {
    max-width: 760px;
    font-size: 1.02rem;
    line-height: 1.7;
    margin: 0;
    color: rgba(255, 255, 255, 0.86);
}

.product-hero-actions,
.art-hero-actions {
    margin-top: 1.35rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem;
}

.product-hero-actions .btn-primary-cp,
.product-hero-actions .btn-secondary-cp,
.art-hero-actions .btn-primary-cp,
.art-hero-actions .btn-secondary-cp {
    padding: 0.85rem 1.35rem;
    font-size: 0.9rem;
}

.product-hero-stats,
.art-hero-stats {
    margin-top: 1.3rem;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.75rem;
}

.product-hero-stat,
.art-hero-stat {
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.02);
    padding: 0.75rem 0.85rem;
}

.product-hero-stat .value,
.art-hero-stat .value {
    display: block;
    font-family: var(--cp-heading-font);
    color: var(--cp-cyan);
    font-size: 1rem;
    line-height: 1.2;
    margin-bottom: 0.25rem;
}

.product-hero-stat .label,
.art-hero-stat .label {
    color: rgba(255, 255, 255, 0.76);
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.product-hero-visual,
.art-hero-visual {
    position: relative;
    min-height: 280px;
    border: 1px solid rgba(1, 243, 252, 0.35);
    border-radius: 16px;
    background:
        linear-gradient(145deg, rgba(1, 243, 252, 0.06), rgba(224, 40, 125, 0.06)),
        rgba(0, 0, 0, 0.6);
    box-shadow:
        inset 0 0 0 1px rgba(255, 255, 255, 0.05),
        0 28px 58px rgba(0, 0, 0, 0.45);
    padding: 1rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    gap: 0.65rem;
    overflow: hidden;
}

.product-hero-glow,
.art-hero-glow {
    position: absolute;
    inset: -25%;
    background:
        radial-gradient(circle at 25% 25%, rgba(1, 243, 252, 0.35), transparent 50%),
        radial-gradient(circle at 75% 70%, rgba(224, 40, 125, 0.32), transparent 52%);
    opacity: 0.7;
    pointer-events: none;
}

.product-hero-chip,
.art-hero-chip {
    position: relative;
    z-index: 1;
    border: 1px solid rgba(255, 255, 255, 0.16);
    background: rgba(0, 0, 0, 0.5);
    border-radius: 10px;
    padding: 0.8rem 0.9rem;
}

.product-hero-chip .chip-label,
.art-hero-chip .chip-label {
    display: block;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: rgba(255, 255, 255, 0.66);
    margin-bottom: 0.2rem;
}

.product-hero-chip .chip-value,
.art-hero-chip .chip-value {
    display: block;
    color: var(--cp-white);
    font-weight: 600;
    line-height: 1.35;
}

@media (max-width: 992px) {
    .product-hero-strip-inner,
    .art-hero-strip-inner {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .product-hero-copy,
    .art-hero-copy {
        text-align: center;
    }

    .product-hero-actions,
    .art-hero-actions {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .product-hero-strip,
    .art-hero-strip {
        padding: 3.25rem 1.5rem 2.8rem;
    }

    .product-hero-stats,
    .art-hero-stats {
        grid-template-columns: 1fr;
    }

    .product-hero-visual,
    .art-hero-visual {
        min-height: 220px;
    }
}

/* Main section: product shop + art gallery */
.product-main-section,
.art-main-section {
    position: relative;
    background:
        radial-gradient(900px 420px at 10% 0%, rgba(1, 243, 252, 0.06), transparent 55%),
        var(--cp-black);
    padding: 3.5rem 2rem 4rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.product-main-inner {
    max-width: var(--product-page-max-width);
}

.art-main-inner {
    max-width: var(--art-exhibit-max-width);
}

.product-main-inner,
.art-main-inner {
    margin: 0 auto;
}

.product-shop-block {
    margin-bottom: 2.75rem;
}

.product-shop-header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 1.75rem;
}

.product-shop-kicker {
    display: inline-block;
    margin-bottom: 0.65rem;
    color: var(--cp-cyan);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 700;
    font-size: 0.78rem;
}

.product-page .product-shop-title.landing-section-title.dark-bg,
.product-shop-title.landing-section-title.dark-bg {
    margin-bottom: 0.65rem;
}

.product-intro-text {
    text-align: center;
    color: rgba(255, 255, 255, 0.78);
    margin: 0 auto;
    font-size: 1.02rem;
    line-height: 1.65;
    max-width: 640px;
}

.product-shop-panel {
    position: relative;
    max-width: 640px;
    margin: 0 auto;
    padding: 1.5rem 1.5rem 1.6rem;
    border-radius: 14px;
    border: 1px solid rgba(1, 243, 252, 0.28);
    background:
        linear-gradient(145deg, rgba(1, 243, 252, 0.05), rgba(224, 40, 125, 0.04)),
        rgba(10, 10, 10, 0.85);
    box-shadow:
        inset 0 0 0 1px rgba(255, 255, 255, 0.04),
        0 20px 48px rgba(0, 0, 0, 0.45);
}

.product-shop-panel::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 14px;
    pointer-events: none;
    opacity: 0.5;
    background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(1, 243, 252, 0.12), transparent 70%);
}

.product-category-filter {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0.65rem;
}

.product-category-label {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.55);
}

.product-page .filter-section {
    width: 100%;
}

.product-page .filter-section select,
.product-page #categoryFilter {
    width: 100%;
    max-width: 100%;
    padding: 0.95rem 2.75rem 0.95rem 1.1rem;
    font-size: 0.95rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-family: var(--cp-body-font);
    background-color: rgba(0, 0, 0, 0.55);
    color: var(--cp-white);
    border: 1px solid rgba(1, 243, 252, 0.45);
    border-radius: 10px;
    cursor: pointer;
    min-width: 0;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%2301F3FC' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 12px 8px;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.product-page .filter-section select:hover,
.product-page .filter-section select:focus,
.product-page #categoryFilter:hover,
.product-page #categoryFilter:focus {
    outline: none;
    border-color: var(--cp-cyan);
    box-shadow: 0 0 0 3px rgba(1, 243, 252, 0.15);
}

@media (max-width: 768px) {
    .product-main-section {
        padding: 2.75rem 1.5rem 3.25rem;
    }

    .product-shop-block {
        margin-bottom: 2rem;
    }

    .product-shop-panel {
        padding: 1.25rem 1.15rem 1.35rem;
    }
}

/* Product grid + art gallery panel */
.product-grid-section,
.art-gallery-section {
    margin-top: 0.25rem;
    padding: 2rem 1.75rem 0.5rem;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background:
        linear-gradient(180deg, rgba(1, 243, 252, 0.04) 0%, transparent 45%),
        rgba(8, 8, 8, 0.92);
    box-shadow:
        inset 0 0 0 1px rgba(1, 243, 252, 0.08),
        0 24px 56px rgba(0, 0, 0, 0.35);
}

.product-grid-head,
.art-gallery-head {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 1.75rem;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.product-grid-kicker,
.art-gallery-kicker {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--cp-cyan);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 700;
    font-size: 0.76rem;
}

.product-grid-title,
.art-gallery-title {
    font-family: var(--cp-heading-font);
    font-size: clamp(1.35rem, 2.5vw, 1.85rem);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: -0.02em;
    color: var(--cp-white);
    margin: 0 0 0.5rem;
}

.product-grid-sub,
.art-gallery-sub {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.72);
}

.product-grid-mount,
.art-gallery-mount {
    position: relative;
}

.product-grid-mount::before,
.art-gallery-mount::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 3px;
    height: 100%;
    max-height: 120px;
    background: linear-gradient(180deg, var(--cp-cyan), transparent);
    border-radius: 2px;
    opacity: 0.65;
    pointer-events: none;
}

@media (max-width: 768px) {
    .product-grid-section,
    .art-gallery-section {
        padding: 1.35rem 1rem 0.25rem;
        border-radius: 12px;
        margin-left: -0.25rem;
        margin-right: -0.25rem;
    }

    .product-grid-mount::before,
    .art-gallery-mount::before {
        display: none;
    }
}

/* Product grid cards (product-page + related grid) */
.product-page #productGrid {
    transition: opacity 0.2s;
}

.product-page #productGrid.blurred {
    opacity: 0.5;
    pointer-events: none;
}

.product-page .product-item.product-card,
.product-detail-page .product-item.product-card {
    background: rgba(0, 0, 0, 0.45);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 0;
    overflow: hidden;
    border-radius: 12px;
    transition: border-color 0.22s ease, box-shadow 0.22s ease, transform 0.22s ease;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.35);
}

.product-page .product-item.product-card:hover,
.product-detail-page .product-item.product-card:hover {
    border-color: rgba(1, 243, 252, 0.55);
    box-shadow:
        0 20px 40px rgba(0, 0, 0, 0.45),
        0 0 0 1px rgba(224, 40, 125, 0.2);
    transform: translateY(-4px);
}

.product-page .product-card-media,
.product-detail-page .product-card-media {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4 / 3;
    background: #121212;
}

.product-page .product-card-media::after,
.product-detail-page .product-card-media::after {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(180deg, transparent 40%, rgba(0, 0, 0, 0.55) 100%);
    opacity: 0.85;
    transition: opacity 0.22s ease;
}

.product-page .product-item.product-card:hover .product-card-media::after,
.product-detail-page .product-item.product-card:hover .product-card-media::after {
    opacity: 0.65;
}

.product-page .product-card-img,
.product-detail-page .product-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    cursor: zoom-in;
    transition: transform 0.35s ease;
}

.product-page .product-item.product-card:hover .product-card-img,
.product-detail-page .product-item.product-card:hover .product-card-img {
    transform: scale(1.05);
}

.product-page .product-card-body,
.product-detail-page .product-card-body {
    padding: 1rem 1rem 1.1rem;
    gap: 0.35rem;
}

.product-page .product-card-title,
.product-detail-page .product-card-title {
    font-size: 0.98rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    margin: 0;
    color: var(--cp-white);
    line-height: 1.3;
}

.product-page .product-card-category,
.product-detail-page .product-card-category {
    margin: 0;
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.product-page .product-card-price,
.product-detail-page .product-card-price {
    margin: 0.35rem 0 0;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--cp-cyan);
    font-family: var(--cp-body-font);
}

.product-page .product-card-currency,
.product-detail-page .product-card-currency {
    font-size: 0.85em;
    opacity: 0.9;
    margin-right: 0.1em;
}

.product-page .product-card-actions,
.product-detail-page .product-card-actions {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding-top: 0.85rem;
    width: 100%;
}

.product-page .product-card-btn,
.product-detail-page .product-card-btn {
    width: 100%;
    margin: 0 !important;
    box-sizing: border-box;
    border-radius: 8px;
    font-size: 0.82rem;
    padding: 0.65rem 0.85rem;
    text-align: center;
    text-decoration: none;
    border: 1px solid var(--cp-cyan) !important;
    color: var(--cp-cyan) !important;
    background: transparent !important;
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.product-page .product-card-btn-outline:hover,
.product-detail-page .product-card-btn-outline:hover {
    background: var(--cp-cyan) !important;
    color: var(--cp-black) !important;
}

.product-page .product-card-actions .add-to-cart,
.product-detail-page .product-card-actions .add-to-cart {
    border-color: var(--cp-pink) !important;
    color: var(--cp-pink) !important;
}

.product-page .product-card-actions .add-to-cart:hover,
.product-detail-page .product-card-actions .add-to-cart:hover {
    background: var(--cp-pink) !important;
    color: var(--cp-white) !important;
    border-color: var(--cp-pink) !important;
}

.product-page .product-card-coming.btn-shine,
.product-detail-page .product-card-coming.btn-shine {
    display: block;
    width: 100%;
    margin: 0 !important;
    padding: 0.65rem 0.85rem;
    text-align: center;
    border-radius: 8px;
    border: 1px dashed rgba(255, 255, 255, 0.35);
    color: rgba(255, 255, 255, 0.75) !important;
    background: rgba(255, 255, 255, 0.04) !important;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.product-page .product-item a.cyber-button.product-card-btn,
.product-detail-page .product-item a.cyber-button.product-card-btn {
    display: block;
}

/* Related products grid on product detail page */
.product-detail-related .related-products-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.15rem;
    margin-top: 1rem;
}

.product-detail-related .related-col {
    min-width: 0;
    display: flex;
}

@media (max-width: 992px) {
    .product-detail-related .related-products-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 768px) {
    .product-detail-related .related-products-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 1rem;
    }
}

/* Pagination (product-page) */
.product-page .pagination {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 2.25rem;
    margin-bottom: 0.5rem;
    padding: 1.25rem 0 0;
    list-style: none;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.product-page .pagination .page-link {
    background: rgba(0, 0, 0, 0.55);
    border: 1px solid rgba(1, 243, 252, 0.35);
    color: var(--cp-cyan);
    padding: 0.55rem 1rem;
    border-radius: 8px;
    text-decoration: none;
    transition: background 0.2s, border-color 0.2s, color 0.2s;
}

.product-page .pagination .page-link:hover {
    background: var(--cp-cyan);
    color: var(--cp-black);
    border-color: var(--cp-cyan);
}

.product-page .pagination .page-item.active .page-link {
    background: var(--cp-cyan);
    color: var(--cp-black);
    border-color: var(--cp-cyan);
    font-weight: 700;
}

.product-page .pagination .page-item.disabled .page-link {
    color: rgba(255, 255, 255, 0.35);
    border-color: rgba(255, 255, 255, 0.12);
    background: rgba(0, 0, 0, 0.35);
}

/* Bottom CTA — product page (dark panel + cyan/pink accents) */
.product-cta-strip {
    background: var(--cp-black);
    padding: 14px 0;
    text-align: center;
}

.product-cta-strip-frame {
    position: relative;
    padding: 3.35rem 2rem 3.6rem;
    background:
        radial-gradient(ellipse 90% 70% at 50% 0%, rgba(1, 243, 252, 0.14), transparent 58%),
        radial-gradient(ellipse 55% 55% at 100% 100%, rgba(224, 40, 125, 0.12), transparent 55%),
        linear-gradient(180deg, #0d1114 0%, #060708 50%, #030303 100%);
    border-top: 1px solid rgba(1, 243, 252, 0.35);
    border-bottom: 1px solid rgba(224, 40, 125, 0.28);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.05),
        0 -12px 40px rgba(0, 0, 0, 0.45);
}

.product-cta-strip-frame::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
    width: min(520px, 72vw);
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(1, 243, 252, 0.65) 35%,
        rgba(224, 40, 125, 0.45) 65%,
        transparent
    );
    pointer-events: none;
}

.product-cta-strip-inner {
    position: relative;
    z-index: 1;
    max-width: 640px;
    margin: 0 auto;
    color: var(--cp-white);
}

.product-cta-title {
    font-family: var(--cp-heading-font);
    font-size: clamp(1.65rem, 3.2vw, 2.35rem);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    line-height: 1.2;
    margin: 0 0 0.85rem;
    color: var(--cp-white);
    text-shadow: 0 0 32px rgba(1, 243, 252, 0.18);
}

.product-cta-desc {
    font-size: 1.02rem;
    line-height: 1.65;
    margin: 0 auto 1.35rem;
    max-width: 520px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.76);
}

.product-cta-link {
    display: inline-block;
    font-size: 0.92rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--cp-cyan);
    text-decoration: none;
    padding-bottom: 0.2rem;
    border-bottom: 1px solid rgba(1, 243, 252, 0.45);
    transition: color 0.2s ease, border-color 0.2s ease, text-shadow 0.2s ease;
}

.product-cta-link:hover {
    color: #7df9ff;
    border-bottom-color: rgba(224, 40, 125, 0.65);
    text-shadow: 0 0 18px rgba(1, 243, 252, 0.35);
}

@media (max-width: 768px) {
    .product-cta-strip {
        padding: 10px 0;
    }

    .product-cta-strip-frame {
        padding: 2.6rem 1.5rem 2.85rem;
    }

    .product-cta-strip-frame::before {
        width: min(360px, 85vw);
    }
}

/* Art exhibit bottom CTA — dark panel + cyan/pink accents (easier on the eyes) */
.art-cta-strip {
    background: var(--cp-black);
    padding: 14px 0;
    text-align: center;
}

.art-cta-strip-frame {
    position: relative;
    padding: 3.35rem 2rem 3.6rem;
    background:
        radial-gradient(ellipse 90% 70% at 50% 0%, rgba(1, 243, 252, 0.14), transparent 58%),
        radial-gradient(ellipse 55% 55% at 100% 100%, rgba(224, 40, 125, 0.12), transparent 55%),
        linear-gradient(180deg, #0d1114 0%, #060708 50%, #030303 100%);
    border-top: 1px solid rgba(1, 243, 252, 0.35);
    border-bottom: 1px solid rgba(224, 40, 125, 0.28);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.05),
        0 -12px 40px rgba(0, 0, 0, 0.45);
}

.art-cta-strip-frame::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
    width: min(520px, 72vw);
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(1, 243, 252, 0.65) 35%,
        rgba(224, 40, 125, 0.45) 65%,
        transparent
    );
    pointer-events: none;
}

.art-cta-strip-inner {
    position: relative;
    z-index: 1;
    max-width: 640px;
    margin: 0 auto;
    color: var(--cp-white);
}

.art-cta-title {
    font-family: var(--cp-heading-font);
    font-size: clamp(1.65rem, 3.2vw, 2.35rem);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    line-height: 1.2;
    margin: 0 0 0.85rem;
    color: var(--cp-white);
    text-shadow: 0 0 32px rgba(1, 243, 252, 0.18);
}

.art-cta-desc {
    font-size: 1.02rem;
    line-height: 1.65;
    margin: 0 auto 1.4rem;
    max-width: 520px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.76);
}

.art-cta-link {
    display: inline-block;
    font-size: 0.92rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--cp-cyan);
    text-decoration: none;
    padding-bottom: 0.2rem;
    border-bottom: 1px solid rgba(1, 243, 252, 0.45);
    transition: color 0.2s ease, border-color 0.2s ease, text-shadow 0.2s ease;
}

.art-cta-link:hover {
    color: #7df9ff;
    border-bottom-color: rgba(224, 40, 125, 0.65);
    text-shadow: 0 0 18px rgba(1, 243, 252, 0.35);
}

@media (max-width: 768px) {
    .art-cta-strip {
        padding: 10px 0;
    }

    .art-cta-strip-frame {
        padding: 2.6rem 1.5rem 2.85rem;
    }

    .art-cta-strip-frame::before {
        width: min(360px, 85vw);
    }
}

/* Cart on product page */
.product-page .cart-header {
    position: fixed;
    top: 80px;
    left: 30px;
    z-index: 999;
}

.product-page .cart-icon {
    color: var(--cp-yellow);
}

.product-page .cart-icon:hover {
    color: var(--cp-white);
}

.product-page .cart-dropdown {
    background: var(--cp-black-soft);
    border-color: #333;
}

/* Modal on product page (landing theme) */
.product-page .modal-content {
    background: var(--cp-black-soft);
    border: 1px solid #333;
    color: var(--cp-white);
}

.product-page .modal-header {
    border-bottom-color: #333;
}

.product-page .modal-footer {
    border-top-color: #333;
}

.product-page .modal-header .btn-close {
    filter: invert(1);
}

.product-page .modal .cyber-button {
    border-color: var(--cp-yellow);
    color: var(--cp-yellow);
}

.product-page .modal .cyber-button:hover {
    background: var(--cp-yellow);
    color: var(--cp-black);
}

/* ========== Art Exhibit page (landing theme, dynamic unchanged) ========== */
body.art-exhibit-page {
    background: var(--cp-black);
    color: var(--cp-white);
    font-family: var(--cp-body-font);
    --art-exhibit-max-width: 1800px;
}

/* ========== Blog detail page (landing theme) ========== */
body.blog-detail-page {
    background: var(--cp-black);
    color: var(--cp-white);
    font-family: var(--cp-body-font);
    --blog-detail-max-width: 1200px;
}

body.blog-detail-page section {
    border-bottom: none;
}

.blog-detail-hero {
    position: relative;
    background:
        radial-gradient(1200px 450px at 15% 5%, rgba(1, 243, 252, 0.12), transparent 58%),
        radial-gradient(900px 380px at 90% 95%, rgba(224, 40, 125, 0.13), transparent 60%),
        linear-gradient(180deg, #050505 0%, var(--cp-black) 100%);
    padding: 4rem 2rem 3.25rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.blog-detail-hero-inner {
    max-width: var(--blog-detail-max-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 2rem;
    align-items: center;
}

.blog-detail-kicker {
    display: inline-block;
    margin-bottom: 0.8rem;
    color: var(--cp-cyan);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 700;
    font-size: 0.82rem;
}

.blog-detail-title {
    font-family: var(--cp-heading-font);
    font-size: clamp(2rem, 3.8vw, 3.1rem);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: -0.02em;
    margin: 0 0 0.65rem;
    line-height: 1.15;
}

.blog-detail-meta {
    margin: 0;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.blog-detail-meta .sep {
    margin: 0 0.35rem;
    opacity: 0.7;
}

.blog-detail-sub {
    margin: 1rem 0 0;
    color: rgba(255, 255, 255, 0.82);
    line-height: 1.75;
    font-size: 1.02rem;
}

.blog-detail-tags {
    margin-top: 1.1rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.blog-tag {
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.02);
    color: rgba(255, 255, 255, 0.78);
    padding: 0.4rem 0.6rem;
    border-radius: 999px;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.blog-detail-hero-actions {
    margin-top: 1.35rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem;
}

.blog-detail-hero-actions .btn-primary-cp,
.blog-detail-hero-actions .btn-secondary-cp {
    padding: 0.85rem 1.35rem;
    font-size: 0.9rem;
}

.blog-detail-hero-visual {
    position: relative;
    min-height: 260px;
    border: 1px solid rgba(1, 243, 252, 0.35);
    border-radius: 16px;
    background:
        linear-gradient(145deg, rgba(1, 243, 252, 0.06), rgba(224, 40, 125, 0.06)),
        rgba(0, 0, 0, 0.6);
    box-shadow:
        inset 0 0 0 1px rgba(255, 255, 255, 0.05),
        0 28px 58px rgba(0, 0, 0, 0.45);
    padding: 1rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    gap: 0.65rem;
    overflow: hidden;
}

.blog-detail-hero-glow {
    position: absolute;
    inset: -25%;
    background:
        radial-gradient(circle at 25% 25%, rgba(1, 243, 252, 0.35), transparent 50%),
        radial-gradient(circle at 75% 70%, rgba(224, 40, 125, 0.32), transparent 52%);
    opacity: 0.7;
    pointer-events: none;
}

.blog-detail-hero-chip {
    position: relative;
    z-index: 1;
    border: 1px solid rgba(255, 255, 255, 0.16);
    background: rgba(0, 0, 0, 0.5);
    border-radius: 10px;
    padding: 0.8rem 0.9rem;
}

.blog-detail-hero-chip .chip-label {
    display: block;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: rgba(255, 255, 255, 0.66);
    margin-bottom: 0.2rem;
}

.blog-detail-hero-chip .chip-value {
    display: block;
    color: var(--cp-white);
    font-weight: 600;
    line-height: 1.35;
}

.blog-detail-main {
    background:
        radial-gradient(900px 420px at 10% 0%, rgba(1, 243, 252, 0.06), transparent 55%),
        var(--cp-black);
    padding: 3.25rem 2rem 4rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.blog-detail-inner {
    max-width: var(--blog-detail-max-width);
    margin: 0 auto;
}

.blog-detail-layout {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 1.5rem;
    align-items: start;
}

.blog-article {
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background:
        linear-gradient(180deg, rgba(1, 243, 252, 0.04) 0%, transparent 45%),
        rgba(8, 8, 8, 0.92);
    box-shadow:
        inset 0 0 0 1px rgba(1, 243, 252, 0.08),
        0 24px 56px rgba(0, 0, 0, 0.35);
    overflow: hidden;
}

.blog-article-media {
    background: #121212;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.blog-article-img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    display: block;
}

.blog-article-video {
    width: 100%;
    height: 420px;
    object-fit: cover;
    display: block;
}

.blog-article-unsupported {
    padding: 2rem;
    color: rgba(255, 255, 255, 0.7);
    text-align: center;
}

.blog-article-body {
    padding: 1.6rem 1.5rem 1.75rem;
}

.blog-article-content {
    color: rgba(255, 255, 255, 0.82);
    line-height: 1.85;
    font-size: 1.02rem;
}

.blog-side {
    display: grid;
    gap: 1rem;
}

.blog-side-card {
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(8, 8, 8, 0.7);
    padding: 1.2rem 1.1rem;
}

.blog-side-title {
    font-family: var(--cp-heading-font);
    color: var(--cp-cyan);
    text-transform: uppercase;
    letter-spacing: 0.02em;
    font-size: 1.05rem;
    margin-bottom: 0.75rem;
}

.blog-side-link {
    display: block;
    color: rgba(255, 255, 255, 0.82);
    text-decoration: none;
    padding: 0.65rem 0.75rem;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(0, 0, 0, 0.35);
    margin-bottom: 0.6rem;
    transition: border-color 0.2s ease, color 0.2s ease;
}

.blog-side-link:hover {
    border-color: rgba(1, 243, 252, 0.45);
    color: var(--cp-white);
}

.blog-share {
    display: flex;
    gap: 0.6rem;
    flex-wrap: wrap;
    margin-bottom: 0.65rem;
}

.blog-share-btn {
    border-radius: 10px;
    border: 1px solid rgba(1, 243, 252, 0.35);
    background: rgba(0, 0, 0, 0.35);
    color: var(--cp-cyan);
    padding: 0.6rem 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.75rem;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.blog-share-btn:hover {
    background: rgba(1, 243, 252, 0.12);
    border-color: rgba(1, 243, 252, 0.55);
}

.blog-share-btn.ghost {
    border-color: rgba(224, 40, 125, 0.35);
    color: var(--cp-pink);
}

.blog-share-btn.ghost:hover {
    background: rgba(224, 40, 125, 0.12);
    border-color: rgba(224, 40, 125, 0.55);
}

.blog-side-muted {
    color: rgba(255, 255, 255, 0.66);
    font-size: 0.9rem;
    line-height: 1.55;
}

.blog-side-list {
    margin: 0;
    padding-left: 1.1rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.7;
}

.blog-detail-bottom {
    margin-top: 1.5rem;
}

.blog-bottom-cta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.25rem 1.25rem;
    border-radius: 14px;
    border: 1px solid rgba(224, 40, 125, 0.22);
    background:
        radial-gradient(800px 260px at 20% 20%, rgba(224, 40, 125, 0.12), transparent 55%),
        rgba(0, 0, 0, 0.4);
}

.blog-bottom-title {
    font-family: var(--cp-heading-font);
    text-transform: uppercase;
    letter-spacing: -0.02em;
    margin: 0 0 0.35rem;
    color: var(--cp-white);
}

.blog-bottom-desc {
    margin: 0;
    color: rgba(255, 255, 255, 0.76);
    line-height: 1.6;
}

@media (max-width: 992px) {
    .blog-detail-hero-inner {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .blog-detail-hero-copy {
        text-align: center;
    }

    .blog-detail-hero-actions {
        justify-content: center;
    }

    .blog-detail-layout {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .blog-detail-hero {
        padding: 3.25rem 1.5rem 2.8rem;
    }

    .blog-detail-main {
        padding: 2.75rem 1.5rem 3.25rem;
    }

    .blog-article-img,
    .blog-article-video {
        height: 280px;
    }
}

/* ========== Auth pages (login / register) ========== */
.auth-page {
    background: var(--cp-black);
    color: var(--cp-white);
}

.auth-hero-strip {
    background:
        radial-gradient(1200px 450px at 15% 5%, rgba(1, 243, 252, 0.12), transparent 58%),
        radial-gradient(900px 380px at 90% 95%, rgba(224, 40, 125, 0.13), transparent 60%),
        linear-gradient(180deg, #050505 0%, var(--cp-black) 100%);
    padding: 3.25rem 2rem 2.25rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    text-align: center;
}

.auth-hero-strip-inner {
    max-width: 820px;
    margin: 0 auto;
}

.auth-hero-title {
    font-family: var(--cp-heading-font);
    font-size: clamp(1.8rem, 3.2vw, 2.5rem);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: -0.02em;
    margin-bottom: 0.65rem;
}

.auth-hero-sub {
    margin: 0;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.auth-main {
    padding: 2rem 1.5rem 3rem;
    display: flex;
    justify-content: center;
}

.auth-form-card {
    width: 100%;
    max-width: 560px;
    border-radius: 16px;
    border: 1px solid rgba(1, 243, 252, 0.22);
    background:
        radial-gradient(800px 260px at 20% 20%, rgba(1, 243, 252, 0.12), transparent 55%),
        rgba(0, 0, 0, 0.65);
    box-shadow:
        inset 0 0 0 1px rgba(255, 255, 255, 0.04),
        0 24px 56px rgba(0, 0, 0, 0.35);
    padding: 1.8rem 1.3rem 1.6rem;
}

.auth-field {
    margin-bottom: 1rem;
}

.auth-form-card .set-input-all {
    width: 100%;
    background: rgba(0, 0, 0, 0.55) !important;
    border: 1px solid rgba(1, 243, 252, 0.35) !important;
    color: var(--cp-white) !important;
    border-radius: 12px !important;
    padding: 0.9rem 1rem !important;
}

.auth-submit {
    width: 100%;
    margin-top: 0.75rem;
    padding: 0.9rem 1.25rem;
}

.auth-link {
    color: var(--cp-cyan);
    text-decoration: none;
    border-bottom: 1px solid rgba(1, 243, 252, 0.45);
    padding-bottom: 0.15rem;
}

.auth-link:hover {
    color: #7df9ff;
    border-bottom-color: rgba(224, 40, 125, 0.6);
}

body.art-exhibit-page section {
    border-bottom: none;
}

/* Art hero uses shared .art-hero-* rules with product (see “Hero strips” above) */

.art-exhibit-inner {
    max-width: 100%;
    width: 100%;
    margin: 0;
}

.art-exhibit-inner .container {
    max-width: 100%;
    padding: 0;
}

/* Grid: 2–3 cards per row, smaller images */
.art-exhibit-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.art-exhibit-grid--first {
    margin-top: 0;
}

.art-exhibit-grid--neural {
    margin-top: 2rem;
}

@media (max-width: 992px) {
    .art-exhibit-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .art-exhibit-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
}

/* Empty state */
.art-exhibit-page .no-art-message {
    text-align: center;
    padding: 3rem 2rem;
}

.art-exhibit-page .no-art-message .landing-section-title {
    margin-bottom: 0.5rem;
}

.art-empty-desc {
    color: rgba(255, 255, 255, 0.72);
    font-size: 1.05rem;
    line-height: 1.55;
    max-width: 480px;
    margin: 0 auto;
}

/* Exhibit cards (banner + digital_transmission) */
.art-exhibit-page .art-card.custom-card {
    background: rgba(0, 0, 0, 0.45);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1rem;
    border-radius: 12px;
    overflow: hidden;
    transition: border-color 0.22s ease, box-shadow 0.22s ease, transform 0.22s ease;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.35);
}

.art-exhibit-page .art-card.custom-card:hover {
    border-color: rgba(1, 243, 252, 0.55);
    box-shadow:
        0 20px 40px rgba(0, 0, 0, 0.45),
        0 0 0 1px rgba(224, 40, 125, 0.2);
    transform: translateY(-3px);
}

.art-exhibit-page .image-wrapper {
    border-radius: 10px;
    overflow: hidden;
    background: #1a1a1a;
    aspect-ratio: 4 / 3;
}

.art-exhibit-page .image-wrapper .image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.art-exhibit-page .image-wrapper .video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.art-exhibit-page .art-card .content {
    margin-top: 1rem;
}

.art-exhibit-page .art-card-title {
    font-family: var(--cp-heading-font);
    font-size: clamp(1.25rem, 2vw, 1.75rem);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    color: var(--cp-cyan);
    margin-bottom: 0.5rem;
}

.art-exhibit-page .art-card-title--sm {
    font-family: var(--cp-heading-font);
    font-size: 1.25rem;
}

.art-exhibit-page .art-card .description {
    color: rgba(255, 255, 255, 0.78);
    font-size: 1rem;
    line-height: 1.5;
    margin: 0;
}

/* Section heading (digital_transmission) */
.art-exhibit-page .art-section-heading {
    font-family: var(--cp-heading-font);
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: -0.02em;
    color: var(--cp-cyan);
    margin: 3rem 0 1.5rem;
    text-align: center;
}

/* Neural block: same grid card size, overlay on hover */
.art-exhibit-page .art-card-wrap.art-category-1 {
    margin-bottom: 0;
}

.art-exhibit-page .art-exhibit-grid .art-category-1 .svg-container {
    aspect-ratio: 4 / 3;
}

.art-exhibit-page .svg-container {
    position: relative;
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.35);
    transition: border-color 0.22s ease, box-shadow 0.22s ease;
}

.art-exhibit-page .svg-container:hover {
    border-color: rgba(1, 243, 252, 0.45);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.art-exhibit-page .image-wrapper-neural {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    background: #1a1a1a;
    aspect-ratio: 4 / 3;
}

.art-exhibit-page .image-wrapper-neural .image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.art-exhibit-page .image-wrapper-neural .video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.art-exhibit-page .overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.65);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
    padding: 1.5rem 1.5rem 2rem;
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 0.5rem;
}

.art-exhibit-page .svg-container:hover .overlay {
    opacity: 1;
}

.art-exhibit-page .overlay .overlay-title,
.art-exhibit-page .overlay h1,
.art-exhibit-page .overlay h2 {
    font-size: 1.25rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    color: var(--cp-cyan);
    margin: 0 0 0.5rem;
}

.art-exhibit-page .overlay .overlay-desc,
.art-exhibit-page .overlay p {
    position: static;
    color: var(--cp-white);
    font-size: 0.95rem;
    line-height: 1.4;
    margin: 0;
    opacity: 0.9;
}

/* Video */
.art-exhibit-page .video {
    width: 100%;
    display: block;
}

/* Cart on art-exhibit page */
.art-exhibit-page .cart-header {
    position: fixed;
    top: 80px;
    left: 30px;
    z-index: 999;
}

.art-exhibit-page .cart-icon {
    color: var(--cp-yellow);
}

.art-exhibit-page .cart-icon:hover {
    color: var(--cp-white);
}

.art-exhibit-page .cart-dropdown {
    background: var(--cp-black-soft);
    border-color: #333;
}
