/*  =============================================
    PRODUCT HERO – V3.12 SAMURAI Design System
    =============================================
    ALL interactive elements cloned 1:1 from header-samurai.css:
      - .neo-nav-link pattern (::before z-index:-1, transition:all, neoCplGlitch)
      - .neo-icon-btn pattern (::before z-index:0, !important overrides)
    ============================================= */

/* ---- SAR Currency Font ---- */
@font-face {
    font-family: "saudi_riyal";
    src: url("assets/fonts/saudi-riyal/regular/saudi_riyal.woff2") format("woff2"),
        url("assets/fonts/saudi-riyal/regular/saudi_riyal.woff") format("woff"),
        url("assets/fonts/saudi-riyal/regular/saudi_riyal.ttf") format("truetype");
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "saudi_riyal";
    src: url("assets/fonts/saudi-riyal/bold/saudi_riyal.woff2") format("woff2"),
        url("assets/fonts/saudi-riyal/bold/saudi_riyal.woff") format("woff"),
        url("assets/fonts/saudi-riyal/bold/saudi_riyal.ttf") format("truetype");
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

.riyal-symbol {
    font-family: "saudi_riyal" !important;
    font-style: normal;
}

.neeo-currency {
    font-weight: 400;
    margin-right: 4px;
}

/* ============================================
   HERO SECTION — Base
   ============================================ */
.neeo-hero-section {
    position: relative;
    min-height: 700px;
    padding: 60px 80px;
    overflow: hidden;
    background: var(--neo-bg-dark, #0a0a0a);
    isolation: isolate;
}

/* Scanlines */
.neeo-hero-section>.neeo-hero-scanlines {
    position: absolute;
    inset: 0;
    background:
        repeating-linear-gradient(0deg,
            transparent,
            transparent 2px,
            rgba(0, 240, 255, 0.03) 2px,
            rgba(0, 240, 255, 0.03) 4px);
    animation: neoHeroScanlines 8s linear infinite;
    pointer-events: none;
    z-index: 1;
    opacity: 0.3;
}

@keyframes neoHeroScanlines {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(4px);
    }
}

/* Glitch overlay */
.neeo-hero-glitch-overlay {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 3;
    opacity: 0;
    mix-blend-mode: screen;
}

.neeo-hero-glitch-overlay::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(transparent 0%, rgba(0, 240, 255, 0.08) 50%, transparent 50.5%,
            transparent 70%, rgba(255, 0, 60, 0.06) 70.5%, transparent 71%);
}

.neeo-hero-glitch-overlay::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(transparent 30%, rgba(252, 238, 10, 0.05) 30.3%, transparent 30.6%,
            transparent 80%, rgba(0, 240, 255, 0.06) 80.3%, transparent 80.6%);
}

.neeo-hero-section:hover .neeo-hero-glitch-overlay {
    animation: neoHeroGlitchFire 8s steps(1) infinite;
}

@keyframes neoHeroGlitchFire {

    0%,
    4%,
    6%,
    29%,
    31%,
    64%,
    66%,
    100% {
        opacity: 0;
        transform: none;
        clip-path: none;
    }

    5% {
        opacity: 1;
        transform: translateX(-3px) skewX(-0.5deg);
        clip-path: inset(10% 0 60% 0);
    }

    30% {
        opacity: 1;
        transform: translateX(4px) skewX(0.3deg);
        clip-path: inset(40% 0 20% 0);
    }

    65% {
        opacity: 1;
        transform: translateX(-2px) skewX(-0.2deg);
        clip-path: inset(70% 0 5% 0);
    }
}

/* Color glow pulse */
.neeo-hero-section::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 20% 50%, rgba(252, 238, 10, 0.04) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 0, 60, 0.04) 0%, transparent 50%),
        radial-gradient(circle at 40% 20%, rgba(0, 240, 255, 0.04) 0%, transparent 50%);
    animation: neoHeroPulse 6s ease-in-out infinite alternate;
    pointer-events: none;
    z-index: 1;
    mix-blend-mode: screen;
}

@keyframes neoHeroPulse {
    0% {
        opacity: 0.3;
    }

    100% {
        opacity: 0.6;
    }
}

/* Top border — color-shifting (IDENTICAL to .neo-border-top) */
.neeo-hero-border-top {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--neo-cyan, #00f0ff);
    box-shadow:
        0 0 12px currentColor,
        0 0 25px currentColor,
        0 0 40px currentColor;
    z-index: 5;
    pointer-events: none;
    animation:
        neoBorderColorShift 8s linear infinite,
        neoBorderGlitch 12s steps(1) infinite;
}

/* Bottom border */
.neeo-hero-border-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: rgba(252, 238, 10, 0.15);
    z-index: 5;
    pointer-events: none;
}

/* ============================================
   AMBIENT BLUR BG
   ============================================ */
.neeo-ambient-bg-wrapper {
    position: absolute;
    inset: 0;
    overflow: hidden;
    z-index: 0;
}

.neeo-ambient-bg {
    position: absolute;
    inset: -60px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    filter: blur(40px) brightness(0.6) saturate(1.2);
    opacity: 0;
    transition: opacity 1s ease;
    will-change: opacity;
}

.neeo-ambient-bg.active {
    opacity: 1;
}

.neeo-ambient-vignette {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background:
        radial-gradient(ellipse at center, transparent 30%, rgba(10, 10, 10, 0.7) 100%),
        linear-gradient(to bottom, transparent 60%, rgba(10, 10, 10, 0.95) 100%);
}

/* ============================================
   HERO CONTENT GRID
   ============================================ */
.neeo-hero-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    max-width: 1400px;
    margin: 0 auto;
    align-items: start;
}

.neeo-hero-left {
    padding-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.neeo-hero-right {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding-top: 20px;
}

/* ============================================
   TITLE
   ============================================ */
.neeo-game-title {
    font-family: var(--neo-font, 'Exo'), sans-serif;
    font-size: 36px;
    font-weight: 800;
    line-height: 1.2;
    color: #ffffff;
    text-transform: none;
    margin: 0;
    letter-spacing: -0.02em;
}

/* ============================================
   DESCRIPTION
   ============================================ */
.neeo-description {
    font-family: var(--neo-font, 'Exo'), sans-serif;
    font-size: 15px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.7);
    max-width: 600px;
}

.neeo-description p {
    margin: 0 0 8px;
}

/* ============================================
   SAMURAI INTERACTIVE BASE
   ============================================
   IDENTICAL to .neo-nav-link from header-samurai.css:
     - background: rgba(252,238,10,0.05)
     - border: 1px solid rgba(252,238,10,0.12)
     - clip-path: polygon(6px 0, 100% 0, calc(100% - 6px) 100%, 0 100%)
     - transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94)
     - overflow: hidden
     - ::before { z-index: -1; background: #fff; width: 0→100% }
     - :hover { color: dark; border: white; bg: transparent; animation: neoCplGlitch 0.25s linear; }
     - span { z-index: 1; }
   ============================================ */

/* ---- Stats Row ---- */
.neeo-stats-row {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.neeo-stat-item {
    position: relative;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background: rgba(252, 238, 10, 0.05);
    border: 1px solid rgba(252, 238, 10, 0.12);
    clip-path: polygon(6px 0, 100% 0, calc(100% - 6px) 100%, 0 100%);
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    overflow: hidden;
    color: #ffffff;
    font-family: var(--neo-font, 'Exo'), sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1.2px;
    text-transform: uppercase;
}

/* White fill sweep — z-index: -1 (same as .neo-nav-link::before) */
.neeo-stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background: #ffffff;
    transition: width 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: -1;
}

.neeo-stat-item:hover {
    color: var(--neo-bg-dark, #0a0a0a);
    border-color: #ffffff;
    background: transparent;
    text-shadow: none;
    animation: neoCplGlitch 0.25s linear;
}

.neeo-stat-item:hover::before {
    width: 100%;
}

.neeo-stat-icon {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
    transition: filter 0.3s;
}

.neeo-stat-item:hover .neeo-stat-icon {
    filter: brightness(0);
}

.neeo-stat-value {
    font-family: var(--neo-font, 'Exo'), sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    color: inherit;
    position: relative;
    z-index: 1;
}

/* ---- Wishlist Button ---- */
.neeo-wishlist-btn {
    cursor: pointer;
    user-select: none;
}

.neeo-wishlist-btn .neeo-heart-filled {
    display: none;
}

.neeo-wishlist-btn.in-wishlist .neeo-heart-outline {
    display: none;
}

.neeo-wishlist-btn.in-wishlist .neeo-heart-filled {
    display: block;
}

.neeo-wishlist-btn.in-wishlist {
    background: rgba(255, 0, 60, 0.12);
    border-color: rgba(255, 0, 60, 0.35);
}

/* Pulse animation on toggle */
.neeo-wishlist-btn.wishlist-loading .neeo-stat-icon {
    animation: neeoHeartPulse 0.6s ease-in-out infinite;
}

@keyframes neeoHeartPulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.3); opacity: 0.7; }
}

/* Override hover filter for wishlist filled state */
.neeo-wishlist-btn.in-wishlist:hover .neeo-heart-filled {
    filter: brightness(0);
}



/* ---- Rating ---- */
.neeo-rating {
    position: relative;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(252, 238, 10, 0.05);
    border: 1px solid rgba(252, 238, 10, 0.12);
    clip-path: polygon(6px 0, 100% 0, calc(100% - 6px) 100%, 0 100%);
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    overflow: hidden;
}

.neeo-rating::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background: #ffffff;
    transition: width 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: -1;
}

.neeo-rating:hover {
    border-color: #ffffff;
    background: transparent;
    text-shadow: none;
    animation: neoCplGlitch 0.25s linear;
}

.neeo-rating:hover::before {
    width: 100%;
}

.neeo-stars {
    display: flex;
    gap: 3px;
    position: relative;
    z-index: 1;
}

.neeo-star {
    width: 18px;
    height: 18px;
    transition: filter 0.3s;
}

.neeo-rating:hover .neeo-star {
    filter: brightness(0);
}

.neeo-rating-count {
    font-family: var(--neo-font, 'Exo'), sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.6);
    position: relative;
    z-index: 1;
    transition: color 0.3s;
}

.neeo-rating:hover .neeo-rating-count {
    color: var(--neo-bg-dark, #0a0a0a);
}

/* ---- Category Tags ---- */
.neeo-category-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.neeo-tag {
    position: relative;
    display: inline-flex;
    align-items: center;
    padding: 8px 18px;
    background: rgba(252, 238, 10, 0.05);
    border: 1px solid rgba(252, 238, 10, 0.12);
    color: #ffffff !important;
    font-family: var(--neo-font, 'Exo'), sans-serif;
    font-size: 11px;
    font-weight: 600;
    text-decoration: none !important;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    clip-path: polygon(6px 0, 100% 0, calc(100% - 6px) 100%, 0 100%);
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    overflow: hidden;
}

.neeo-tag::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background: #ffffff;
    transition: width 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: -1;
}

.neeo-tag:hover {
    color: var(--neo-bg-dark, #0a0a0a) !important;
    border-color: #ffffff;
    background: transparent;
    text-shadow: none;
    text-decoration: none !important;
    animation: neoCplGlitch 0.25s linear;
}

.neeo-tag:hover::before {
    width: 100%;
}

/* ============================================
   META GRID
   ============================================ */
.neeo-meta-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px 30px;
}

.neeo-product-type-section {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.neeo-section-label {
    font-family: var(--neo-font, 'Exo'), sans-serif;
    font-size: 10px;
    font-weight: 700;
    color: var(--neo-yellow, #FCEE0A);
    text-transform: uppercase;
    letter-spacing: 2.5px;
    padding-bottom: 6px;
    border-bottom: 1px solid rgba(252, 238, 10, 0.15);
    display: flex;
    align-items: center;
    gap: 8px;
}

.neeo-section-label::after {
    content: '';
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, var(--neo-border, #2a2a2a), transparent);
}

.neeo-region-display {
    font-family: var(--neo-font, 'Exo'), sans-serif;
}

.neeo-single-language {
    font-family: var(--neo-font, 'Exo'), sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #ffffff;
    letter-spacing: 0.5px;
}

/* ============================================
   CUSTOM LANGUAGE DROPDOWN
   ============================================ */
.neeo-custom-dropdown {
    position: relative;
    width: 200px;
    cursor: pointer;
}

.neeo-dropdown-selected {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 14px;
    background: rgba(252, 238, 10, 0.05);
    border: 1px solid rgba(252, 238, 10, 0.12);
    color: #ffffff;
    font-family: var(--neo-font, 'Exo'), sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    clip-path: polygon(6px 0, 100% 0, calc(100% - 6px) 100%, 0 100%);
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.neeo-dropdown-arrow-icon {
    font-size: 10px;
    color: rgba(255, 255, 255, 0.5);
    transition: transform 0.3s ease;
}

.neeo-custom-dropdown.open .neeo-dropdown-arrow-icon {
    transform: rotate(180deg);
}

.neeo-custom-dropdown.open .neeo-dropdown-selected {
    border-color: var(--neo-yellow, #FCEE0A);
    background: rgba(252, 238, 10, 0.08);
}

.neeo-dropdown-list {
    position: absolute;
    top: calc(100% + 4px);
    left: 0;
    right: 0;
    background: var(--neo-bg-surface, #141414);
    border: 1px solid var(--neo-border, #2a2a2a);
    list-style: none;
    padding: 4px 0;
    margin: 0;
    z-index: 100;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: all 0.25s ease;
    max-height: 200px;
    overflow-y: auto;
    backdrop-filter: blur(10px);
}

.neeo-custom-dropdown.open .neeo-dropdown-list {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.neeo-dropdown-item {
    padding: 10px 14px;
    font-family: var(--neo-font, 'Exo'), sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: rgba(255, 255, 255, 0.8);
    cursor: pointer;
    transition: all 0.2s ease;
}

.neeo-dropdown-item:hover {
    background: rgba(252, 238, 10, 0.1);
    color: #ffffff;
}

/* ============================================
   PLATFORM BUTTONS — IDENTICAL to .neo-nav-link
   ============================================ */
.neeo-platform-options {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.neeo-platform-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    height: auto;
    background: rgba(252, 238, 10, 0.05);
    border: 1px solid rgba(252, 238, 10, 0.12);
    color: #ffffff !important;
    font-family: var(--neo-font, 'Exo'), sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    text-decoration: none !important;
    clip-path: polygon(8px 0, 100% 0, calc(100% - 8px) 100%, 0 100%);
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    cursor: pointer;
    overflow: hidden;
    white-space: nowrap;
}

.neeo-platform-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background: #ffffff;
    transition: width 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: -1;
}

.neeo-platform-btn:hover {
    color: var(--neo-bg-dark, #0a0a0a) !important;
    border-color: #ffffff;
    background: transparent;
    text-shadow: none;
    text-decoration: none !important;
    animation: neoCplGlitch 0.25s linear;
}

.neeo-platform-btn:hover::before {
    width: 100%;
}

.neeo-platform-btn.is-steam {
    border-color: rgba(0, 240, 255, 0.25);
}

.neeo-platform-btn.is-steam:hover {
    border-color: #ffffff;
}

.neeo-platform-icon {
    font-size: 16px;
    position: relative;
    z-index: 1;
    transition: filter 0.3s, color 0.3s;
}

.neeo-platform-btn:hover .neeo-platform-icon {
    filter: brightness(0);
}

.neeo-platform-btn span {
    position: relative;
    z-index: 1;
}

/* ---- How to Activate ---- */
.neeo-how-to-activate {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 18px;
    color: #ffffff !important;
    text-decoration: none !important;
    font-family: var(--neo-font, 'Exo'), sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    background: rgba(252, 238, 10, 0.05);
    border: 1px solid rgba(252, 238, 10, 0.12);
    clip-path: polygon(8px 0, 100% 0, calc(100% - 8px) 100%, 0 100%);
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    overflow: hidden;
    white-space: nowrap;
}

.neeo-how-to-activate::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background: #ffffff;
    transition: width 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: -1;
}

.neeo-how-to-activate:hover {
    color: var(--neo-bg-dark, #0a0a0a) !important;
    border-color: #ffffff;
    background: transparent;
    text-shadow: none;
    text-decoration: none !important;
    animation: neoCplGlitch 0.25s linear;
}

.neeo-how-to-activate:hover::before {
    width: 100%;
}

.neeo-how-to-activate i,
.neeo-how-to-activate span {
    position: relative;
    z-index: 1;
}

/* ---- Type Button ---- */
.neeo-type-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    background: rgba(252, 238, 10, 0.05);
    border: 1px solid rgba(252, 238, 10, 0.12);
    color: #ffffff;
    font-family: var(--neo-font, 'Exo'), sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    clip-path: polygon(6px 0, 100% 0, calc(100% - 6px) 100%, 0 100%);
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    overflow: hidden;
}

.neeo-type-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background: #ffffff;
    transition: width 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: -1;
}

.neeo-type-btn:hover {
    color: var(--neo-bg-dark, #0a0a0a);
    border-color: #ffffff;
    background: transparent;
    text-shadow: none;
    animation: neoCplGlitch 0.25s linear;
}

.neeo-type-btn:hover::before {
    width: 100%;
}

.neeo-type-btn i {
    position: relative;
    z-index: 1;
}

/* ============================================
   TRUST BADGES
   ============================================ */
.neeo-trust-badges-section {
    grid-column: 1 / -1;
    /* Span full width on grid */
}

.neeo-trust-badges {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 12px;
}

.neeo-trust-badge {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 16px;
    background: rgba(0, 240, 255, 0.05);
    border: 1px solid rgba(0, 240, 255, 0.15);
    color: var(--neo-cyan, #00f3ff);
    font-family: var(--neo-font, 'Exo'), sans-serif;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    clip-path: polygon(6px 0, 100% 0, calc(100% - 6px) 100%, 0 100%);
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    overflow: hidden;
    white-space: nowrap;
}

.neeo-trust-badge i {
    font-size: 14px;
    filter: drop-shadow(0 0 4px currentColor);
}

/* Subtle glow animation */
@keyframes neoTrustGlow {
    0%, 100% {
        box-shadow: 0 0 0 rgba(0, 240, 255, 0);
    }
    50% {
        box-shadow: 0 0 12px rgba(0, 240, 255, 0.2);
    }
}

.neeo-trust-badge:nth-child(1) {
    animation: neoTrustGlow 3s ease-in-out infinite;
    animation-delay: 0s;
}

.neeo-trust-badge:nth-child(2) {
    animation: neoTrustGlow 3s ease-in-out infinite;
    animation-delay: 0.75s;
}

.neeo-trust-badge:nth-child(3) {
    animation: neoTrustGlow 3s ease-in-out infinite;
    animation-delay: 1.5s;
}

.neeo-trust-badge:nth-child(4) {
    animation: neoTrustGlow 3s ease-in-out infinite;
    animation-delay: 2.25s;
}


/* ============================================
   MAIN IMAGE
   ============================================ */
.neeo-main-image-wrapper {
    position: relative;
    width: 100%;
    max-width: 600px;
    border: 1px solid var(--neo-border, #2a2a2a);
    overflow: hidden;
    background: rgba(0, 0, 0, 0.3);
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 16px), calc(100% - 20px) 100%, 0 100%);
    transition: border-color 0.3s ease;
}

.neeo-main-image-wrapper:hover {
    border-color: rgba(252, 238, 10, 0.3);
}

.neeo-main-image {
    width: auto;
    max-width: 100%;
    height: auto;
    max-height: 600px;
    object-fit: contain;
    display: block;
    margin: 0 auto;
    transition: opacity 0.3s ease;
}

/* ============================================
   GALLERY THUMBNAILS
   ============================================ */
.neeo-gallery-section {
    width: 100%;
}

.neeo-gallery-thumbnails {
    display: flex;
    gap: 12px;
}

.neeo-thumbnail {
    width: 100px;
    height: 70px;
    border: 1px solid var(--neo-border, #2a2a2a);
    overflow: hidden;
    cursor: pointer;
    clip-path: polygon(4px 0, 100% 0, calc(100% - 4px) 100%, 0 100%);
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    opacity: 0.6;
}

.neeo-thumbnail:hover {
    opacity: 0.9;
    border-color: rgba(252, 238, 10, 0.3);
}

.neeo-thumbnail.active {
    opacity: 1;
    border-color: var(--neo-yellow, #FCEE0A);
    box-shadow: 0 0 12px rgba(252, 238, 10, 0.25);
}

.neeo-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* ============================================
   PRICE SECTION
   ============================================ */
.neeo-price-section {
    display: flex;
    align-items: baseline;
    gap: 12px;
    margin-top: 10px;
}

.neeo-price-label {
    font-family: var(--neo-font, 'Exo'), sans-serif;
    font-size: 10px;
    font-weight: 700;
    color: var(--neo-yellow, #FCEE0A);
    text-transform: uppercase;
    letter-spacing: 2.5px;
}

.neeo-price {
    font-family: var(--neo-font, 'Exo'), sans-serif;
    font-size: 32px;
    font-weight: 800;
    color: #ffffff;
    display: flex;
    align-items: baseline;
    gap: 8px;
}

.neeo-price del {
    font-size: 18px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.35);
    text-decoration: line-through;
}

.neeo-price ins {
    text-decoration: none;
    color: var(--neo-yellow, #FCEE0A);
}

/* ============================================
   ADD TO CART BUTTON
   ============================================
   Styled to match .neo-nav-link pattern:
     - Default: Red background (--neo-red) + white text
     - Hover: White fill sweep (::before 0% → 100%)
     - Hover: Text → dark, border → white, glitch animation
     - ::before z-index: 0 (behind text/icon)
     - Child elements z-index: 1 (above fill)
   ============================================ */
.neeo-add-to-cart-wrapper {
    margin-top: 10px;
}

.neeo-add-to-cart-btn.single_add_to_cart_button {
    width: 100%;
    max-width: 600px;
    height: 72px;
    display: flex !important;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 0 !important;
    color: #ffffff !important;
    text-decoration: none !important;
    font-family: var(--neo-font);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    position: relative;
    background: var(--neo-red, #ff003c);
    border: 1px solid var(--neo-red, #ff003c);
    clip-path: polygon(8px 0, 100% 0, calc(100% - 8px) 100%, 0 100%);
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    overflow: hidden;
    white-space: nowrap;
}

/* White fill sweep */
.neeo-add-to-cart-btn.single_add_to_cart_button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background: #ffffff;
    transition: width 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: -1;
}

.neeo-add-to-cart-btn.single_add_to_cart_button:hover {
    color: var(--neo-bg-dark) !important;
    border-color: #ffffff;
    background: transparent;
    text-shadow: none;
    animation: neoCplGlitch 0.25s linear;
}

.neeo-add-to-cart-btn.single_add_to_cart_button:hover::before {
    width: 100%;
}

/* Keep ::after disabled (parent theme artifact) */
.neeo-add-to-cart-btn.single_add_to_cart_button::after {
    display: none !important;
}

.neeo-btn-text {
    font-size: inherit;
    font-weight: inherit;
    letter-spacing: inherit;
    color: inherit !important;
    position: relative;
    z-index: 1;
}

.neeo-cart-icon {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
    color: inherit;
    transition: opacity 0.3s, filter 0.3s;
}

.neeo-add-to-cart-btn.single_add_to_cart_button:hover .neeo-cart-icon {
    filter: brightness(0);
}

/* ---- Glitch button parent theme overrides ---- */
.neeo-add-to-cart-btn.single_add_to_cart_button.cpl-glitch-button {
    background: var(--neo-red, #ff003c) !important;
    border: 1px solid var(--neo-red, #ff003c) !important;
    color: #ffffff !important;
}

.neeo-add-to-cart-btn.single_add_to_cart_button.cpl-glitch-button .neeo-btn-text {
    color: #ffffff !important;
}

.neeo-add-to-cart-btn.single_add_to_cart_button.cpl-glitch-button .neeo-cart-icon {
    color: #ffffff !important;
}

.neeo-add-to-cart-btn.single_add_to_cart_button.cpl-glitch-button:hover {
    color: var(--neo-bg-dark, #0a0a0a) !important;
    border-color: #ffffff !important;
    background: transparent !important;
    animation: neoCplGlitch 0.25s linear;
    box-shadow: none !important;
}

.neeo-add-to-cart-btn.single_add_to_cart_button .cpl-glitch-zone-hover {
    clip-path: polygon(8px 0,
            100% 0,
            calc(100% - 8px) 100%,
            0 100%);
}

/* Out of Stock */
.neeo-out-of-stock {
    padding: 16px 24px;
    background: rgba(255, 0, 60, 0.08);
    border: 1px solid rgba(255, 0, 60, 0.25);
    color: var(--neo-red, #ff003c);
    font-family: var(--neo-font, 'Exo'), sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    text-align: center;
    clip-path: polygon(6px 0, 100% 0, calc(100% - 6px) 100%, 0 100%);
}

/* Inline loader */
.neeo-inline-loader {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 2px solid rgba(0, 0, 0, 0.3);
    border-top-color: #000000;
    border-radius: 50%;
    animation: neeo-spin 0.6s linear infinite;
}

@keyframes neeo-spin {
    to {
        transform: rotate(360deg);
    }
}

/* ============================================
   DUPLICATE HERO FIX
   ============================================ */
.neeo-product-details-container .hero-section,
.neeo-product-details-container .neeo-hero-section {
    display: none !important;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1400px) {
    .neeo-hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .neeo-hero-left {
        padding-top: 80px;
        max-width: 100%;
    }

    .neeo-hero-right {
        padding-top: 0;
    }

    .neeo-add-to-cart-btn.single_add_to_cart_button {
        width: 100%;
        max-width: 660px;
    }

    .neeo-main-image-wrapper {
        max-width: 100%;
    }

    .neeo-platform-options {
        flex-wrap: wrap;
    }
}

@media (max-width: 1024px) {
    .neeo-hero-section {
        padding: 40px 40px;
    }

    .neeo-description {
        font-size: 14px;
        line-height: 1.6;
    }

    .neeo-gallery-thumbnails {
        gap: 10px;
    }

    .neeo-thumbnail {
        width: 90px;
        height: 60px;
    }

    .neeo-region-options {
        flex-wrap: wrap;
    }
}

@media (max-width: 768px) {
    .neeo-hero-section {
        padding: 30px 16px;
    }

    .neeo-hero-left {
        padding-top: 50px;
    }

    .neeo-game-title {
        font-size: 26px;
    }

    .neeo-stats-row {
        flex-wrap: wrap;
        gap: 8px;
    }

    .neeo-stat-item {
        padding: 6px 12px;
    }

    .neeo-stat-value {
        font-size: 11px;
    }

    .neeo-category-tags {
        flex-wrap: wrap;
    }

    .neeo-tag {
        font-size: 10px;
        padding: 6px 14px;
    }

    .neeo-description {
        font-size: 13px;
    }

    .neeo-section-label {
        font-size: 9px;
    }

    .neeo-meta-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .neeo-gallery-thumbnails {
        flex-wrap: wrap;
        gap: 8px;
        justify-content: flex-start;
    }

    .neeo-thumbnail {
        width: 72px;
        height: 50px;
    }

    .neeo-platform-options {
        flex-wrap: wrap;
        gap: 8px;
    }

    .neeo-platform-btn {
        padding: 8px 14px;
        font-size: 10px;
    }

    .neeo-platform-icon {
        font-size: 14px;
    }

    .neeo-how-to-activate {
        font-size: 10px;
        padding: 8px 14px;
    }
    
    .neeo-trust-badges {
        grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
        gap: 10px;
    }

    .neeo-trust-badge {
        padding: 8px 12px;
        font-size: 9px;
    }

    .neeo-trust-badge i {
        font-size: 12px;
    }


    .neeo-price-section {
        flex-direction: row;
        align-items: baseline;
        justify-content: flex-start;
        gap: 8px;
    }

    .neeo-price {
        font-size: 24px;
    }

    .neeo-add-to-cart-btn.single_add_to_cart_button {
        height: 60px;
        font-size: 12px;
    }

    .neeo-star {
        width: 16px;
        height: 16px;
    }

    .neeo-main-image-wrapper {
        /* aspect-ratio removed: image displays at natural proportions */
    }
}

@media (max-width: 480px) {
    .neeo-hero-section {
        padding: 20px 12px;
    }

    .neeo-hero-left {
        padding-top: 30px;
    }

    .neeo-game-title {
        font-size: 22px;
    }

    .neeo-stats-row {
        gap: 6px;
    }

    .neeo-stat-item {
        padding: 5px 10px;
    }

    .neeo-stat-value,
    .neeo-rating-count {
        font-size: 10px;
    }

    .neeo-tag {
        font-size: 9px;
        padding: 5px 12px;
    }

    .neeo-description {
        font-size: 12px;
    }

    .neeo-thumbnail {
        width: 60px;
        height: 42px;
    }

    .neeo-platform-btn {
        flex: 1;
        min-width: calc(50% - 10px);
    }
    
    .neeo-trust-badges {
        grid-template-columns: 1fr 1fr;
        gap: 8px;
    }

    .neeo-trust-badge {
        padding: 7px 10px;
        font-size: 8px;
        letter-spacing: 0.8px;
    }

    .neeo-trust-badge i {
        font-size: 11px;
    }


    .neeo-price {
        font-size: 20px;
    }

    .neeo-add-to-cart-btn.single_add_to_cart_button {
        height: 55px;
        font-size: 11px;
    }
}
/* ===== ADD TO CART BUTTON - USES .neo-nav-link CLASS ===== */
/* Override parent theme and other conflicting styles */
button.neo-nav-link.single_add_to_cart_button {
    width: 100% !important;
    max-width: 600px !important;
    height: 72px !important;
    background: var(--neo-red, #ff003c) !important;
    border-color: var(--neo-red, #ff003c) !important;
    display: flex !important;
}
