:root {
    --bg-dark: #0d0d0d;
    --bg-panel: #1a1a1a;
    --accent: #F5F6FA;
    --accent-dim: #e5e5e5;
    --neon-purple: #8b5cf6;
    --neon-green: #10b981;
    --neon-cyan: #00f3ff;
    --cyber-gold: #8b5cf6;
    /* Changed to Neon Purple */
    --fire: #ef4444;
    --text-main: #F5F6FA;
    --text-muted: #9ca3af;

    --gradient-main: linear-gradient(90deg, #ffffff, #e5e5e5);
    --gradient-text: linear-gradient(45deg, #ffffff, #e5e5e5);
    --gradient-fire: linear-gradient(45deg, #ef4444, #f97316);
    --gradient-gold: linear-gradient(45deg, #fbbf24, #eab308);

    --font-head: 'Orbitron', sans-serif;
    --font-body: 'Rajdhani', sans-serif;

    --shadow-glow: 0 0 40px rgba(0, 243, 255, 0.6);
    --shadow-intense: 0 8px 24px rgba(0, 0, 0, 0.4);
    --shadow-green: 0 4px 12px rgba(16, 185, 129, 0.2);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    cursor: default;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: var(--font-body);
    font-weight: 500;
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #0d0d0d;
}

::-webkit-scrollbar-thumb {
    background: #404040;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #606060;
}

/* CANVAS BG */
#bg-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -10;
    pointer-events: none;
    background: radial-gradient(circle at 50% 10%, #1a1a2a 0%, #050510 100%);
}

/* Header */
header {
    position: fixed;
    top: 0;
    width: 100%;
    background: transparent;
    backdrop-filter: none;
    border-bottom: none;
    z-index: 1000;
    padding: 15px 0;
    box-shadow: none;
    transition: background-color 0.3s ease, border 0.3s ease, box-shadow 0.3s ease;
}

/* Scrolled Invert State - Manual Overrides */
/* Scrolled Invert State - Manual Overrides */
header.scrolled-invert {
    filter: none;
    background: rgba(245, 246, 250, 0.85);
    /* More transparent */
    backdrop-filter: blur(20px);
    /* Heavy blur for a soft glass effect */
    border-bottom: 1px solid rgba(0, 0, 0, 0.03);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
    padding: 8px 0;
}

header.scrolled-invert .nav-container {
    height: 60px;
    /* Reduced height */
}

header.scrolled-invert .nav-link {
    color: #333;
}

header.scrolled-invert .nav-link:hover,
header.scrolled-invert .nav-link.active {
    color: var(--neon-purple);
    /* Or keep accent */
}

/* Search Bar - Invert */
header.scrolled-invert .search-bar-container {
    background: rgba(0, 0, 0, 0.05);
    /* Light grey */
}

header.scrolled-invert .search-bar-container input {
    color: #333;
}

header.scrolled-invert .search-bar-container input::placeholder {
    color: #888;
}

header.scrolled-invert .search-bar-container i {
    color: #666;
}

/* Socials - Invert */
header.scrolled-invert .socials-inline a {
    color: #333;
}

header.scrolled-invert .socials-inline a:hover {
    color: var(--neon-purple);
}

/* Logo - Invert */
header.scrolled-invert .logo-center {
    top: 35px;
    /* Center of 70px scrolled header */
}

header.scrolled-invert .logo-center img {
    height: 70px;
    /* Bigger fit */
    /* Thicker Outline */
    filter: drop-shadow(1.5px 0 0 black) drop-shadow(-1.5px 0 0 black) drop-shadow(0 1.5px 0 black) drop-shadow(0 -1.5px 0 black);
}

/* Cart Button - Invert */
header.scrolled-invert .cart-btn-styled {
    background: transparent;
    box-shadow: none;
    color: #333;
    border: 1px solid rgba(0, 0, 0, 0.1);
    /* Subtle border for structure */
}

header.scrolled-invert .cart-btn-styled:hover {
    background: transparent;
    color: var(--neon-purple);
    transform: translateY(-2px);
}

header.scrolled-invert .cart-pulse {
    background: var(--neon-purple);
    color: white;
    border: 2px solid white;
}


.nav-container {
    max-width: 100%;
    /* Full width */
    margin: 0;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 90px;
    position: relative;
    /* For absolute logo */
    transition: height 0.3s ease;
}

/* Left: Navigation Links */
.nav-left {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-link {
    color: #ccc;
    text-decoration: none;
    margin: 0;
    /* Remove margin, use gap */
    font-size: 14px;
    text-transform: capitalize;
    /* Reference is Title Case-ish? User used "Home", "Shop All" */
    letter-spacing: 0.5px;
    transition: 0.3s;
    position: relative;
    font-weight: 600;
    font-family: var(--font-body);
}

.nav-link:hover,
.nav-link.active {
    color: white;
    text-shadow: none;
    /* Cleaner look */
}

/* Center-Right Group (NOW JUST RIGHT GROUP) */
.nav-actions-group {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-left: auto;
    /* Push to right edge */
    margin-right: 0;
    /* Reset */
}

/* Search Bar */
.search-bar-container {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    padding: 8px 12px;
    width: 220px;
    transition: background 0.3s;
    position: relative;
    /* Anchor for results */
}

.search-bar-container:hover {
    background: rgba(255, 255, 255, 0.15);
}

.search-bar-container i {
    color: #aaa;
    font-size: 16px;
    margin-right: 10px;
}

.search-bar-container input {
    background: transparent;
    border: none;
    color: white;
    font-family: var(--font-body);
    width: 100%;
    outline: none;
    font-size: 14px;
}

.search-bar-container input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

/* Search Results Dropdown */
.search-results {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: rgba(20, 20, 30, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    margin-top: 5px;
    max-height: 300px;
    overflow-y: auto;
    display: none;
    /* Hidden by default */
    flex-direction: column;
    z-index: 1002;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
}

.search-results.active {
    display: flex;
}

.search-result-item {
    padding: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    transition: background 0.2s;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

/* --- FIREWORK EFFECT --- */
.firework-rocket {
    position: fixed;
    width: 6px;
    height: 6px;
    background: #00f3ff;
    box-shadow: 0 0 15px #00f3ff, 0 0 5px white;
    border-radius: 50%;
    pointer-events: none;
    z-index: 10001;
    transition: all 0.6s cubic-bezier(0.1, 0.5, 0.5, 1);
}

.firework-particle {
    position: fixed;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    pointer-events: none;
    z-index: 10000;
    animation: fireworkExplode 1s ease-out forwards;
}

@keyframes fireworkExplode {
    0% {
        transform: translate(0, 0) scale(1);
        opacity: 1;
    }

    100% {
        transform: translate(var(--tx), var(--ty)) scale(0);
        opacity: 0;
    }
}


.search-result-item:hover {
    background: rgba(255, 255, 255, 0.1);
}

.search-result-thumb {
    width: 40px;
    height: 40px;
    object-fit: contain;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.05);
}

.search-result-info {
    display: flex;
    flex-direction: column;
}

.search-result-title {
    color: white;
    font-size: 13px;
    font-weight: 500;
}

.search-result-price {
    color: var(--neon-purple);
    font-size: 11px;
}

/* Scrollbar for results */
.search-results::-webkit-scrollbar {
    width: 4px;
}

.search-results::-webkit-scrollbar-thumb {
    background: var(--neon-purple);
    border-radius: 2px;
}

/* Pink Cart Button */
/* Cart Button (Styled) */
.cart-btn-styled {
    background: transparent;
    border: 1px solid var(--neon-cyan);
    color: var(--neon-cyan);
    width: 40px;
    height: 40px;
    border-radius: 6px;
    /* Rounded square */
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 20px;
    position: relative;
    transition: all 0.3s ease;
    box-shadow: 0 0 10px rgba(0, 243, 255, 0.2);
}

.cart-btn-styled:hover {
    background: var(--neon-cyan);
    color: black;
    box-shadow: 0 0 20px rgba(0, 243, 255, 0.6);
    transform: translateY(-2px);
}

.cart-pulse {
    position: absolute;
    top: -8px;
    right: -8px;
    background: var(--neon-purple);
    color: white;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    font-size: 11px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--bg-dark);
    /* Separation ring */
    box-shadow: 0 0 5px var(--neon-purple);
    z-index: 2;
}

/* --- CART DRAWER --- */
.cart-drawer {
    position: fixed;
    top: 0;
    right: -450px;
    /* Hidden by default */
    width: 400px;
    height: 100%;
    background: rgba(10, 10, 15, 0.95);
    backdrop-filter: blur(20px);
    border-left: 1px solid var(--neon-cyan);
    z-index: 2000;
    display: flex;
    flex-direction: column;
    transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.8);
}

.cart-drawer.active {
    right: 0;
}

.cart-header {
    padding: 30px;
    border-bottom: 1px solid rgba(0, 243, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cart-header h2 {
    font-family: var(--font-head);
    font-size: 1.5rem;
    color: white;
    letter-spacing: 2px;
}

.close-cart {
    background: transparent;
    border: none;
    color: white;
    font-size: 32px;
    cursor: pointer;
    transition: color 0.3s;
}

.close-cart:hover {
    color: var(--fire);
}

.cart-items {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
}

.cart-item {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    padding-right: 30px;
    /* Space for remove button */
}

.cart-item-img {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 4px;
    overflow: hidden;
}

.cart-item-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.cart-item-info h4 {
    font-family: var(--font-head);
    font-size: 1rem;
    margin-bottom: 5px;
}

.cart-item-price {
    font-size: 0.9rem;
    color: var(--neon-cyan);
    font-weight: 700;
}

.remove-item {
    position: absolute;
    top: 0;
    right: 0;
    background: transparent;
    border: none;
    color: #666;
    font-size: 20px;
    cursor: pointer;
    transition: color 0.3s;
}

.remove-item:hover {
    color: var(--fire);
}

.cart-footer {
    padding: 30px;
    border-top: 1px solid rgba(0, 243, 255, 0.1);
    background: rgba(0, 0, 0, 0.2);
}

.cart-total {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
    font-family: var(--font-head);
    font-size: 1.2rem;
}

/* Checkout Button - High Contrast Cyberpunk */
.cart-drawer .checkout-btn {
    width: 100%;
    padding: 18px;
    background: var(--neon-cyan) !important;
    color: black !important;
    border: none !important;
    font-family: var(--font-head);
    font-size: 1.2rem;
    font-weight: 900;
    cursor: pointer;
    text-transform: uppercase;
    clip-path: polygon(15px 0, 100% 0, 100% calc(100% - 15px), calc(100% - 15px) 100%, 0 100%, 0 15px);
    transition: all 0.3s ease;
    box-shadow: 0 0 15px rgba(0, 243, 255, 0.4);
    display: block;
    text-align: center;
    margin-top: 10px;
}

.cart-drawer .checkout-btn:hover {
    background: var(--neon-purple) !important;
    color: white !important;
    box-shadow: 0 0 25px var(--neon-purple);
    transform: translateY(-2px);
}

/* CENTER: Logo */
.logo-center {
    position: fixed;
    /* Fixed relative to viewport */
    left: 50%;
    top: 80px;
    /* Moved down to fit 140px logo without cutoff */
    transition: top 0.3s ease;
    /* Smooth transition for position change */
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1001;
    /* Above header bg if it overlaps */
}

.logo-center img {
    height: 140px;
    /* Much larger base size */
    width: auto;
    filter: drop-shadow(0 0 5px rgba(0, 0, 0, 0.5));
    transition: height 0.3s ease, filter 0.3s ease;
}

/* Socials (Integrated) */
.socials-inline {
    display: flex;
    gap: 15px;
    margin-right: 20px;
}

.socials-inline a {
    color: #888;
    font-size: 18px;
    transition: color 0.3s;
}

.socials-inline a:hover {
    color: white;
}

.logo i {
    color: var(--accent);
    font-size: 28px;
    text-shadow: 0 0 10px var(--accent);
}

.nav-link {
    color: var(--text-muted);
    text-decoration: none;
    margin: 0 20px;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: 0.3s;
    position: relative;
    font-weight: 600;
}

.nav-link:hover,
.nav-link.active {
    color: white;
    text-shadow: 0 0 15px var(--neon-purple);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0%;
    height: 2px;
    background: var(--neon-purple);
    transition: width 0.3s;
    box-shadow: 0 0 10px var(--neon-purple);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

/* Mini Playing Cards Cluster (Left HUD) */
.mini-showcase {
    position: relative;
    width: 140px;
    height: 180px;
    /* margin-top removed */
    z-index: 10;
    display: flex;
    justify-content: center;
    align-items: center;
}

.mini-card-wrapper {
    position: absolute;
    width: 170px;
    height: 170px;
    top: 50%;
    /* Center vertically */
    left: 50%;
    transform: translate(-50%, -50%);
    /* Base center */
}

/* Wrapper Positions & Float Animations */
.mew-pos {
    margin-left: -140px;
    /* Wide spread */
    z-index: 2;
    animation: miniFloatLeft 6s ease-in-out infinite;
}

.dragonite-pos {
    margin-left: -85px;
    /* Center */
    z-index: 3;
    animation: miniFloatCenter 7s ease-in-out infinite 0.5s;
}

.snorlax-pos {
    margin-left: -30px;
    /* Right */
    z-index: 1;
    animation: miniFloatRight 6.5s ease-in-out infinite 1s;
}

/* Inner Card (Visuals & JS Tilt) */
.mini-card {
    width: 100%;
    height: 100%;
    cursor: pointer;
    border-radius: 50%;
}

.mini-card img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 8px 15px rgba(0, 0, 0, 0.6));
    transition: transform 0.3s;
}

/* Animations (Scaled down movement) */
@keyframes miniFloatLeft {

    0%,
    100% {
        transform: translateY(0) rotate(-20deg);
    }

    50% {
        transform: translateY(-10px) rotate(-10deg);
    }
}

@keyframes miniFloatCenter {

    0%,
    100% {
        transform: translateY(0) rotate(0deg) scale(1.1);
    }

    50% {
        transform: translateY(-10px) rotate(5deg) scale(1.1);
    }
}

@keyframes miniFloatRight {

    0%,
    100% {
        transform: translateY(0) rotate(20deg);
    }

    50% {
        transform: translateY(-10px) rotate(10deg);
    }
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.instagram-link {
    color: white;
    font-size: 24px;
    cursor: pointer;
    transition: 0.2s;
    text-decoration: none;
    display: flex;
    align-items: center;
}

.instagram-link:hover {
    color: var(--neon-purple);
    transform: scale(1.1);
    filter: drop-shadow(0 0 10px var(--neon-purple));
}

.youtube-link {
    color: white;
    font-size: 24px;
    cursor: pointer;
    transition: 0.2s;
    text-decoration: none;
    display: flex;
    align-items: center;
}

.youtube-link:hover {
    color: #ff0000;
    transform: scale(1.1);
    filter: drop-shadow(0 0 10px #ff0000);
}

.tiktok-link {
    color: white;
    font-size: 24px;
    cursor: pointer;
    transition: 0.2s;
    text-decoration: none;
    display: flex;
    align-items: center;
}

.tiktok-link:hover {
    color: #00f2ea;
    transform: scale(1.1);
    filter: drop-shadow(0 0 10px #00f2ea);
}



.cart-icon {
    background: transparent;
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
    position: relative;
    transition: 0.2s;
}

.cart-icon:hover {
    color: var(--accent);
    transform: scale(1.1);
}

.cart-pulse {
    position: absolute;
    bottom: -8px;
    right: -8px;
    background: transparent;
    color: var(--neon-cyan);
    display: none;
    /* Flex when active */
    font-size: 0.8rem;
    font-weight: 700;
    z-index: 10;
    text-shadow: 0 0 5px rgba(0, 243, 255, 0.5);

}





/* Hero */
.hero-section {
    height: 90vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    /* Ensure video doesn't spill out */
}

/* Video Background Styles */
.video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    /* Behind content but above global bg */
    pointer-events: none;
}

.hero-bg-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    /* Dark overlay for readability */
    z-index: 1;
}

/* Ensure content sits above video */
.hero-content {
    position: relative;
    z-index: 5;
}

.printing-text-container {
    position: relative;
    padding: 20px;
    display: inline-block;
    z-index: 5;
}



/* --- HUD DECORATIONS --- */
.hud-decoration {
    position: absolute;
    top: 40%;
    transform: translateY(-50%) scale(1.35);
    /* Scaled Up */
    width: 150px;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    z-index: 2;
    opacity: 0.8;
}

.left-hud {
    left: 8%;
    /* Adjusted for scale */
}

.right-hud {
    right: 5%;
    top: 55%;
    /* Moved Right & Down */
}

.hud-label {
    margin-top: 15px;
    font-family: var(--font-head);
    font-size: 12px;
    letter-spacing: 2px;
    color: var(--text-muted);
    text-shadow: 0 0 5px var(--text-muted);
}

/* --- Pokeball Scanner (Left) --- */
.pokeball-scanner {
    width: 60px;
    height: 60px;
    position: relative;
    animation: bounceIdle 2s infinite ease-in-out;
}

.pokeball-css {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 3px solid #fff;
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.2);
    animation: rotateBall 4s linear infinite;
}

.pk-top {
    position: absolute;
    top: 0;
    width: 100%;
    height: 50%;
    background: #ff3333;
}

.pk-bottom {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 50%;
    background: #fff;
}

.pk-line {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 4px;
    background: #000;
    transform: translateY(-50%);
    z-index: 2;
}

.pk-dot {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 16px;
    height: 16px;
    background: #fff;
    border: 3px solid #000;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
}

@keyframes rotateBall {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes bounceIdle {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

/* --- HP Monitor (Right) --- */
.hp-bar-container {
    width: 140px;
    padding: 10px;
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid #444;
    border-radius: 4px;
}

.hp-label-sm {
    font-size: 10px;
    color: #888;
    margin-bottom: 4px;
    letter-spacing: 1px;
}

.hp-track {
    width: 100%;
    height: 12px;
    background: #333;
    border-radius: 6px;
    overflow: hidden;
    border: 1px solid #555;
    margin-bottom: 4px;
}

.hp-fill {
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, #39ff14, #00ff88);
    box-shadow: 0 0 10px rgba(57, 255, 20, 0.4);
    animation: hpFluctuate 4s infinite;
    transform-origin: left;
}

.hp-stats {
    font-family: monospace;
    font-size: 12px;
    color: white;
    text-align: right;
}

@keyframes hpFluctuate {

    0%,
    100% {
        transform: scaleX(1);
        background: linear-gradient(90deg, #39ff14, #00ff88);
    }

    50% {
        transform: scaleX(0.4);
        background: linear-gradient(90deg, #ffaa00, #ffcc00);
    }

    /* Damage Taken */
    60% {
        transform: scaleX(0.4);
        background: linear-gradient(90deg, #ffaa00, #ffcc00);
    }

    70% {
        transform: scaleX(0.8);
        background: linear-gradient(90deg, #39ff14, #00ff88);
    }

    /* Heal */
}

/* Hide on small screens */
@media(max-width: 1200px) {
    .hud-decoration {
        display: none;
    }
}





/* --- PRODUCT GRID STATUS MESSAGES --- */
.loading-msg,
.error-msg {
    grid-column: 1 / -1;
    text-align: center;
    padding: 100px 20px;
    font-family: var(--font-head);
    font-size: 1.5rem;
    color: var(--text-muted);
    letter-spacing: 2px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.loading-msg i {
    font-size: 3rem;
    animation: spin 1s linear infinite;
    color: var(--neon-cyan);
}

.error-msg {
    color: var(--fire);
    border: 1px dashed var(--fire);
    background: rgba(239, 68, 68, 0.05);
    border-radius: 8px;
    font-size: 1.2rem;
}

.error-msg b {
    color: #fff;
    text-decoration: underline;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.printing-text-container h1 {
    font-family: var(--font-head);
    font-size: 64px;
    font-weight: 900;
    color: #F5F6FA !important;
    /* Reverted gradient clip to fix animation */
    /* background: var(--gradient-text); */
    /* -webkit-background-clip: text; */
    /* -webkit-text-fill-color: transparent; */
    /* background-clip: text; */
    line-height: 1.2;
    max-width: 1000px;
    margin: 0 auto 30px;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    /* filter: drop-shadow(0 0 5px rgba(0, 243, 255, 0.3)); */
    position: relative;
    z-index: 10;
}

/* 3D Print Animation */
.print-char {
    display: inline-block;
    opacity: 0;
    transform: translateY(20px);
    color: #F5F6FA;
    animation: printLayer 0.3s forwards;
    white-space: pre;
    text-shadow: 0 0 15px var(--accent);
}

.printed {
    color: #F5F6FA;
    transition: color 1s;
    text-shadow: none;
}

@keyframes printLayer {
    0% {
        opacity: 0;
        transform: translateY(10px) scale(0.9);
    }

    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.hero-sub {
    font-family: var(--font-head);
    letter-spacing: 2px;
    color: var(--neon-purple);
    margin-bottom: 50px;
    font-size: 18px;
    /* Increased slightly */
    font-weight: 800;
    /* BOLDER */
    text-shadow: 0 0 15px rgba(188, 19, 254, 0.8);
    /* Stronger glow */
    animation: pulseText 2s infinite;
    text-transform: uppercase;
}

@keyframes pulseText {
    50% {
        opacity: 0.8;
        /* Less transparent pulse */
    }
}

/* Marquee Section */
.marquee-section {
    background: #f2f2f2;
    padding: 15px 0;
    border-top: 1px solid #e0e0e0;
    border-bottom: 1px solid #e0e0e0;
    width: 100%;
    max-width: 100vw;
    overflow: hidden;
    position: relative;
    z-index: 5;
    margin-top: 30px;
}

.marquee-container {
    width: 100%;
    overflow: hidden;
}

.marquee-content {
    display: flex;
    width: max-content;
    white-space: nowrap;
    animation: marqueeScroll 40s linear infinite;
}

.marquee-content span {
    font-family: var(--font-head);
    font-size: 100px;
    font-weight: 900;
    letter-spacing: 2px;
    color: transparent;
    -webkit-text-stroke: 1px #333;
    padding: 0 60px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    line-height: 1.2;
}

.marquee-content b {
    color: #000;
    -webkit-text-stroke: 0;
    margin: 0 12px;
}

@keyframes marqueeScroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.btn-cyber {
    background: linear-gradient(90deg, rgba(0, 243, 255, 0.1), rgba(188, 19, 254, 0.1));
    color: var(--accent);
    border: 1px solid var(--accent);
    padding: 20px 60px;
    /* Increased size */
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 20px;
    /* Increased text */
    letter-spacing: 2px;
    text-decoration: none;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    display: inline-block;
    box-shadow: 0 0 15px rgba(0, 243, 255, 0.15);
}

.btn-cyber:hover {
    background: var(--gradient-main);
    color: #000;
    border-color: transparent;
    box-shadow: 0 0 40px var(--accent);
    transform: scale(1.05);
    text-shadow: none;
}

/* Categories & Products Common */
.tilt-card {
    transition: transform 0.1s ease-out;
    /* Fast response for tilt */
    transform-style: preserve-3d;
}

.holo-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 5;
    background: linear-gradient(125deg,
            rgba(255, 255, 255, 0) 0%,
            rgba(255, 255, 255, 0) 40%,
            rgba(255, 255, 255, 0.2) 45%,
            rgba(0, 243, 255, 0.3) 50%,
            rgba(188, 19, 254, 0.3) 55%,
            rgba(255, 255, 255, 0.2) 60%,
            rgba(255, 255, 255, 0) 100%);
    background-size: 250% 250%;
    background-repeat: no-repeat;
    /* mix-blend-mode: overlay; */
    /* Removed as per instruction to hide */
    opacity: 0;
    transition: opacity 0.3s;
    pointer-events: none;
    display: none;
    /* Added to hide holo-layer */
}

/* --- INFO BOXES WITH SLIDING REVEAL --- */
.info-boxes-section {
    padding: 100px 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.info-boxes-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.info-box {
    position: relative;
    height: 400px;
    overflow: hidden;
    border-radius: 8px;
    cursor: default;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease;
}

.info-box:hover {
    transform: translateY(-5px);
}

.box-base {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px;
    text-align: center;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 2;
}

.info-box:hover .box-base {
    transform: translateY(-100%);
}

.box-icon {
    font-size: 64px;
    margin-bottom: 20px;
    color: var(--accent);
    text-shadow: 0 0 20px var(--accent);
}

.box-base h3 {
    font-family: var(--font-head);
    font-size: 24px;
    margin-bottom: 10px;
    color: white;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.box-subtitle {
    font-size: 12px;
    color: var(--text-muted);
    letter-spacing: 3px;
    text-transform: uppercase;
}

.box-reveal {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 10, 15, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
}

.info-box:hover .box-reveal {
    transform: translateY(-100%);
}

.reveal-content {
    padding: 40px;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.reveal-content h4 {
    font-family: var(--font-head);
    font-size: 20px;
    color: var(--accent);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.reveal-content ul {
    list-style: none;
    flex: 1;
}

.reveal-content li {
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    color: #ccc;
    font-size: 14px;
    position: relative;
    padding-left: 20px;
}

.reveal-content li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: var(--accent);
}

.reveal-footer {
    margin-top: auto;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.reveal-price {
    font-family: var(--font-head);
    font-size: 18px;
    color: white;
    font-weight: 700;
}

/* Responsive */
@media (max-width: 1024px) {
    .info-boxes-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .info-box {
        height: 350px;
    }
}

/* Categories */
.categories-section {
    display: flex;
    justify-content: center;
    gap: 30px;
    padding: 0 20px;
    margin-top: -50px;
    margin-bottom: 100px;
    position: relative;
    z-index: 10;
}

.category-card {
    width: 600px;
    height: 380px;
    background: rgba(20, 20, 20, 0.3);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    transition: all 0.3s;
}

.category-card:hover {
    border-color: var(--accent);
    /* Removed pulseBorder to fix hover glitchiness */
    transform: translateY(-10px) scale(1.02);
}

/* Universal Product Card Hover Animations */
[class*="card"]:not(.category-card):hover,
.product-item:hover,
.item-card:hover {
    transform: translateY(-8px) scale(1.03);
    border: 2px solid var(--accent);
}

[class*="card"] img:hover,
.product-item img:hover,
.item-card img:hover {
    transform: scale(1.05);
    transition: transform 0.3s ease;
}

/* @keyframes pulseBorder {
    0% {
        border-color: var(--accent);
        box-shadow: 0 0 10px var(--accent);
    }

    50% {
        border-color: var(--neon-purple);
        box-shadow: 0 0 20px var(--neon-purple);
    }

    100% {
        border-color: var(--accent);
        box-shadow: 0 0 10px var(--accent);
    }
} */

/* --- BUNDLE CONTENTS SECTION (Detail Page) --- */
.bundle-contents-section {
    margin: 20px 0;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 20px;
    border-radius: 8px;
}

.contents-label {
    display: block;
    font-family: var(--font-head);
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 15px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.contents-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contents-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: 10px;
    font-weight: 500;
}

.contents-list li:last-child {
    margin-bottom: 0;
}

.contents-list li i {
    color: var(--neon-purple);
    font-size: 1.2rem;
    filter: drop-shadow(0 0 5px var(--neon-purple));
}

.category-card:hover .holo-layer {
    opacity: 1;
    animation: holoShift 2s infinite linear;
}

@keyframes holoShift {
    0% {
        background-position: 0% 0%;
    }

    100% {
        background-position: 100% 100%;
    }
}

.cat-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0.8;
    /* Increased for better image visibility */
    transition: opacity 0.4s;
}

.pokemon-bg {
    background: #0a0a0f url('../assets/img/ui/pokeball-charizard-main.png') center/130% no-repeat;
    transition: background-size 0.5s cubic-bezier(0.34, 1.56, 0.64, 1), filter 0.3s ease;
}

.category-card:hover .pokemon-bg {
    background-size: 145%;
    filter: drop-shadow(0 0 20px rgba(255, 100, 0, 0.3));
    animation: charizard-float 3s ease-in-out infinite alternate;
}

@keyframes charizard-float {
    0% {
        background-position: center 50%;
    }

    100% {
        background-position: center 45%;
    }
}

.poke-stands-bg {
    background: url('../assets/img/ui/poke-stands-cat.jpg') center/cover no-repeat;
}

.poke-stands-bg.overlap {
    position: relative;
    background: #05050a !important;
    overflow: hidden;
}

.poke-stands-bg.overlap .overlap-img {
    position: absolute;
    width: 75%;
    height: 90%;
    top: 5%;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.5));
}

.poke-stands-bg.overlap .img-left {
    left: 2%;
    transform: rotate(-12deg);
    z-index: 2;
}

.poke-stands-bg.overlap .img-right {
    right: 2%;
    transform: rotate(12deg);
    z-index: 3;
}

.category-card:hover .overlap-img.img-left {
    transform: rotate(-18deg) translateX(-20px) scale(1.1);
    filter: drop-shadow(-10px 10px 20px rgba(0, 0, 0, 0.7));
}

.category-card:hover .overlap-img.img-right {
    transform: rotate(18deg) translateX(20px) scale(1.1);
    filter: drop-shadow(10px 10px 20px rgba(0, 0, 0, 0.7));
}

.fidgets-bg {
    background: #08080c url('../assets/img/ui/fidgets-cat-final.png') center/110% no-repeat;
    transition: background-size 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), filter 0.3s ease;
}

.category-card:hover .fidgets-bg {
    background-size: 125%;
    filter: drop-shadow(0 0 15px rgba(255, 255, 255, 0.2));
    animation: fidget-jitter 0.4s ease-in-out infinite;
}

@keyframes fidget-jitter {
    0% {
        transform: translate(0, 0);
    }

    25% {
        transform: translate(1px, -1px);
    }

    50% {
        transform: translate(-1px, 1px);
    }

    75% {
        transform: translate(1px, 1px);
    }

    100% {
        transform: translate(0, 0);
    }
}

.gaming-bg,
.sanrio-bg,
.sub-cat-bg {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
}

.category-card:hover .cat-bg {
    opacity: 0.7;
    transform: scale(1.1);
}

.cat-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    background: linear-gradient(to top, black, transparent);
    transform: translateZ(20px);
    /* 3D pop */
}

.cat-content h3 {
    font-family: var(--font-head);
    font-size: 24px;
    margin-bottom: 5px;
    color: white;
}

.cat-content p {
    color: var(--accent);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Slide In Anim */
.slide-in {
    opacity: 0;
    transform: translateY(50px);
    animation: slideUp 0.8s forwards;
}

.delay-100 {
    animation-delay: 0.1s;
}

.delay-200 {
    animation-delay: 0.2s;
}

@keyframes slideUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* Products */
.product-section {
    padding: 80px 20px;
    max-width: 1400px;
    margin: 0 auto;
}

.section-header {
    margin-bottom: 60px;
}

.section-header h2 {
    font-family: var(--font-head);
    font-size: 32px;
    margin-bottom: 10px;
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Glitch Text Effect */
.glitch-hover:hover {
    animation: glitch 0.3s cubic-bezier(.25, .46, .45, .94) both infinite;
    color: var(--accent);
}

@keyframes glitch {
    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);
    }
}

.header-line {
    width: 100px;
    height: 4px;
    background: var(--accent);
    margin: 20px auto;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.header-line.blue {
    background: #4a90e2;
}

.product-grid-6 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.product-card {
    background: rgba(20, 20, 20, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 20px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    border-color: var(--accent);
    transform: translateY(-8px);
    background: rgba(30, 30, 30, 0.8);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

/* Color Themes */
.product-card.theme-gold:hover {
    border: 2px solid var(--cyber-gold);
    background: rgba(251, 191, 36, 0.15);
}

.product-card.theme-gold .price {
    color: var(--cyber-gold);
}

.product-card.theme-green:hover {
    border: 2px solid var(--neon-green);
    background: rgba(16, 185, 129, 0.15);
}

.product-card.theme-green .price {
    color: var(--neon-green);
}



.prod-img {
    aspect-ratio: 1;
    margin-bottom: 15px;
    border-radius: 4px;
    border: 1px solid #222;
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: transparent;
}

.product-image-container {
    aspect-ratio: 1/1;
    overflow: hidden;
    border-radius: 4px;
    border: 1px solid #222;
    margin-bottom: 20px;
    position: relative;
    background: radial-gradient(circle at center, #2a2a2a, #151515);
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-image-container .prod-img {
    border: none;
    border-radius: 0;
    margin-bottom: 0;
    transform: scale(1);
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-card:hover .product-image-container .prod-img {
    transform: scale(1.1);
}

/* Specific Zoom for Eeveelution Bundle to avoid cutoff */
.product-card img[src*="eeveelution"],
.item-card img[src*="eeveelution"] {
    transform: scale(0.95) !important;
    object-fit: contain !important;
    background: radial-gradient(circle at center, #2a2a2a, #1a1a1a) !important;
    margin-bottom: 0 !important;
}

/* Specific Style for Weather Trio & Lovebirds (First Image) */
.product-card img[src*="weather-trio"],
.item-card img[src*="weather-trio"],
.product-card img[src*="lovebird-duo"],
.item-card img[src*="lovebird-duo"],
.product-card img[src*="lovebird-duo-transparent"],
.item-card img[src*="lovebird-duo-transparent"],
.product-card img[src*="lovebird-duo-floodfilled"],
.item-card img[src*="lovebird-duo-floodfilled"],
.product-card img[src*="mew-duo-floodfilled"],
.item-card img[src*="mew-duo-floodfilled"],
.product-card img[src*="mew-duo"],
.item-card img[src*="mew-duo"] {
    position: relative;
    z-index: 10;
    transform: scale(1) !important;
    width: 100% !important;
    height: 100% !important;
    padding: 0 !important;
    object-fit: contain !important;
    background: transparent !important;
    margin-bottom: 0 !important;
}

.prod-info {
    transform: translateZ(10px);
}

.prod-info h4 {
    font-family: var(--font-head);
    font-size: 18px;
    color: white;
    letter-spacing: 1px;
}

.price {
    color: var(--accent);
    font-weight: 700;
    font-size: 16px;
}

/* Grid 5 */
.product-grid-5 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.product-card.highlight {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.prod-img.large {
    flex: 1;
}

.small-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.product-card.small {
    height: 250px;
    background: radial-gradient(circle at center, #222, #111);
    display: flex;
    align-items: flex-end;
    overflow: hidden;
}

.prod-info-overlay {
    background: rgba(0, 0, 0, 0.8);
    width: 100%;
    padding: 15px;
    border-top: 1px solid var(--accent);
    transform: translateZ(20px);
}

/* Footer */
footer {
    padding: 40px;
    text-align: center;
    border-top: 1px solid #333;
    background: #050505;
}

.footer-logo {
    font-family: var(--font-head);
    font-size: 20px;
    margin-bottom: 10px;
}

.footer-links a {
    margin: 0 10px;
    color: #666;
    text-decoration: none;
    font-size: 14px;
}


/* SHOP PAGE STYLES */
.shop-main {
    padding-top: 40px;
    /* Clear fixed header */
    padding-bottom: 100px;
    max-width: 1400px;
    margin: 0 auto;
    min-height: 80vh;
}

.shop-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    padding: 80px 20px;
    overflow: hidden;
}

.shop-header h1 {
    font-family: var(--font-head);
    font-size: 48px;
    color: white;
    margin-bottom: 15px;
}

.shop-header .header-line {
    margin: 0 auto;
}

/* Main Shop Grid */
.shop-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(300px, 500px));
    gap: 40px;
    justify-content: center;
    padding: 0 40px;
}

/* Responsive Shop */
@media(max-width: 1100px) {
    .shop-grid {
        grid-template-columns: 1fr;
        max-width: 600px;
        margin: 0 auto;
    }
}

@media(max-width: 768px) {
    .categories-section {
        flex-direction: column;
        align-items: center;
    }

    .product-grid-6,
    .product-grid-5,
    .small-grid {
        grid-template-columns: 1fr;
    }

    .hero-section h1 {
        font-size: 32px;
    }

    .nav-link {
        display: none;
    }

    .shop-grid {
        grid-template-columns: 1fr;
    }

    .shop-main {
        padding-top: 100px;
    }
}

/* --- Tech Hex Cluster (Left) --- */
.tech-hex-cluster {
    width: 100px;
    height: 100px;
    position: relative;
    animation: rotateCluster 20s linear infinite;
}

.hex {
    position: absolute;
    width: 40px;
    height: 35px;
    /* Hex approx */
    background: rgba(0, 243, 255, 0.1);
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    border: 1px solid rgba(0, 243, 255, 0.3);
    box-shadow: 0 0 10px rgba(0, 243, 255, 0.1);
}

.hex.h1 {
    top: 0;
    left: 30px;
    animation: pulseHex 2s infinite alternate;
}

.hex.h2 {
    top: 30px;
    left: 5px;
    animation: pulseHex 2s infinite alternate 0.5s;
}

.hex.h3 {
    top: 30px;
    left: 55px;
    animation: pulseHex 2s infinite alternate 1s;
}

@keyframes rotateCluster {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes pulseHex {
    from {
        opacity: 0.3;
        transform: scale(0.9);
    }

    to {
        opacity: 0.8;
        transform: scale(1.1);
    }
}

/* --- Data Stream (Right) --- */
.tech-stream-container {
    width: 60px;
    height: 120px;
    display: flex;
    justify-content: space-between;
}

.stream-line {
    width: 4px;
    height: 100%;
    background: linear-gradient(to bottom, transparent, var(--accent), transparent);
    background-size: 100% 200%;
    animation: streamFlow 2s linear infinite;
    opacity: 0.5;
}

.stream-line.l1 {
    animation-duration: 2.5s;
}

.stream-line.l2 {
    animation-duration: 3s;
    animation-delay: 0.5s;
    height: 80%;
    margin-top: 10%;
}

.stream-line.l3 {
    animation-duration: 2s;
    animation-delay: 1s;
}

@keyframes streamFlow {
    0% {
        background-position: 0% 200%;
    }

    100% {
        background-position: 0% -200%;
    }
}

/* --- DNA Helix (Left) --- */
.dna-helix-container {
    width: 60px;
    height: 120px;
    position: relative;
    perspective: 500px;
}

.dna-strand {
    position: absolute;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
    background: repeating-linear-gradient(to bottom,
            transparent,
            transparent 10px,
            rgba(0, 243, 255, 0.4) 10px,
            rgba(0, 243, 255, 0.4) 12px);
    mask-image: linear-gradient(to bottom, transparent, black 20%, black 80%, transparent);
    animation: rotateDNA 10s linear infinite;
    border-left: 2px solid rgba(138, 43, 226, 0.5);
    /* Genetic Purple */
    border-right: 2px solid rgba(138, 43, 226, 0.5);
    border-radius: 10px;
}

.dna-strand.reverse {
    animation-delay: -5s;
    border-color: rgba(0, 243, 255, 0.5);
    /* Cyber Blue */
    background: repeating-linear-gradient(to bottom,
            transparent,
            transparent 10px,
            rgba(138, 43, 226, 0.4) 10px,
            rgba(138, 43, 226, 0.4) 12px);
}

@keyframes rotateDNA {
    0% {
        transform: rotateY(0deg);
    }

    100% {
        transform: rotateY(360deg);
    }
}

/* --- Levitating Pokeballs (Right) --- */
.float-ball-container {
    width: 60px;
    height: 120px;
    position: relative;
}

.float-ball {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: 2px solid white;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    box-shadow: 0 0 5px rgba(255, 255, 255, 0.5);
    overflow: hidden;
}

.float-ball::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 2px;
    background: black;
    transform: translateY(-50%);
    z-index: 2;
}

.float-ball::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 6px;
    height: 6px;
    background: white;
    border: 2px solid black;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
}

/* Poke Ball */
.float-ball.poke {
    top: 10px;
    background: linear-gradient(180deg, #f00 50%, #fff 50%);
    animation: floatUp 3s ease-in-out infinite;
}

/* Great Ball */
.float-ball.great {
    top: 50px;
    background: linear-gradient(180deg, #00f 50%, #fff 50%);
    animation: floatUp 3.5s ease-in-out infinite 0.5s;
}

.float-ball.great::after {
    border-top: 2px solid #f00;
}

/* Accent lines */
/* Ultra Ball */
.float-ball.ultra {
    top: 90px;
    background: linear-gradient(180deg, #333 50%, #fff 50%);
    animation: floatUp 4s ease-in-out infinite 1s;
}

.float-ball.ultra::before {
    background: #ff0;
}

@keyframes floatUp {

    0%,
    100% {
        transform: translate(-50%, 0px);
    }

    50% {
        transform: translate(-50%, -10px);
    }
}

/* --- Gym Badges (Left) --- */
.badge-cluster {
    width: 60px;
    height: 120px;
    position: relative;
    /* No rotation for the whole cluster to keep badges upright */
}

.gym-badge {
    position: absolute;
    width: 32px;
    height: 32px;
    left: 50%;
    transform: translateX(-50%);
    box-shadow: 0 0 5px rgba(255, 255, 255, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.6);
    opacity: 0.9;
}

/* Boulder Badge (Grey Octagon) */
.gym-badge.boulder {
    top: 5px;
    background: linear-gradient(135deg, #a8a8a8, #606060);
    clip-path: polygon(30% 0%, 70% 0%, 100% 30%, 100% 70%, 70% 100%, 30% 100%, 0% 70%, 0% 30%);
    animation: badgeFloat 3s ease-in-out infinite;
}

/* Cascade Badge (Blue Teardrop/Shield-ish) */
.gym-badge.cascade {
    top: 45px;
    background: linear-gradient(135deg, #00ffff, #0088ff);
    clip-path: polygon(50% 0%, 100% 25%, 80% 100%, 20% 100%, 0% 25%);
    animation: badgeFloat 3.2s ease-in-out infinite 0.5s;
}

/* Thunder Badge (Orange Starburst) */
.gym-badge.thunder {
    top: 85px;
    background: linear-gradient(135deg, #ffcc00, #ff6600);
    clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
    animation: badgeFloat 2.8s ease-in-out infinite 1s;
}

@keyframes badgeFloat {

    0%,
    100% {
        transform: translate(-50%, 0) rotate(0deg);
    }

    50% {
        transform: translate(-50%, -5px) rotate(5deg);
    }
}




/* --- Shop Page Layout --- */
.shop-main {
    padding: 120px 5% 60px;
    max-width: 1400px;
    margin: 0 auto;
}



/* BUNDLES OVERRIDE - White BG for Detail View */
/* .item-card.bundles {
    background: #ffffff !important;
    border: none !important;
} */

/* .item-card.prod-starter-trainer-bundle .item-img,
.item-card.prod-ultimate-eevee-evolution-set .item-img,
.item-card.prod-legendary-weather-bundle .item-img {
    mix-blend-mode: multiply;
} */

/* Mew Duo specific - Matching the provided white background photo */
/* .item-card.prod-mew-duo {
    background: #ffffff !important;
    border: none !important;
} */

/* .item-card.prod-mew-duo .item-img {
    mix-blend-mode: multiply !important;
    transform: scale(1) !important;
    object-fit: contain !important;
} */



/* Removed duplicate item-card definition that was here */


.shop-header {
    text-align: center;
    margin-bottom: 60px;
}

.shop-grid-top {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 30px;
}

.shop-grid-bottom {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 920px;
    margin: 0 auto;
}

@media (max-width: 1024px) {
    .shop-grid-top {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {

    .shop-grid-top,
    .shop-grid-bottom {
        grid-template-columns: 1fr;
        max-width: 100%;
    }
}

/* --- Floating Pokemon Cards (Right) --- */
.float-card-container {
    width: 400px;
    /* Reduced width */
    height: 700px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
}

.float-card {
    width: 180px;
    height: 320px;
    background: transparent;
    border: 4px solid #f1c40f;
    border-radius: 12px;
    position: relative;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.6);
    overflow: hidden;
}

.card-inner {
    width: 100%;
    height: 100%;
    border-radius: 8px;
    position: relative;
    overflow: hidden;
}

/* Holographic Shine */
.float-card::after {
    content: '';
    position: absolute;
    top: -100%;
    left: -100%;
    width: 300%;
    height: 300%;
    background: linear-gradient(45deg,
            transparent 45%,
            rgba(255, 255, 255, 0.4) 50%,
            transparent 55%);
    animation: holoShine 3s infinite linear;
    pointer-events: none;
}

.float-card.charizard .card-inner {
    background: url('../assets/charizard.jpg') center/100% 100% no-repeat;
}

.float-card.groudon .card-inner {
    background: url('../assets/groudon.jpg') center/100% 100% no-repeat;
}

.float-card.mew .card-inner {
    background: url('../assets/mew.png') center/100% 100% no-repeat;
}

/* Overlap & Fanned Layout */
.float-card.charizard {
    z-index: 10;
    margin-bottom: -180px;
    margin-left: -140px;
    /* Way more left */
    animation: cardFloatSlightLeft 5s ease-in-out infinite;
}

.float-card.groudon {
    z-index: 12;
    margin-bottom: -180px;
    margin-left: 40px;
    /* Pulled in further */
    animation: cardFloatRight 5s ease-in-out infinite 0.4s;
}

.float-card.mew {
    z-index: 11;
    margin-left: -60px;
    /* Tightened spread */
    animation: cardFloatLeft 5s ease-in-out infinite 0.8s;
}

@keyframes cardFloatSlightLeft {

    0%,
    100% {
        transform: translateY(0) rotate(-8deg);
    }

    50% {
        transform: translateY(-30px) rotate(-12deg);
    }
}

@keyframes cardFloatLeft {

    0%,
    100% {
        transform: translateY(0) rotate(-25deg);
    }

    50% {
        transform: translateY(-30px) rotate(-30deg);
    }
}

@keyframes cardFloatRight {

    0%,
    100% {
        transform: translateY(0) rotate(25deg);
    }

    50% {
        transform: translateY(-30px) rotate(30deg);
    }
}

@keyframes holoShine {
    0% {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    100% {
        transform: translate(0%, 0%) rotate(360deg);
    }
}

/* --- About Page (Creative Redesign) --- */
.about-main-creative {
    padding: 180px 5% 60px;
    color: #fff;
    min-height: 100vh;
}

/* Kinetic Typography Background */
.about-hero {
    max-width: 1400px;
    margin: 80px auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    padding: 60px 20px;
    background: transparent;
    overflow: hidden;
}

/* Typography Container */
/* Typography Container */
.hero-border-scanner {
    position: fixed;
    top: -20%;
    left: -40%;
    /* Moved further left */
    width: 180%;
    /* Increased width to cover */
    height: 100vh;
    z-index: -10;
    opacity: 0.15;
    /* Subtle background texture */
    pointer-events: none;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    /* Anchor Top */
    align-items: flex-start;
    /* Anchor Left */
    transform: rotate(-15deg);
    /* Dynamic Angle */
    padding-left: 0;
    padding-top: 10vh;
}

/* Opposite Side Duplicate */
.hero-border-scanner.alt {
    top: auto;
    left: auto;
    bottom: -20%;
    right: -40%;
    justify-content: flex-end;
    align-items: flex-end;
    padding-top: 0;
    padding-bottom: 10vh;
}

/* Scrolling Text Line 1 */
.hero-border-scanner::before {
    content: 'BEYOND THE PRINT BEYOND THE PRINT BEYOND THE PRINT BEYOND THE PRINT';
    font-size: 8rem;
    font-weight: 900;
    white-space: nowrap;
    color: transparent;
    -webkit-text-stroke: 2px #00f3ff;
    animation: textScroll 20s linear infinite;
    margin-bottom: 20px;
}

/* Scrolling Text Line 2 */
.hero-border-scanner::after {
    content: 'PRECISION MANUFACTURING PRECISION MANUFACTURING PRECISION MANUFACTURING';
    font-size: 8rem;
    font-weight: 900;
    white-space: nowrap;
    color: transparent;
    -webkit-text-stroke: 2px #d946ef;
    animation: textScroll 25s linear infinite reverse;
}

@keyframes textScroll {
    0% {
        transform: translateX(-20%);
    }

    100% {
        transform: translateX(20%);
    }
}

.sub-header {
    color: var(--accent-primary);
    font-size: 0.9rem;
    letter-spacing: 5px;
    margin-bottom: 15px;
    font-family: var(--font-header);
}

.about-hero h1 {
    font-size: 4.5rem;
    line-height: 1.1;
    margin-bottom: 30px;
    font-weight: 900;
}

.hero-lead {
    font-size: 1.3rem;
    line-height: 1.6;
    color: var(--text-muted);
    max-width: 600px;
}

.hero-visual {
    display: flex;
    justify-content: flex-end;
    /* Move logo to the far right */
}

.logo-shield {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 500px;
}

.creative-logo {
    width: 100%;
    height: auto;
    z-index: 2;
    filter: url(#black-to-alpha) drop-shadow(0 0 10px rgba(0, 255, 157, 0.4)) drop-shadow(0 0 20px rgba(0, 255, 157, 0.2));
}

/* .shield-glow removed to keep it tight to logo shape */

.mission-pillars {
    max-width: 1200px;
    margin: 50px auto 100px;
    padding: 60px 20px;
    /* Large vertical padding to prevent hover clipping */
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    position: relative;
    overflow: hidden;
    /* Keep grid contained */
}

.pillar {
    background: rgba(255, 255, 255, 0.03);
    border: 2px solid rgba(255, 255, 255, 0.1);
    position: relative;
    border-radius: 20px;
    transition: all 0.3s ease;
    text-align: center;
    backdrop-filter: blur(10px);
}

.pillar:hover {
    background: rgba(0, 255, 157, 0.05);
    border-color: var(--accent-primary);
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 255, 157, 0.1);
}

.pillar i {
    font-size: 3rem;
    color: var(--accent-primary);
    margin-bottom: 25px;
}

.pillar h3 {
    font-family: "Orbitron", sans-serif;
    font-size: 1.1rem;
    letter-spacing: 2px;
    margin-bottom: 15px;
    color: #fff;
}

.pillar p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

.about-cta {
    max-width: 1200px;
    margin: 100px auto;
    background: linear-gradient(135deg, rgba(0, 255, 157, 0.1), rgba(10, 10, 10, 0.9));
    border: 1px solid rgba(0, 255, 157, 0.2);
    border-radius: 30px;
    padding: 80px 40px;
    text-align: center;
    backdrop-filter: blur(10px);
}

.cta-inner h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    letter-spacing: 3px;
    font-family: "Orbitron", sans-serif;
}

.cta-inner p {
    color: var(--text-muted);
    margin-bottom: 40px;
    font-size: 1.1rem;
}

.cta-btns {
    display: flex;
    gap: 20px;
    justify-content: center;
}

/* Responsive Redesign */
@media (max-width: 968px) {
    .about-hero {
        grid-template-columns: 1fr;
        text-align: center;
        margin-top: 40px;
        gap: 40px;
        padding: 40px;
    }



    .about-hero h1 {
        font-size: 3rem;
    }

    .hero-lead {
        margin: 0 auto;
    }

    .hero-visual {
        justify-content: center;
    }

    .mission-pillars {
        grid-template-columns: 1fr;
    }

    .cta-btns {
        flex-direction: column;
    }
}

/* --- Simple Contact Page Styles --- */
.contact-main-simple {
    min-height: calc(100vh - 80px);
    /* Height minus header */
    display: block;
    /* Removed flex centering to prevent massive content from clipping */
    padding: 180px 0 100px 0;
    /* Clear fixed header with padding instead of margin */
    /* Offset for fixed header */
}

.contact-split-wrapper {
    width: 100%;
    max-width: 1400px;
    /* Increased width for 2 columns */
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

/* FAQ Section (Left) */
.faq-section {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-category-title {
    font-family: var(--font-head);
    font-size: 1.5rem;
    color: #d4af37;
    margin: 20px 0 10px 0;
    letter-spacing: 2px;
}

.faq-item {
    width: 100%;
}

.faq-question {
    background: #ffffff;
    padding: 20px 25px;
    border-radius: 8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.faq-question:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.faq-question span {
    color: #111;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
}

.faq-question i {
    color: #111;
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, padding 0.4s ease;
    border-radius: 0 0 8px 8px;
    /* Optional: background for answer area if desired, user said "plain text under it" effectively */
}

.faq-answer p {
    color: #ccc;
    font-size: 1rem;
    line-height: 1.6;
    padding: 20px 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    /* Separator line like image 2 */
}

/* Contact Right Column */
.contact-content-right {
    display: flex;
    flex-direction: column;
    gap: 40px;
    position: sticky;
    top: 100px;
    /* Sticky scroll for form */
}

/* Old .contact-left h1 replaced by .contact-info-block h1 */
.contact-info-block h1 {
    font-family: var(--font-head);
    font-size: 3.5rem;
    color: #d4af37;
    margin-bottom: 20px;
    letter-spacing: 4px;
}

.contact-description {
    color: #ccc;
    line-height: 1.8;
    margin-bottom: 40px;
    font-size: 1rem;
}

.contact-email {
    margin-top: 40px;
}

.contact-email strong {
    font-family: var(--font-head);
    color: #d4af37;
    display: block;
    margin-bottom: 10px;
    letter-spacing: 2px;
}

.contact-email p {
    color: #fff;
    font-size: 1.1rem;
}

.contact-form-container {
    background: rgba(255, 255, 255, 0.02);
    padding: 30px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.simple-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-field {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-field label {
    color: #ccc;
    font-size: 0.9rem;
    font-weight: 500;
}

.form-field input,
.form-field textarea {
    background: rgba(255, 255, 255, 0.95);
    border: none;
    padding: 15px 20px;
    color: #333;
    font-family: inherit;
    font-size: 0.95rem;
    border-radius: 8px;
    transition: all 0.3s;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
    color: #999;
}

.form-field input,
.form-field textarea {
    width: 100%;
    padding: 15px;
    background: #f5f5f5;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: #1a1a1a;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-field input:focus,
.form-field textarea:focus {
    outline: none;
    background: #ffffff;
    border-color: var(--neon-purple);
    box-shadow: 0 0 15px rgba(139, 92, 246, 0.3);
}

/* Specific selector for contact page button - removed !important from hover transform to allow smooth transition */
.contact-form-card .submit-btn {
    display: block;
    width: 100%;
    background: var(--neon-purple);
    color: #fff;
    border: none;
    padding: 18px 40px;
    font-family: var(--font-head);
    font-size: 0.9rem;
    letter-spacing: 2px;
    border-radius: 8px;
    cursor: pointer;
    text-transform: uppercase;
    box-shadow: 0 0 15px rgba(139, 92, 246, 0.3);
    margin-top: 20px;
    transform: translateY(0);
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1),
        background-color 0.4s ease,
        box-shadow 0.4s ease,
        filter 0.4s ease;
}

.contact-form-card .submit-btn:hover {
    background: #a78bfa;
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(139, 92, 246, 0.6);
    filter: brightness(1.1);
}

/* Responsive Contact Simple */
.contact-wrapper {
    grid-template-columns: 1fr;
    gap: 60px;
}

.contact-content-right {
    position: static;
    /* Disable sticky on mobile */
}

.contact-info-block h1 {
    font-size: 2.5rem;
}


/* --- Interactive Holo-Grid --- */
/* --- Animated Holo-Grid Section --- */
/* --- Animated Holo-Grid Section --- */
/* --- Animated Holo-Grid Section --- */
.mission-pillars {
    position: relative;
    overflow: hidden;
    perspective: 1000px;
    z-index: 1;
    /* Establish stacking context */
    background: transparent;
}

/* Explicit ID override to fix 50px height bug */
#holo-grid {
    position: absolute;
    left: -50%;
    top: -50%;
    display: grid;
    grid-template-columns: repeat(50, 1fr) !important;
    grid-template-rows: repeat(25, 1fr) !important;
    width: 200% !important;
    height: 200% !important;
    transform: perspective(1000px) rotateX(40deg) translateY(0%) translateZ(-100px) !important;
    transform-origin: 50% 50% !important;
    background: radial-gradient(circle at 50% 50%, rgba(0, 243, 255, 0.1), transparent 70%);
    transform-style: preserve-3d;
    z-index: 0;
    /* Behind content */
    pointer-events: auto;
}

.pillar {
    position: relative;
    z-index: 2;
    /* Content above grid */
}

.grid-container {
    /* Fallback/Shared */
    display: grid;
    grid-template-columns: repeat(50, 1fr);
    grid-template-rows: repeat(25, 1fr);
}

.grid-tile {
    border: 1px solid rgba(0, 243, 255, 0.1);
    background: rgba(0, 243, 255, 0.05);
    /* Increased visibility */
    position: relative;
    transition: all 0.2s ease-out;
}

.grid-tile::after {
    content: '';
    position: absolute;
    inset: 2px;
    background: rgba(0, 243, 255, 0.1);
    opacity: 0;
    transition: opacity 0.3s;
}

.grid-tile.active {
    background: rgba(0, 243, 255, 0.2);
    transform: translateZ(20px);
    box-shadow: 0 0 15px var(--neon-cyan);
    z-index: 2;
}

.grid-tile.active::after {
    opacity: 1;
}

.grid-tile.ripple {
    transition: all 0.4s ease-out;
    background: rgba(188, 19, 254, 0.15);
    transform: translateZ(10px);
}

/* --- PRODUCT PAGE STYLES --- */
.products-main {
    padding-top: 160px;
    min-height: 80vh;
    width: 100%;
    max-width: 1400px;
    /* Use full available width */
    margin: 0 auto;
    padding-bottom: 50px;
    padding-left: 20px;
    padding-right: 20px;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    /* Force 4 columns */
    gap: 25px;
    padding: 20px;
}

/* Responsive Breakpoints */
@media (max-width: 1400px) {
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 1000px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 650px) {
    .products-grid {
        grid-template-columns: 1fr;
    }
}



.product-card {
    background: rgba(20, 20, 25, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-5px);
    border-color: var(--neon-cyan);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.product-image-container {
    width: 100%;
    height: 250px;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

.prod-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.5s ease;
}

.product-card:hover .prod-img {
    transform: scale(1.1);
}

.product-image-placeholder {
    width: 100%;
    height: 250px;
    /* Large square-ish image */
    background: #111;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: #333;
    transition: all 0.5s ease;
}

.product-info {
    padding: 20px;
    text-align: left;
}

.product-info h3 {
    font-size: 1.2rem;
    margin-bottom: 8px;
    font-family: var(--font-head);
    letter-spacing: 1px;
    color: #fff;
}

.product-info .price {
    color: #888;
    font-size: 1rem;
    margin-bottom: 15px;
    font-weight: 500;
}

.add-btn {
    width: 100%;
    padding: 12px;
    background: transparent;
    border: 1px solid #333;
    color: #fff;
    font-family: var(--font-head);
    cursor: pointer;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.8rem;
}

.add-btn:hover {
    background: #fff;
    color: #000;
    border-color: #fff;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

/* --- UNIQUE CATEGORY STYLES --- */

/* 1. GAMING (Glitch & Cyber) */
.product-card.gaming {
    border: 2px solid rgba(0, 243, 255, 0.1);
}

.product-card.gaming:hover {
    border: 2px solid var(--neon-cyan);
}

.product-card.gaming:hover .product-image-placeholder {
    background: #000;
    color: var(--neon-cyan);
    text-shadow: 2px 0 var(--neon-purple), -2px 0 var(--neon-cyan);
}



/* 2. POKEMON / POKE-STANDS (Playful Bounce) */
.product-card.pokemon,
.product-card.poke-stands {
    border-radius: 12px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    background: rgba(20, 20, 20, 0.6);
}

.product-card.pokemon:hover,
.product-card.poke-stands:hover {
    transform: translateY(-10px) scale(1.02);
    border: 2px solid var(--accent);
}

.product-card.pokemon .product-image-placeholder,
.product-card.poke-stands .product-image-placeholder {
    border-radius: 12px 12px 0 0;
    background: linear-gradient(180deg, rgba(0, 243, 255, 0.05), rgba(0, 0, 0, 0));
}

.product-card.pokemon:hover .product-image-placeholder i,
.product-card.poke-stands:hover .product-image-placeholder i {
    animation: bounce 0.6s ease infinite;
    color: var(--neon-cyan, #00f3ff);
}

@keyframes bounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}


/* 5. BUNDLES (Matches standard product style) */
.product-card.bundles {
    border-radius: 12px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    background: rgba(20, 20, 20, 0.6);
}

.product-card.bundles:hover {
    border: 2px solid var(--accent);
}






/* 3. CARD HOLDERS (Holographic Glass) */
.product-card.card-holders {
    background: rgba(255, 255, 255, 0.02);
    border: 2px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.product-card.card-holders::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: 0.5s;
    transform: skewX(-25deg);
    pointer-events: none;
}

.product-card.card-holders:hover::before {
    left: 100%;
}

.product-card.card-holders:hover {
    border: 2px solid rgba(0, 255, 157, 0.5);
}

.product-card.card-holders .add-btn {
    border-color: rgba(0, 255, 157, 0.3);
    color: #00ff9d;
}

.product-card.card-holders .add-btn:hover {
    background: #fff;
    color: #000;
    border-color: #fff;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

/* --- Back Button --- */
.back-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    padding: 12px 25px;
    border-radius: 4px;
    cursor: pointer;
    font-family: var(--font-head);
    font-size: 0.85rem;
    letter-spacing: 2px;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    margin-bottom: 40px;
    text-transform: uppercase;
    position: relative;
    z-index: 10;
}

.back-btn:hover {
    border-color: #fff;
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(-5px);
}

.back-btn i {
    font-size: 1.1rem;
}

/* 4. HOME & DESK (Sleek Matte / Monochrome) */
.product-card.home-desk {
    background: #0f0f0f;
    border: 2px solid #222;
}

.product-card.home-desk .product-image-placeholder {
    border-radius: 4px;
    background: #151515;
    color: #444;
    transition: all 0.5s ease;
}

.product-card.home-desk:hover {
    border: 2px solid #555;
    transform: translateY(-5px);
}

.product-card.home-desk:hover .product-image-placeholder {
    color: #fff;
    background: #1a1a1a;
}

.product-card.home-desk h3 {
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #ddd;
}

.product-card.home-desk .add-btn {
    border: 1px solid #333;
    background: transparent;
    color: #888;
    border-radius: 0;
}

.product-card.home-desk .add-btn:hover {
    background: #fff;
    color: #000;
    border-color: #fff;
}

/* --- PRODUCT DETAIL PAGE --- */
.item-main {
    padding: 180px 40px 60px;
    max-width: 1400px;
    margin: 0 auto;
    min-height: 80vh;
}

.product-title-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-bottom: 60px;
    position: relative;
    text-align: center;
}

.product-title-container h1 {
    font-size: 2.5rem;
    color: var(--neon-cyan);
    font-family: var(--font-head);
    text-transform: uppercase;
    margin: 0;
}

.sprite-container {
    width: 96px;
    height: 96px;
    image-rendering: pixelated;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sprite-container img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.item-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

/* Left: Large Image Card */
.item-image-section {
    display: flex;
    justify-content: center;
}

.item-card {
    width: 100%;
    max-width: 600px;
    aspect-ratio: 1;
    background: transparent !important;
    border-radius: 12px;
    border: 1px solid #333;
    position: relative;
    overflow: hidden;
}

.item-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    padding: 0;
    transition: opacity 0.3s ease;
    position: relative;
    z-index: 10;
}

/* Image Navigation */
.image-nav {
    position: absolute;
    inset: 0;
    pointer-events: none;
    display: none;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    background: transparent !important;
    z-index: 100;
    /* Ensure arrows are above image */
}

.nav-arrow {
    width: 50px;
    height: 50px;
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    pointer-events: auto;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
    z-index: 10;
}

.nav-arrow:hover {
    background: var(--neon-cyan);
    color: black;
    border-color: var(--neon-cyan);
}

.image-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    pointer-events: auto;
    background: transparent !important;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: var(--neon-cyan);
    transform: scale(1.3);
}

/* Right: Details Panel */
.item-details-section {
    color: white;
    padding-top: 20px;
}

.item-price {
    font-size: 3rem;
    color: var(--neon-cyan);
    font-family: var(--font-head);
    margin-bottom: 40px;
    border-bottom: 1px solid #333;
    padding-bottom: 20px;
    display: inline-block;
}

.item-description {
    color: #ccc;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 40px;
    font-family: var(--font-body);
    max-width: 500px;
    border-left: 2px solid var(--accent);
    padding-left: 20px;
}

.quantity-selector {
    margin-bottom: 40px;
}

.quantity-selector label {
    display: block;
    margin-bottom: 15px;
    font-family: var(--font-head);
    letter-spacing: 2px;
    color: #888;
    font-size: 0.9rem;
}

.qty-controls {
    display: flex;
    align-items: center;
    gap: 15px;
}

.qty-btn {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid #444;
    color: white;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.qty-btn:hover {
    background: var(--neon-cyan);
    color: black;
    border-color: var(--neon-cyan);
}

#qty-input {
    width: 80px;
    height: 50px;
    text-align: center;
    background: transparent;
    border: 1px solid #444;
    color: white;
    font-family: var(--font-head);
    font-size: 1.5rem;
}

.add-to-cart-large {
    width: 100%;
    padding: 25px;
    font-size: 1.4rem;
    margin-bottom: 50px;
    letter-spacing: 3px;
    clip-path: polygon(10px 0, 100% 0, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0 100%, 0 10px);
}

.express-checkout {
    background: rgba(255, 255, 255, 0.03);
    padding: 30px;
    border-radius: 8px;
    border: 1px dashed #444;
}

.express-checkout p {
    text-align: center;
    color: #888;
    margin-bottom: 20px;
    font-size: 0.9rem;
    letter-spacing: 2px;
    font-weight: bold;
}

.payment-buttons {
    display: flex;
    gap: 15px;
}

.pay-btn {
    flex: 1;
    height: 50px;
    border: none;
    border-radius: 4px;
    font-weight: bold;
    cursor: pointer;
    transition: transform 0.2s;
    font-family: sans-serif;
    font-size: 1rem;
}

.pay-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.shop-pay {
    background: #5a31f4;
    color: white;
}

.paypal {
    background: #ffc439;
    color: #253b80;
}

.gpay {
    background: #000;
    color: white;
    border: 1px solid #333;
}

@media (max-width: 900px) {
    .item-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .product-title-container h1 {
        font-size: 1.8rem;
    }

    .sprite-container {
        width: 64px;
        height: 64px;
    }
}

/* Cart Drawer */
.cart-drawer {
    position: fixed;
    top: 0;
    right: 0;
    width: 350px;
    height: 100vh;
    background: rgba(18, 18, 18, 0.95);
    backdrop-filter: blur(15px);
    border-left: 1px solid var(--accent);
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.8);
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 10000;
    display: flex;
    flex-direction: column;
}

.cart-drawer.active {
    transform: translateX(0);
}

.cart-header {
    padding: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cart-header h2 {
    font-family: var(--font-head);
    color: var(--accent);
    font-size: 1.5rem;
}

.close-cart {
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    transition: color 0.3s;
}

.close-cart:hover {
    color: var(--fire);
}

.cart-items {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.empty-msg {
    color: var(--text-muted);
    text-align: center;
    margin-top: 50px;
}

.cart-item {
    display: flex;
    gap: 15px;
    background: rgba(255, 255, 255, 0.05);
    padding: 10px;
    border-radius: 8px;
    align-items: center;
}

.cart-item-img {
    width: 60px;
    height: 60px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cart-item-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Logo Overrides */
.logo {
    display: flex;
    align-items: center;
    gap: 15px;
    height: auto;
    /* Allow growth */
}

.logo img {
    height: 120px;
    /* Much larger size as requested */
    width: auto;
    object-fit: contain;
    transition: all 0.3s ease;
}

.logo:hover img {
    transform: scale(1.1);
}

.cart-item-info {
    flex: 1;
}

.cart-item-info h4 {
    font-size: 0.9rem;
    margin-bottom: 5px;
    color: white;
}

.cart-item-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cart-item-price {
    font-family: var(--font-head);
    color: var(--accent);
    font-size: 0.9rem;
}

.cart-qty-controls {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(0, 0, 0, 0.3);
    padding: 2px 8px;
    border-radius: 15px;
}

.cart-qty-controls button {
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    font-weight: bold;
    font-size: 1.5rem;
}

.cart-qty-controls span {
    font-size: 0.9rem;
    min-width: 20px;
    text-align: center;
}

.remove-item {
    background: none;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    transition: color 0.3s;
}

.remove-item:hover {
    color: var(--fire);
}

.cart-footer {
    padding: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(0, 0, 0, 0.2);
}

.cart-total {
    display: flex;
    justify-content: space-between;
    font-family: var(--font-head);
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.checkout-btn {
    width: 100%;
    padding: 15px;
    background: var(--gradient-main);
    border: none;
    color: white;
    font-family: var(--font-head);
    font-weight: bold;
    font-size: 1rem;
    letter-spacing: 1px;
    cursor: pointer;
    clip-path: polygon(10px 0, 100% 0, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0 100%, 0 10px);
    transition: transform 0.3s, box-shadow 0.3s;
}

.checkout-btn:hover {
    transform: translateY(-2px);
}



/* --- PAGINATION --- */
.pagination-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 40px;
    gap: 15px;
}

.page-btn {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid #333;
    color: white;
    font-family: var(--font-head);
    font-size: 1rem;
    cursor: pointer;
    clip-path: polygon(5px 0, 100% 0, 100% calc(100% - 5px), calc(100% - 5px) 100%, 0 100%, 0 5px);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.page-btn:hover:not(.disabled) {
    background: var(--neon-cyan);
    color: black;
    border-color: var(--neon-cyan);
}

.page-btn.active {
    background: var(--gradient-main);
    border: none;
    color: white;
}

.page-btn.disabled {
    opacity: 0.3;
    cursor: not-allowed;
    border-color: #222;
}

.shop-main {
    padding-top: 180px !important;
}

.shop-header {
    padding-top: 20px;
    z-index: 10;
    position: relative;
}

/* Specific Zoom for Giratina */
.product-card img[src*="giratina"],
.item-card img[src*="giratina"] {
    transform: scale(1.35) translateY(10px) !important;
}

/* Specific Zoom for Flareon */
.product-card img[src*="flareon"],
.item-card img[src*="flareon"] {
    transform: scale(1.2) translateY(5px) !important;
}

/* Specific Zoom for Caterpie */
.product-card img[src*="caterpie"],
.item-card img[src*="caterpie"] {
    transform: scale(1.2) translateY(5px) !important;
}

/* Specific Zoom for Jirachi */
.product-card img[src*="jirachi"],
.item-card img[src*="jirachi"] {
    transform: scale(1.2) translateY(5px) !important;
}

/* Specific Zoom for Gengar */
.product-card img[src*="gengar"],
.item-card img[src*="gengar"] {
    transform: scale(1.1) !important;
}

/* Specific Zoom for Psyduck */
.product-card img[src*="psyduck"],
.item-card img[src*="psyduck"] {
    transform: scale(1.1) !important;
}

/* Specific Zoom for Magikarp */
.product-card img[src*="magikarp"],
.item-card img[src*="magikarp"] {
    transform: scale(1.1) !important;
}

/* Specific Zoom for Groudon */
.product-card img[src*="groudon"],
.item-card img[src*="groudon"] {
    transform: scale(1.1) !important;
}

/* Specific Zoom for Umbreon */
.product-card img[src*="umbreon"],
.item-card img[src*="umbreon"] {
    transform: scale(1.1) !important;
}

/* Specific Zoom for Mewtwo */
.product-card img[src*="mewtwo"],
.item-card img[src*="mewtwo"] {
    transform: scale(1.1) !important;
}

/* Specific Zoom for Charmander */
.product-card img[src*="charmander"],
.item-card img[src*="charmander"] {
    transform: scale(1.1) !important;
}

/* Specific Zoom for Kyogre */
.product-card img[src*="kyogre"],
.item-card img[src*="kyogre"] {
    transform: scale(1.1) !important;
}

/* Specific Zoom for Gardevoir */
.product-card img[src*="gardevoir"],
.item-card img[src*="gardevoir"] {
    transform: scale(1.1) !important;
}

/* Specific Zoom for Tyranitar */
.product-card img[src*="tyranitar"],
.item-card img[src*="tyranitar"] {
    transform: scale(1.1) !important;
}

/* Specific Zoom for Eevee */
.product-card img[src*="eevee"],
.item-card img[src*="eevee"] {
    transform: scale(1.1) !important;
}

/* Specific Zoom for Moltres */
.product-card img[src*="moltres"],
.item-card img[src*="moltres"] {
    transform: scale(1.1) !important;
}

/* Specific Zoom for Wigglytuff */
.product-card img[src*="wigglytuff"],
.item-card img[src*="wigglytuff"] {
    transform: scale(1.1) !important;
}

/* Specific Zoom for Koffing */
.product-card img[src*="koffing"],
.item-card img[src*="koffing"] {
    transform: scale(1.1) !important;
}

/* Specific Zoom for Haunter */
.product-card img[src*="haunter"],
.item-card img[src*="haunter"] {
    transform: scale(1.1) !important;
}

/* Specific Zoom for Togepi */
.product-card img[src*="togepi"],
.item-card img[src*="togepi"] {
    transform: scale(1.1) !important;
}

/* Specific Zoom for Wooper */
.product-card img[src*="wooper"],
.item-card img[src*="wooper"] {
    transform: scale(1.1) !important;
}

/* Specific Zoom for Ninetales */
.product-card img[src*="ninetales"],
.item-card img[src*="ninetales"] {
    transform: scale(1.1) !important;
}

/* Specific Zoom for Latios */
.product-card img[src*="latios"],
.item-card img[src*="latios"] {
    transform: scale(1.1) !important;
}

/* Specific Zoom for Latias */
.product-card img[src*="latias"],
.item-card img[src*="latias"] {
    transform: scale(1.1) !important;
}

/* Specific Zoom for Piplup */
.product-card img[src*="piplup"],
.item-card img[src*="piplup"] {
    transform: scale(1.1) !important;
}

/* Specific Zoom for Glaceon */
.product-card img[src*="glaceon"],
.item-card img[src*="glaceon"] {
    transform: scale(1.1) !important;
}

/* Specific Zoom for Charizard */
.product-card img[src*="charizard"],
.item-card img[src*="charizard"] {
    transform: scale(1.1) !important;
}

/* Specific Zoom for Giratina */
.product-card img[src*="giratina"],
.item-card img[src*="giratina"] {
    transform: scale(1.1) !important;
}

/* Specific Zoom for Arceus */
.product-card img[src*="arceus"],
.item-card img[src*="arceus"] {
    transform: scale(1.1) !important;
}

/* Specific Zoom for Rayquaza */
.product-card img[src*="rayquaza"],
.item-card img[src*="rayquaza"] {
    transform: scale(1.1) !important;
}

/* Specific Zoom for Palkia */
.product-card img[src*="palkia"],
.item-card img[src*="palkia"] {
    transform: scale(1.1) !important;
}

/* Specific Zoom for Absol */
.product-card img[src*="absol"],
.item-card img[src*="absol"] {
    transform: scale(1.1) !important;
}

/* Specific Zoom for Darkrai */
.product-card img[src*="darkrai"],
.item-card img[src*="darkrai"] {
    transform: scale(1.1) !important;
}

/* Specific Zoom for Dragonite */
.product-card img[src*="dragonite"],
.item-card img[src*="dragonite"] {
    transform: scale(1.1) !important;
}

/* Specific Zoom for Zapdos */
.product-card img[src*="zapdos"],
.item-card img[src*="zapdos"] {
    transform: scale(1.1) !important;
}

/* Specific Zoom for Golbat */
.product-card img[src*="golbat"],
.item-card img[src*="golbat"] {
    transform: scale(1.1) !important;
}

/* Specific Zoom for Raichu */
.product-card img[src*="raichu"],
.item-card img[src*="raichu"] {
    transform: scale(1.1) !important;
}

/* Specific Zoom for Persian */
.product-card img[src*="persian"],
.item-card img[src*="persian"] {
    transform: scale(1.1) !important;
}

/* Specific Zoom for Mew */
.product-card img[src*="mew"],
.item-card img[src*="mew"] {
    transform: scale(1.1) !important;
}

/* Specific Zoom for Poliwhirl */
.product-card img[src*="poliwhirl"],
.item-card img[src*="poliwhirl"] {
    transform: scale(1.1) !important;
}

/* Specific Zoom for Gyarados */
.product-card img[src*="gyarados"],
.item-card img[src*="gyarados"] {
    transform: scale(1.35) translateY(10px) !important;
}

/* Specific Zoom for Zapdos */
.product-card img[src*="zapdos"],
.item-card img[src*="zapdos"] {
    transform: scale(1.15) translateY(10px) !important;
}

/* Specific Zoom for Espeon */
.item-card img[src*="espeon"] {
    transform: scale(1.1) translateY(15px) !important;
}

/* General Alignment for all Pokeballs in List */
.product-card.pokemon .prod-img {
    transform: scale(1.1) translateY(5px) !important;
}

/* Storage Boxes - Ensure they blend and aren't zoomed weirdly */
.product-card img[src*="storage-box"],
.item-card img[src*="storage-box"] {
    object-fit: contain !important;
    transform: scale(1) !important;
    background: transparent !important;
}



/* Specific Zoom for Slab/Toploader Holder */
.product-card img[src*="slab-toploader-holder"],
.item-card img[src*="slab-toploader-holder"] {
    object-fit: contain !important;
    object-position: center !important;
    transform: scale(1.1) !important;
}

/* Specific Zoom for Slab Holder Second Image */
.product-card img[src*="slab-toploader-holder-2"],
.item-card img[src*="slab-toploader-holder-2"] {
    transform: scale(1.45) translateY(-50px) !important;
}

/* Specific Style for PSA Vendor Slab Holder - Zoom to fill square and remove black bars */
/* Specific fix for PSA Vendor Slab Holder - Zoom to fill square and remove black bars */
.product-card img[src*="psa-vendor-slab-holder"],
.item-card img[src*="psa-vendor-slab-holder"] {
    object-fit: contain !important;
    transform: none !important;
    max-width: 100% !important;
    max-height: 100% !important;
    padding: 10px;
}

/* Bundles Specific Style - Reverted to match site theme */
.bundles .product-info h3,
.bundles .item-info h3,
.item-main.bundles #item-title {
    color: var(--accent);
}

.bundles .price {
    color: var(--accent);
}



/* Item Page Overrides for Bundles */
/* Item Page Bundle Title Styling */
.item-main.cat-bundles #item-title {
    color: #ffffff !important;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3) !important;
}

.product-card img[src*="starter-trainer-bundle"],
.item-card img[src*="starter-trainer-bundle"] {
    object-fit: contain !important;
    transform: scale(1.1) !important;
}

/* .product-card img[src*="mew-duo"],
.item-card img[src*="mew-duo"] {
    object-fit: contain !important;
    transform: scale(1.1) !important;
} */


/* Specific fix for PSA Vendor Slab Holder Detail Page Container */
.prod-psa-vendor-slab-holder .product-image-container .prod-img,
.prod-psa-vendor-slab-holder .item-img {
    object-fit: contain !important;
    transform: none !important;
    padding: 0 !important;
    background: transparent !important;
    width: 100%;
    height: 100%;
}







/* Keep Infinicubes dark on hover but restore the white accent border like other products */
.product-card.prod-creeper-infinicube:hover,
.product-card.prod-tnt-infinicube:hover,
.product-card.prod-diamond-ore-infinicube:hover {
    background: #0a0a0a !important;
    border: 2px solid var(--accent) !important;
    box-shadow: none !important;
}

/* Shift Creeper Infinicube to the right - No Zoom */
.product-card.prod-creeper-infinicube img,
.item-card.prod-creeper-infinicube img {
    object-fit: contain !important;
    object-position: 85% center !important;
    transform: none !important;
}

/* TNT & Diamond Ore Infinicube contain - No Zoom */
.product-card.prod-tnt-infinicube img,
.item-card.prod-tnt-infinicube img,
.product-card.prod-diamond-ore-infinicube img,
.item-card.prod-diamond-ore-infinicube img {
    object-fit: contain !important;
    object-position: center !important;
    transform: none !important;
}

/* Instagram Feed Section */
.insta-section {
    padding: 80px 0;
    width: 100%;
    margin-bottom: 50px;
    position: relative;
    z-index: 10;
}

.insta-header {
    text-align: center;
    font-family: var(--font-head);
    color: var(--text-main);
    margin-bottom: 40px;
}

.insta-header h2 {
    font-size: 32px;
    letter-spacing: 2px;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.insta-header p {
    color: var(--text-muted);
    font-size: 14px;
    letter-spacing: 1px;
}

.insta-feed {
    display: flex;
    overflow-x: auto;
    padding: 20px 5%;
    gap: 20px;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.insta-feed::-webkit-scrollbar {
    display: none;
}

.insta-post {
    flex: 0 0 240px;
    /* Adjusted for portrait ratio */
    height: 340px;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: #000;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.insta-post:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    border-color: var(--neon-purple);
}

.insta-post img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.insta-post:hover img {
    transform: scale(1.1);
}

.insta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    /* Darker overlay as requested */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    padding: 25px;
    text-align: center;
}

.insta-post:hover .insta-overlay {
    opacity: 1;
}

.insta-stats {
    display: flex;
    gap: 30px;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
    color: white;
    font-family: var(--font-body);
}

.insta-stat-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.insta-caption {
    font-family: var(--font-body);
    font-size: 13px;
    color: #fff;
    line-height: 1.4;
    font-weight: 500;
}

/* Color Selector Dropdown */
.color-select-wrapper {
    margin-bottom: 25px;
    width: 100%;
}

.color-label {
    display: block;
    font-family: var(--font-head);
    font-size: 0.9rem;
    margin-bottom: 12px;
    color: var(--text-muted);
    letter-spacing: 1px;
}

.color-dropdown {
    position: relative;
    width: 100%;
    font-family: var(--font-body);
}

.color-trigger {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid #333;
    padding: 12px 15px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: white;
    transition: 0.3s;
    font-size: 1rem;
}

.color-trigger:hover {
    border-color: var(--accent);
    background: rgba(255, 255, 255, 0.08);
}

.color-trigger .selected-swatch {
    width: 20px;
    height: 20px;
    border-radius: 3px;
    margin-right: 10px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    display: inline-block;
}

.color-options {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    max-height: 300px;
    overflow-y: auto;
    background: #000;
    /* Solid black background */
    border: 1px solid var(--accent);
    z-index: 9999;
    /* High z-index */
    display: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.9);
}

.color-options.show {
    display: block;
}

.color-option {
    padding: 12px 15px;
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    transition: background 0.2s;
    color: white;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.color-option:last-child {
    border-bottom: none;
}

.color-option:hover {
    background: rgba(255, 255, 255, 0.15);
}

.color-swatch {
    width: 24px;
    height: 24px;
    border-radius: 4px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    flex-shrink: 0;
}

/* Custom Scrollbar for dropdown */
.color-options::-webkit-scrollbar {
    width: 6px;
}

.color-options::-webkit-scrollbar-track {
    background: #111;
}

.color-options::-webkit-scrollbar-thumb {
    background: #444;
}

/* Specific Style for Stackable Elite Trainer Box Case */
.product-card img[src*="stackable-etb-case"],
.item-card img[src*="stackable-etb-case"] {
    object-fit: contain !important;
    transform: none !important;
    max-width: 100% !important;
    max-height: 100% !important;
    padding: 10px;
}

.prod-stackable-etb-case .product-image-container .prod-img,
.prod-stackable-etb-case .item-img {
    object-fit: contain !important;
    transform: none !important;
    padding: 0 !important;
    background: transparent !important;
    width: 100%;
    height: 100%;
}

.item-card.prod-stackable-etb-case {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
}

.prod-stackable-etb-case .product-image-container {
    background: transparent !important;
    box-shadow: none !important;
}

/* Specific Style for 5x Pokecoin Holder */
.product-card img[src*="5x-pokecoin-holder"],
.item-card img[src*="5x-pokecoin-holder"] {
    object-fit: contain !important;
    transform: none !important;
    max-width: 100% !important;
    max-height: 100% !important;
    padding: 10px;
}

.prod-5x-pokecoin-holder .product-image-container .prod-img,
.prod-5x-pokecoin-holder .item-img {
    object-fit: contain !important;
    transform: none !important;
    padding: 0 !important;
    background: transparent !important;
    width: 100%;
    height: 100%;
}

.item-card.prod-5x-pokecoin-holder {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
}

.prod-5x-pokecoin-holder .product-image-container {
    background: transparent !important;
    box-shadow: none !important;
}

/* Specific Style for Pokeball Click-a-Ball Fidget - Subtle Zoom */
.product-card img[src*="pokeball-click-a-ball-fidget"],
.item-card img[src*="pokeball-click-a-ball-fidget"] {
    object-fit: contain !important;
    transform: none !important;
    max-width: 100% !important;
    max-height: 100% !important;
    padding: 5px !important;
    background: #fff !important;
    /* Remove black box */
}

.prod-pokeball-click-a-ball-fidget .product-image-container .prod-img,
.prod-pokeball-click-a-ball-fidget .item-img {
    object-fit: contain !important;
    transform: none !important;
    padding: 5px !important;
    background: #fff !important;
    width: 100%;
    height: 100%;
}

.prod-pokeball-click-a-ball-fidget .product-image-container,
.item-card.prod-pokeball-click-a-ball-fidget {
    background: #fff !important;
    border: none !important;
    box-shadow: none !important;
}

/* Specific Style for 3x3 Graded Slab Universal Display Stand */
.product-card img[src*="3x3-slab-stand"],
.item-card img[src*="3x3-slab-stand"] {
    object-fit: contain !important;
    transform: none !important;
    max-width: 100% !important;
    max-height: 100% !important;
    padding: 5px !important;
    background: #fff !important;
    /* White background to hide black box */
}

.prod-3x3-graded-slab-universal-display-stand .product-image-container .prod-img,
.prod-3x3-graded-slab-universal-display-stand .item-img {
    object-fit: contain !important;
    transform: none !important;
    padding: 0 !important;
    background: #fff !important;
    width: 100%;
    height: 100%;
}

.prod-3x3-graded-slab-universal-display-stand .product-image-container,
.item-card.prod-3x3-graded-slab-universal-display-stand {
    background: #fff !important;
    border: none !important;
    box-shadow: none !important;
}

/* --- HELP PAGE REDESIGN --- */
.help-main {
    padding-top: 120px;
    padding-bottom: 100px;
    max-width: 1200px;
    margin: 0 auto;
    min-height: 80vh;
}

.help-hero {
    text-align: center;
    margin-bottom: 80px;
}

.help-hero h1 {
    font-family: var(--font-head);
    font-size: 4rem;
    color: white;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.help-hero p {
    color: var(--accent-dim);
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
}

.help-container {
    display: flex;
    flex-direction: column;
    gap: 80px;
    padding: 0 40px;
}

.section-title {
    font-family: var(--font-head);
    font-size: 24px;
    color: var(--cyber-gold);
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(251, 191, 36, 0.3);
    display: flex;
    align-items: center;
    gap: 15px;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.faq-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.faq-card:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: var(--neon-purple);
    transform: translateY(-5px);
}

.faq-card h3 {
    font-family: var(--font-head);
    font-size: 18px;
    color: white;
    margin-bottom: 15px;
    line-height: 1.4;
}

.faq-card p {
    color: #ccc;
    font-size: 14px;
    line-height: 1.6;
}

/* --- CENTERED CONTACT PAGE --- */
.contact-main-centered {
    padding-top: 120px;
    padding-bottom: 100px;
    min-height: 90vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.contact-wrapper {
    max-width: 800px;
    width: 100%;
    padding: 0 20px;
}

.contact-header-section {
    margin-bottom: 50px;
}

.contact-header-section h1 {
    font-family: var(--font-head);
    font-size: 3rem;
    color: white;
    font-weight: 900;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.contact-header-section p {
    color: #ccc;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 30px;
    max-width: 600px;
}

.contact-header-section h3,
.contact-inquiry-box h3 {
    font-family: var(--font-head);
    font-size: 1.2rem;
    color: white;
    font-weight: 700;
    margin-bottom: 5px;
    text-transform: uppercase;
}

.contact-inquiry-box p {
    color: white;
    font-size: 1.1rem;
    margin: 0;
}

.contact-form-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 40px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.contact-form-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 20px rgba(255, 255, 255, 0.05);
}

.contact-inquiry-box {
    display: inline-block;
    padding: 15px 25px;
    background: rgba(139, 92, 246, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(139, 92, 246, 0.1);
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    cursor: pointer;
    margin-bottom: 20px;
}

.contact-inquiry-box:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.05);
    border-color: white;
    box-shadow: 0 10px 20px rgba(255, 255, 255, 0.1);
}

/* --- HELP PAGE ACCORDION --- */
.help-main-accordion {
    padding-top: 120px;
    padding-bottom: 100px;
    min-height: 80vh;
    max-width: 1400px;
    /* Increased to accommodate side-by-side layout */
    margin: 0 auto;
}

.help-content-wrapper {
    padding: 0 40px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 70px;
    /* Increased spacing between Support, FAQ, and About Us */
    align-items: start;
}

@media (max-width: 1100px) {
    .help-content-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

.faq-section-group {
    margin-bottom: 60px;
}

.group-title {
    font-family: var(--font-head);
    font-size: 24px;
    color: var(--accent);
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    gap: 15px;
}

.faq-item {
    margin-bottom: 15px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.2);
}

.faq-question {
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: 16px;
    color: white;
    font-weight: 500;
}

.icon-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    position: relative;
    /* Context for absolute positioning */
}

.faq-question i,
.faq-question svg,
.icon-wrapper i,
.icon-wrapper svg {
    color: black !important;
    font-size: 24px;
    font-style: normal !important;
    transform-origin: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: absolute;
    /* Stack on top of each other */
    top: 0;
    left: 0;
}

/* Default State */
.icon-plus {
    opacity: 1;
    transform: rotate(0deg);
}

.icon-minus {
    opacity: 0;
    transform: rotate(-90deg);
}

/* Active State (Open) */
.faq-item.active .icon-plus {
    opacity: 0;
    transform: rotate(90deg);
}

.faq-item.active .icon-minus {
    opacity: 1;
    transform: rotate(0deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s ease-out;
    background: rgba(0, 0, 0, 0.2);
    padding: 0 20px;
    /* moved padding here but 0 by default */
}

.faq-answer p {
    margin: 0;
    color: #ccc;
    font-size: 15px;
    line-height: 1.6;
    padding: 20px 0;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 20px;
}

.faq-item.active {
    border-color: var(--accent);
}

/* --- ARCA3D MODALS & NEWS LAYOUT --- */

/* Modal Styles */
.modal-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(8px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.modal-backdrop.active {
    opacity: 1;
    pointer-events: all;
}

.modal-content {
    background: #111;
    border: 1px solid var(--neon-purple);
    padding: 40px;
    border-radius: 16px;
    max-width: 600px;
    width: 90%;
    position: relative;
    box-shadow: 0 0 30px rgba(139, 92, 246, 0.3);
    transform: scale(0.9);
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.modal-backdrop.active .modal-content {
    transform: scale(1);
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    color: #666;
    font-size: 24px;
    cursor: pointer;
    transition: color 0.2s;
}

.modal-close:hover {
    color: white;
}

.modal-date {
    color: var(--neon-purple);
    font-family: var(--font-head);
    letter-spacing: 2px;
    margin-bottom: 10px;
    font-size: 14px;
}

.modal-title {
    font-family: var(--font-head);
    font-size: 28px;
    color: white;
    margin-bottom: 20px;
}

.modal-body {
    color: #ddd;
    line-height: 1.8;
    font-size: 16px;
}

/* News Grid Container */
.updates-section {
    padding: 80px 20px;
    max-width: 1400px;
    margin: 0 auto;
}

.section-title-center {
    font-family: var(--font-head);
    font-size: 32px;
    color: var(--accent);
    text-align: center;
    margin-bottom: 60px;
    letter-spacing: 2px;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
    text-transform: uppercase;
}

.updates-container-news {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    justify-content: center;
    max-width: 1200px;
    margin: 0 auto;
}

/* Base Card Styles */
.news-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 500px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.news-card:hover {
    transform: translateY(-5px);
}

/* Card Type: Text Summary (Leftmost) */
.text-card {
    background: transparent;
    padding: 20px 0;
    justify-content: space-between;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    padding-right: 30px;
    text-align: left;
}

.text-card .news-content h3 {
    font-family: var(--font-head);
    font-size: 32px;
    /* Bigger title like reference */
    color: white;
    margin-bottom: 25px;
    line-height: 1.2;
    text-transform: uppercase;
    font-weight: 700;
}

.text-card .news-content p {
    color: var(--text-muted);
    font-size: 16px;
    line-height: 1.6;
}

/* Card Type: Image/Graphic (Right ones) */
.image-card {
    background: transparent;
}

.news-image-wrapper {
    background: #000;
    width: 100%;
    height: 450px;
    /* Taller image area */
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    border: 1px solid #222;
}

.news-image-wrapper img {
    width: 60%;
    height: auto;
    object-fit: contain;
}

/* Placeholder Art Styles */
.placeholder-art {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    color: white;
}

.placeholder-art i {
    font-size: 80px;
    color: var(--accent);
}

.placeholder-art span {
    font-family: var(--font-head);
    font-size: 24px;
    letter-spacing: 4px;
    font-weight: 700;
}

.glow-art i {
    color: var(--neon-purple);
    text-shadow: 0 0 30px var(--neon-purple);
}

/* Hover Effects */
.image-card:hover .news-image-wrapper {
    border-color: var(--neon-purple);
    box-shadow: 0 0 20px rgba(139, 92, 246, 0.1);
}

.image-card:hover .placeholder-art i {
    transform: scale(1.1);
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* Read More Indicator */
.news-read-more {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 30px;
    font-family: var(--font-head);
    font-size: 13px;
    letter-spacing: 2px;
    color: var(--neon-purple);
    font-weight: 700;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.news-card:hover .news-read-more {
    color: white;
    text-shadow: 0 0 10px rgba(139, 92, 246, 0.5);
}

.news-read-more i {
    font-size: 16px;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.news-card:hover .news-read-more i {
    transform: translateX(6px);
}

/* Date Footer */
.news-date {
    margin-top: 25px;
    font-size: 13px;
    color: #666;
    /* Muted date color */
    font-family: var(--font-body);
    font-weight: 500;
    text-transform: uppercase;
}

/* Responsive */
@media (max-width: 900px) {
    .updates-container-news {
        grid-template-columns: 1fr;
    }

    .text-card {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        padding-right: 0;
        padding-bottom: 30px;
        min-height: auto;
    }

    .news-image-wrapper {
        height: 300px;
    }
}

/* Notification Modal Styles */
.notification-box {
    max-width: 450px !important;
    text-align: center;
    padding: 50px 40px !important;
}

.notif-icon {
    font-size: 60px;
    color: var(--neon-green);
    margin-bottom: 20px;
    filter: drop-shadow(0 0 15px rgba(0, 255, 157, 0.3));
    animation: scaleIn 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.notif-box h2 {
    font-family: var(--font-head);
    color: white;
    margin-bottom: 15px;
    letter-spacing: 2px;
}

.notif-box p {
    color: #ccc;
    font-family: var(--font-body);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 30px;
}

.notif-btn {
    width: 100%;
    max-width: 200px;
    margin: 0 auto;
}

@keyframes scaleIn {
    0% {
        transform: scale(0);
        opacity: 0;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

/* Merch Boutique Shop Styles */
.shop-main {
    padding-top: 150px;
    min-height: 100vh;
}

.merch-header {
    text-align: center;
    margin-bottom: 80px;
}

.merch-title {
    font-family: var(--font-head);
    font-size: 3.5rem;
    font-weight: 900;
    letter-spacing: 15px;
    color: white;
    text-transform: uppercase;
    margin-bottom: 5px;
    /* Reduced to fit subtext closer */
}

.free-shipping-promo {
    font-family: var(--font-body);
    font-size: 1.6rem;
    /* Increased from 1.1rem */
    color: var(--neon-cyan);
    letter-spacing: 4px;
    /* Slightly more spread */
    text-transform: uppercase;
    margin-bottom: 30px;
    font-weight: 700;
    text-shadow: 0 0 15px rgba(0, 243, 255, 0.6);
}

.merch-line {
    width: 80px;
    height: 4px;
    background: var(--neon-purple);
    margin: 0 auto;
    box-shadow: 0 0 15px var(--neon-purple);
}

.shop-grid-top {
    display: flex;
    justify-content: center;
    gap: 40px;
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 40px;
    flex-wrap: wrap;
}

.category-link {
    text-decoration: none;
}

.merch-card {
    width: 420px;
    height: 520px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 4px;
    position: relative;
    overflow: hidden;
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1),
        border-color 0.15s ease,
        background 0.15s ease,
        box-shadow 0.15s ease;
    display: flex;
    flex-direction: column;
}

.merch-card:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-15px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5), 0 0 20px rgba(139, 92, 246, 0.1);
}

.merch-img-container {
    flex: 1;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.merch-img {
    position: absolute;
    width: 85%;
    height: 85%;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.5)) brightness(1.2) contrast(1.1);
}


/* Bundles Category Card - Matches other categories */
.merch-card.bundles {
    border-radius: 4px;
    /* Maintain standard category card radius */
}




/* Specific floating offsets for stands */
.poke-stands-merch-v1 {
    transform: rotate(-8deg) translateX(-15%);
    z-index: 1;
}

.poke-stands-merch-v2 {
    transform: rotate(8deg) translateX(15%);
    z-index: 2;
}

.merch-card:hover .poke-stands-merch-v1 {
    transform: rotate(-12deg) translateX(-25%) scale(1.1);
}

.merch-card:hover .poke-stands-merch-v2 {
    transform: rotate(12deg) translateX(25%) scale(1.1);
}

/* General zoom for single images */
.merch-card:hover .pokemon-merch-img,
.merch-card:hover .fidgets-merch-img,
.merch-card:hover .bundles-merch-img {
    transform: scale(1.15) translateY(-10px);
}

.merch-info {
    padding: 40px 30px;
    text-align: center;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
}

.merch-info h3 {
    font-family: var(--font-head);
    font-size: 1.6rem;
    color: white;
    letter-spacing: 4px;
    margin-bottom: 10px;
    transition: color 0.3s ease;
}

.merch-info p {
    font-size: 0.9rem;
    color: var(--text-muted);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.merch-card:hover .merch-info h3 {
    color: var(--neon-purple);
    text-shadow: 0 0 15px rgba(139, 92, 246, 0.4);
}

/* Responsive */
@media (max-width: 1400px) {
    .merch-card {
        width: 380px;
        height: 480px;
    }
}

@media (max-width: 900px) {
    .merch-title {
        font-size: 2.5rem;
        letter-spacing: 8px;
    }

    .shop-grid-top {
        gap: 30px;
    }

    .merch-card {
        width: 100%;
        max-width: 400px;
    }
}

/* --- COMMUNITY PAGE STYLES --- */
.community-main {
    padding-top: 120px;
    min-height: 100vh;
}

.community-hero {
    text-align: center;
    padding: 60px 20px;
}

.community-hero h1 {
    font-size: 4rem;
    font-family: var(--font-head);
    color: white;
    margin-bottom: 20px;
}

.community-subtitle {
    font-family: var(--font-body);
    font-size: 1.2rem;
    color: var(--text-muted);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.social-platforms {
    padding: 60px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.social-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.social-card {
    background: rgba(20, 20, 20, 0.4);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 40px;
    text-align: center;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.social-card:hover {
    transform: translateY(-15px) scale(1.05);
    border-color: var(--accent);
}

.social-icon-wrapper {
    width: 100px;
    height: 100px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    font-size: 50px;
    color: white;
    transition: all 0.3s;
    position: relative;
    z-index: 2;
}

.social-info {
    position: relative;
    z-index: 2;
}

.social-info h3 {
    font-family: var(--font-head);
    font-size: 1.8rem;
    color: white;
    margin-bottom: 10px;
    letter-spacing: 2px;
}

.social-info p {
    font-family: var(--font-body);
    color: var(--accent);
    font-weight: 700;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.social-tagline {
    font-size: 0.9rem;
    color: var(--text-muted);
    display: block;
    line-height: 1.6;
}

/* Specific Platform Glows */
.instagram-card:hover {
    border-color: #E1306C;
    box-shadow: 0 0 30px rgba(225, 48, 108, 0.3);
}

.instagram-card:hover .social-icon-wrapper {
    color: #E1306C;
    background: rgba(225, 48, 108, 0.1);
}

.instagram-card:hover h3 {
    color: #E1306C;
}

.youtube-card:hover {
    border-color: #FF0000;
    box-shadow: 0 0 30px rgba(255, 0, 0, 0.3);
}

.youtube-card:hover .social-icon-wrapper {
    color: #FF0000;
    background: rgba(255, 0, 0, 0.1);
}

.youtube-card:hover h3 {
    color: #FF0000;
}

.tiktok-card:hover {
    border-color: #00f2ea;
    box-shadow: 0 0 30px rgba(0, 242, 234, 0.3);
}

.tiktok-card:hover .social-icon-wrapper {
    color: #00f2ea;
    background: rgba(0, 242, 234, 0.1);
}

.tiktok-card:hover h3 {
    color: #00f2ea;
}

.community-footer-cta {
    padding: 100px 20px;
    text-align: center;
}

.cta-box {
    background: linear-gradient(135deg, rgba(20, 20, 20, 0.6), rgba(40, 40, 40, 0.3));
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 60px;
    border-radius: 20px;
    max-width: 800px;
    margin: 0 auto;
    backdrop-filter: blur(10px);
}

.cta-box h2 {
    font-family: var(--font-head);
    font-size: 2.5rem;
    color: white;
    margin-bottom: 20px;
}

.cta-box p {
    color: var(--text-muted);
    margin-bottom: 40px;
}

.newsletter-form {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.newsletter-form input {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid #444;
    padding: 15px 25px;
    color: white;
    font-family: var(--font-body);
    width: 300px;
    border-radius: 4px;
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--accent);
}

@media (max-width: 968px) {
    .social-container {
        grid-template-columns: 1fr;
    }

    .newsletter-form {
        flex-direction: column;
        align-items: center;
    }

    .newsletter-form input {
        width: 100%;
        max-width: 400px;
    }
}


/* --- COMMUNITY PAGE BACKGROUND OVERLAY --- */
.community-bg-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease, transform 1.5s ease;
    z-index: -1;
    pointer-events: none;
    filter: brightness(0.6) blur(2px);
}

.community-bg-overlay.is-visible {
    opacity: 0.15;
    transform: scale(1.05);
}

.community-bg-overlay.yt-active {
    background-image: url('../assets/img/social/youtube-bg.jpg');
    background-size: contain;
}

.community-bg-overlay.yt-active.is-visible {
    transform: scale(1);
}

.community-bg-overlay.insta-active {
    background-image: url('../assets/img/social/instagram-bg.png');
    background-size: contain;
}

.community-bg-overlay.insta-active.is-visible {
    transform: scale(1);
}

.community-bg-overlay.tiktok-active {
    background-image: url('../assets/img/social/tiktok-bg.png');
    background-size: contain;
}

.community-bg-overlay.tiktok-active.is-visible {
    transform: scale(1);
}

/* Ensure card content stays clean and above background */
.social-card .social-icon-wrapper,
.social-card .social-info {
    position: relative;
    z-index: 2;
}

.social-card:hover .holo-layer {
    opacity: 1;
    animation: holoShift 2s infinite linear;
}


/* --- BUNDLE CONTENTS SECTION (Detail Page) --- */
.bundle-contents-section {
    margin: 20px 0;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 20px;
    border-radius: 12px;
}

.contents-label {
    display: block;
    font-family: var(--font-head);
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 15px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.contents-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contents-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: 10px;
    font-weight: 500;
}

.contents-list li:last-child {
    margin-bottom: 0;
}

.contents-list li i {
    color: var(--neon-purple);
    font-size: 1.2rem;
    filter: drop-shadow(0 0 5px var(--neon-purple));
}

/* --- CONVEYOR BELT ANIMATION --- */
.conveyor-wrapper {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 40px 0;
    cursor: grab;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(20, 20, 20, 0.5) 50%, rgba(0, 0, 0, 0) 100%);
}

.conveyor-wrapper:active {
    cursor: grabbing;
}

.conveyor-track {
    display: flex;
    gap: 30px;
    width: max-content;
    will-change: transform;
    padding-left: 30px;
    /* Initial offset */
}

.conveyor-item {
    width: 280px;
    flex-shrink: 0;
    user-select: none;
    perspective: 1000px;
}

.conveyor-item .product-card {
    width: 100%;
    margin: 0;
    height: 100%;
}

/* --- FACTORY ANIMATION --- */
.factory-section {
    width: 100%;
    height: 450px;
    background: radial-gradient(circle at 50% 50%, #1a1a2e 0%, #0d0d15 100%);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    perspective: 1000px;
    border-top: 1px solid #333;
    border-bottom: 1px solid #333;
}

.factory-floor {
    position: relative;
    width: 90%;
    height: 300px;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    z-index: 10;
}

/* CONVEYOR BELT */
.conveyor-belt-surface {
    position: absolute;
    bottom: 50px;
    left: 20%;
    width: 60%;
    height: 20px;
    background: repeating-linear-gradient(90deg, #333 0px, #333 40px, #222 40px, #222 80px);
    border-top: 4px solid #555;
    border-bottom: 4px solid #111;
    animation: scrollBelt 2s linear infinite;
    z-index: 5;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
}

@keyframes scrollBelt {
    from {
        background-position: 0 0;
    }

    to {
        background-position: -80px 0;
    }
}

/* PRINTER (RIGHT) */
.printer-zone {
    position: absolute;
    right: 5%;
    bottom: 50px;
    width: 150px;
    height: 250px;
    z-index: 20;
}

.printer-gantry {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 20px;
    background: #444;
    border-bottom: 2px solid #00f3ff;
    box-shadow: 0 0 10px rgba(0, 243, 255, 0.5);
}

.printer-head {
    width: 20px;
    height: 30px;
    background: #666;
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    /* Animation controlled by JS or keyframe? Let's use CSS keyframe synced */
    animation: printHeadMove 4s ease-in-out infinite;
}

.printer-head::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 10px solid #00f3ff;
    filter: drop-shadow(0 0 5px #00f3ff);
}

.build-plate {
    position: absolute;
    bottom: 0;
    left: 10%;
    width: 80%;
    height: 10px;
    background: #222;
    border: 1px solid #444;
}

@keyframes printHeadMove {

    0%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    50% {
        transform: translateX(-50%) translateY(150px);
    }
}

/* SHIPPING BOX (LEFT) */
.shipping-zone {
    position: absolute;
    left: 5%;
    bottom: 20px;
    width: 150px;
    height: 150px;
    perspective: 800px;
    z-index: 20;
}

.shipping-box {
    width: 100px;
    height: 80px;
    position: absolute;
    bottom: 0;
    left: 25px;
    transform-style: preserve-3d;
    transform: rotateX(-20deg) rotateY(30deg);
}

.box-face {
    position: absolute;
    background: #d4a373;
    border: 1px solid #bc8a5f;
    backface-visibility: hidden;
}

.box-face.front {
    width: 100px;
    height: 80px;
    transform: translateZ(50px);
}

.box-face.back {
    width: 100px;
    height: 80px;
    transform: rotateY(180deg) translateZ(50px);
}

.box-face.left {
    width: 100px;
    height: 80px;
    transform: rotateY(-90deg) translateZ(50px);
}

.box-face.right {
    width: 100px;
    height: 80px;
    transform: rotateY(90deg) translateZ(50px);
}

.box-face.bottom {
    width: 100px;
    height: 100px;
    transform: rotateX(-90deg) translateZ(40px);
    background: #a98467;
}

.box-lid {
    position: absolute;
    top: -50px;
    width: 100px;
    height: 50px;
    background: #d4a373;
    transform-origin: bottom;
    transform: rotateX(120deg);
    transition: transform 0.3s;
}

/* Items on Belt */
.factory-item {
    position: absolute;
    width: 80px;
    height: 80px;
    bottom: 70px;
    /* On belt */
    right: 12%;
    /* Start at printer */
    z-index: 15;
    display: flex;
    align-items: center;
    justify-content: center;
}

.factory-item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 5px 10px rgba(0, 0, 0, 0.5));
}

/* Animation Classes managed by JS */
.factory-printing {
    clip-path: polygon(0 100%, 100% 100%, 100% 100%, 0 100%);
    animation: printReveal 2s linear forwards;
}

.factory-move {
    animation: beltTravel 6s linear forwards;
}

.factory-drop {
    animation: dropIntoBox 0.6s ease-in forwards;
}

@keyframes printReveal {
    to {
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    }
}

@keyframes beltTravel {
    to {
        right: 80%;
    }

    /* Move to left side near box */
}

@keyframes dropIntoBox {
    to {
        bottom: 40px;
        opacity: 0;
        transform: scale(0.5) translateY(50px);
    }
}

/* --- CYBER FACTORY 2.0 --- */
.cyber-factory-section {
    width: 100%;
    height: 480px;
    background: #050510;
    background-image:
        linear-gradient(rgba(13, 13, 13, 0.9), rgba(13, 13, 13, 0.9)),
        linear-gradient(90deg, #111 1px, transparent 1px),
        linear-gradient(#111 1px, transparent 1px);
    background-size: 100% 100%, 40px 40px, 40px 40px;
    position: relative;
    overflow: hidden;
    border-top: 1px solid #333;
    border-bottom: 1px solid #333;
}

.cyber-factory-layout {
    position: absolute;
    top: 50%;
    left: 10%;
    width: 80%;
    height: 300px;
    transform: translateY(-50%);
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
}

/* MATERIALIZER (RIGHT) */
.materializer-station {
    position: absolute;
    right: 0;
    bottom: 40px;
    width: 140px;
    height: 250px;
    z-index: 20;
}

.emitter-head {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 40px;
    background: #222;
    border: 1px solid #444;
    clip-path: polygon(0 0, 100% 0, 80% 100%, 20% 100%);
    box-shadow: 0 0 15px rgba(0, 243, 255, 0.3);
}

.emitter-light {
    position: absolute;
    bottom: 5px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 5px;
    background: #00f3ff;
    box-shadow: 0 0 10px #00f3ff;
}

.scan-beam {
    position: absolute;
    top: 40px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 0;
    background: linear-gradient(to bottom, rgba(0, 243, 255, 0.8), transparent);
    z-index: 15;
    opacity: 0;
    pointer-events: none;
}

.base-plate {
    position: absolute;
    bottom: 0;
    left: 10px;
    right: 10px;
    height: 10px;
    background: #222;
    border-top: 2px solid #00f3ff;
    box-shadow: 0 0 10px rgba(0, 243, 255, 0.2);
}

/* CONVEYOR TRACK (MIDDLE) */
.holo-conveyor-track {
    position: absolute;
    bottom: 40px;
    left: 150px;
    right: 150px;
    height: 10px;
    background: #111;
    border-top: 1px solid #333;
    z-index: 10;
}

.track-lines {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(90deg, transparent 0, transparent 40px, #00f3ff 40px, #00f3ff 42px);
    animation: trackScroll 2s linear infinite;
    opacity: 0.5;
}

@keyframes trackScroll {
    from {
        background-position: 0 0;
    }

    to {
        background-position: -42px 0;
    }
}

/* SHIPPING PORTAL (LEFT) */
.shipping-portal {
    position: absolute;
    left: 0;
    bottom: 20px;
    width: 140px;
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    z-index: 20;
}

.portal-ring {
    width: 100px;
    height: 100px;
    border: 4px solid #8b5cf6;
    border-radius: 50%;
    box-shadow: 0 0 20px #8b5cf6, inset 0 0 20px #8b5cf6;
    animation: portalPulse 2s ease-in-out infinite alternate;
    background: rgba(139, 92, 246, 0.1);
}

.portal-label {
    margin-top: 15px;
    font-family: 'Orbitron', monospace;
    font-size: 0.7rem;
    color: #8b5cf6;
    text-align: center;
    letter-spacing: 1px;
    text-shadow: 0 0 5px #8b5cf6;
}

@keyframes portalPulse {
    from {
        box-shadow: 0 0 15px #8b5cf6, inset 0 0 10px #8b5cf6;
    }

    to {
        box-shadow: 0 0 25px #8b5cf6, inset 0 0 20px #8b5cf6;
    }
}

/* ASSEMBLY ITEMS */
#assembly-line-items {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.assembly-item {
    position: absolute;
    width: 80px;
    height: 80px;
    bottom: 60px;
    /* Ride on track */
    right: 30px;
    /* Start at printer center */
    z-index: 15;
    /* Hidden initially */
    opacity: 0;
    transform-origin: center bottom;
}

.assembly-item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.4));
}

/* PRINTING ANIMATION */
.assembly-item.printing {
    opacity: 1;
    clip-path: polygon(0 100%, 100% 100%, 100% 100%, 0 100%);
    animation: laserPrint 2s linear forwards;
}

@keyframes laserPrint {
    0% {
        clip-path: polygon(0 100%, 100% 100%, 100% 100%, 0 100%);
        filter: brightness(2) separate;
    }

    100% {
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
        filter: brightness(1);
    }
}

/* MOVING ANIMATION */
.assembly-item.moving {
    opacity: 1;
    /* Animation controlled by JS transition for variable width */
    transition: right 4s linear;
}

/* SHIPPING ANIMATION */
.assembly-item.shipping {
    transition: all 0.5s ease-in;
    opacity: 0;
    transform: scale(0) rotate(180deg);
    bottom: 110px;
    /* Suck into portal center */
}

/* --- PRODUCT MARQUEE --- */
.product-marquee-section {
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    background: transparent;
    padding: 20px 0;
    overflow: hidden;
    position: relative;
}

.marquee-wrapper {
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
}

.marquee-track {
    display: inline-flex;
    gap: 40px;
    padding: 20px 0;
    animation: productScroll 30s linear infinite;
}

.marquee-track:hover {
    animation-play-state: paused;
}

.marquee-item {
    width: 280px;
    flex-shrink: 0;
    white-space: normal;
    /* Allow text wrapping inside card */
}

.marquee-item .product-card {
    width: 100%;
    height: 100%;
    margin: 0;
}

@keyframes productScroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* --- REVIEWS SECTION --- */
.reviews-section {
    padding: 100px 20px;
    background: transparent;
    position: relative;
    color: #fff;
    overflow: hidden;
    perspective: 1000px;
}

.reviews-header {
    text-align: center;
    margin-bottom: 70px;
    position: relative;
    z-index: 2;
}

.rating-title {
    font-family: var(--font-head);
    font-size: 6rem;
    color: white;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.8), 0 0 40px rgba(255, 255, 255, 0.4);
    margin: 0;
    letter-spacing: -2px;
    line-height: 1;
}

.rating-subtitle {
    font-family: var(--font-body);
    color: #b2bec3;
    font-size: 1.2rem;
    margin-top: 15px;
    font-weight: 300;
    letter-spacing: 0.5px;
}

.reviews-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px;
}

.review-card {
    background: rgba(22, 22, 24, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 30px;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.3);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    text-align: right;
    position: relative;
    overflow: hidden;
    min-height: 220px;
    justify-content: center;
    gap: 20px;
    flex: 0 1 420px;
    /* Consistent width to maintain the grid feel */
}

.review-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
    z-index: 1;
}

.review-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(255, 255, 255, 0.15);
    background: rgba(30, 30, 35, 0.85);
}

.review-card:hover::before {
    opacity: 1;
}

/* Background Product Image */
.review-bg-product {
    position: absolute;
    top: 50%;
    left: -5%;
    width: 50%;
    height: auto;
    object-fit: contain;
    transform: translateY(-50%) rotate(-15deg) scale(1.1);
    opacity: 1;
    z-index: 0;
    filter: drop-shadow(5px 10px 15px rgba(0, 0, 0, 0.5));
    transition: all 0.5s ease;
    border-radius: 50%;
    background-color: #f0f0f0;
    /* Ensure transparent PNGs have a background */
}

.review-card:hover .review-bg-product {
    transform: translateY(-50%) rotate(-5deg) scale(1.2) translateX(10px);
    filter: drop-shadow(10px 20px 25px rgba(0, 0, 0, 0.6));
    opacity: 1;
}

/* Content Wrapper */
.review-content-wrapper {
    position: relative;
    z-index: 2;
    width: 60%;
    display: flex;
    flex-direction: column;
    gap: 6px;
    align-items: flex-end;
}

.reviewer-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.reviewer-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.reviewer-avatar {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #6c5ce7, #a29bfe);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    color: #fff;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    box-shadow: 0 4px 10px rgba(108, 92, 231, 0.3);
}

.reviewer-details {
    display: flex;
    flex-direction: column;
}

.reviewer-name {
    font-weight: 700;
    color: #fff;
    font-size: 1.3rem;
    display: flex;
    align-items: center;
    gap: 8px;
    flex-direction: row-reverse;
    /* Verified badge on left of name or right? user said top right */
}

.verified-badge {
    color: #0984e3;
    font-size: 0.8em;
    background: rgba(9, 132, 227, 0.1);
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.review-date {
    font-size: 0.8rem;
    color: #bdc3c7;
    /* Brighter grey for date */
    margin-top: 2px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}


.review-stars {
    color: white;
    letter-spacing: 2px;
    font-size: 0.9rem;
    filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.8));
    margin-bottom: 5px;
}

.review-text {
    font-size: 0.95rem;
    color: #f5f6f7;
    /* Brighter, almost white grey for main text */
    line-height: 1.5;
    flex-grow: 1;
    font-weight: 300;
    margin: 5px 0;
}

.review-product-badge {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.03);
    padding: 10px 14px;
    border-radius: 12px;
    margin-top: auto;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: background 0.3s ease;
}

.review-card:hover .review-product-badge {
    background: rgba(255, 255, 255, 0.08);
}

.review-product-badge img {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    object-fit: cover;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.review-product-badge span {
    font-size: 0.9rem;
    color: #d1d8e0;
    /* Brighter grey for product badge name */
    font-weight: 500;
}

/* --- NEW CONTACT PAGE SPLIT LAYOUT --- */
.contact-dual-layout {
    max-width: 1400px;
    margin: 120px auto 50px;
    padding: 0 40px;
    color: var(--text-main);
}

.contact-split-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
    margin-top: 40px;
}

@media (max-width: 900px) {
    .contact-split-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
}

/* Page Header Section */
.breadcrumbs {
    font-size: 14px;
    color: #888;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: center;
}

.highlight-pink {
    color: #d946ef;
}

.page-title {
    font-size: 4rem;
    font-family: var(--font-head);
    font-weight: 900;
    line-height: 0.9;
    margin-bottom: 40px;
    text-transform: uppercase;
    color: white;
    text-align: center;
}

.info-block {
    margin-bottom: 25px;
    font-size: 1rem;
    line-height: 1.6;
    color: #ccc;
}

.info-block strong {
    color: white;
}

.info-section {
    margin-top: 40px;
}

.info-section h3 {
    font-size: 2.5rem;
    color: white;
    margin-bottom: 15px;
    font-weight: 700;
}

.info-section p {
    font-size: 1.4rem;
    line-height: 1.6;
}

.link-underline {
    color: #d946ef;
    text-decoration: underline;
}

/* Right Form */
.contact-right-form {
    background: transparent;
}

.contact-right-form h2 {
    font-size: 1.8rem;
    margin-bottom: 30px;
    font-weight: 700;
    color: white;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 0.95rem;
    color: white;
    font-weight: 600;
}

.required {
    color: #ef4444;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 15px;
    background: transparent;
    border: 1px solid #444;
    border-radius: 4px;
    color: white;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: border 0.3s;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: #d946ef;
    outline: none;
}

.form-group select option {
    background-color: #1a1a1a;
    color: white;
}

.select-wrapper {
    position: relative;
}

/* Attach Button */
.attach-btn {
    width: 100%;
    padding: 15px;
    background: #f5f5f5;
    color: #333;
    border: none;
    cursor: pointer;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border-radius: 4px;
    margin-bottom: 10px;
    transition: 0.3s;
    font-family: var(--font-body);
}

.attach-btn:hover {
    background: #e0e0e0;
}

.file-note {
    font-size: 0.8rem;
    color: #888;
    margin-bottom: 30px;
}

/* Send Button */
.send-btn {
    width: 100%;
    padding: 15px;
    background: white;
    color: black;
    border: none;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    border-radius: 4px;
    transition: 0.3s;
    font-family: var(--font-body);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
}

.send-btn:hover {
    background: #d946ef;
    color: white;
    transform: translateY(-2px);
}

.recaptcha-text {
    margin-top: 15px;
    font-size: 0.75rem;
    color: #666;
    line-height: 1.4;
}

.recaptcha-text a {
    color: #888;
    text-decoration: underline;
}

/* --- FOOTER & STICKY BOTTOM FIX --- */
footer {
    width: 100%;
    background-color: #000;
    padding: 60px 0;
    margin-top: auto;
    /* Pushes to bottom */
    border-top: 1px solid #111;
    flex-shrink: 0;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 0 20px;
}

.footer-logo {
    font-family: var(--font-head);
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    letter-spacing: 2px;
}

.footer-links {
    display: flex;
    gap: 30px;
}

.footer-links a {
    color: #666;
    font-size: 0.8rem;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--accent);
}

/* Comparison Table Styles */
.comparison-section {
    max-width: 1400px;
    width: 95%;
    margin: 100px auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
    /* Ensure on top */
}

/* Comparison Header (Restored) */
.comparison-header {
    text-align: center;
    /* Centered as requested */
    margin-bottom: 40px;
    padding-left: 0;
}

.comparison-header h2 {
    font-family: var(--font-head);
    font-size: 3.5rem;
    color: white;
    text-transform: uppercase;
    line-height: 1;
}

.brand-highlight {
    color: var(--neon-cyan);
    text-shadow: 0 0 20px rgba(0, 243, 255, 0.8), 0 0 40px rgba(0, 243, 255, 0.4);
}

.comparison-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    /* Border removed for seamless look */
    border: none;
    border-radius: 0;
    overflow: visible;
    background: transparent;
    box-shadow: none;
}

/* Headers */
.comp-col-header {
    padding: 25px 20px;
    font-family: var(--font-body);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 1.25rem;
    letter-spacing: 1px;
    color: #888;
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid #333;
    padding-bottom: 25px;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid #333;
}

.feature-header {
    justify-content: flex-start;
    padding-left: 30px;
    background: transparent;
    border-bottom: 1px solid #333;
}

.brand-header {
    background: rgba(255, 255, 255, 0.03);
    /* Slight color difference */
    color: var(--neon-cyan);
    text-shadow: 0 0 15px rgba(0, 243, 255, 0.5);
    /* Added glow */
    border-left: 1px solid #333;
}

.others-header {
    border-left: 1px solid #333;
    color: #666;
}

/* Rows */
.comp-row-label {
    padding: 25px 30px;
    font-size: 1.4rem;
    color: #e5e5e5;
    border-bottom: 1px solid #333;
    display: flex;
    align-items: center;
    font-weight: 500;
}

.comp-cell {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    font-size: 1.5rem;
    border-left: 1px solid #333;
    border-bottom: 1px solid #333;
}



/* Brand Column Highlight */
.brand-cell {
    background: rgba(255, 255, 255, 0.03);
}

.brand-cell i {
    color: #fbbf24;
    /* Gold Checkmark */
    filter: drop-shadow(0 0 5px rgba(251, 191, 36, 0.4));
    position: relative;
    z-index: 1;
}

.brand-cell i::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    animation: goldRipple 3s infinite;
    z-index: -1;
    pointer-events: none;
}

@keyframes goldRipple {
    0% {
        box-shadow: 0 0 0 0 rgba(251, 191, 36, 0.8);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(251, 191, 36, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(251, 191, 36, 0);
    }
}

.others-cell i {
    color: #444;
    /* Muted X */
}

/* Remove bottom borders for last row */
.comparison-grid>div:nth-last-child(-n+3) {
    border-bottom: none;
}

@media (max-width: 768px) {
    .comparison-grid {
        grid-template-columns: 1fr 1fr 1fr;
        font-size: 0.8rem;
    }

    .comp-row-label {
        font-size: 0.9rem;
        padding: 15px;
    }

    .comp-cell {
        padding: 15px;
        font-size: 1.2rem;
    }

    .feature-header {
        padding-left: 15px;
    }

    .comparison-header h2 {
        font-size: 2rem;
    }
}

/* --- ITEM DETAIL PAGE STYLES --- */
.item-main {
    padding-top: 150px;
    max-width: 1400px;
    margin: 0 auto;
    padding-bottom: 100px;
}

.back-btn {
    background: transparent;
    border: 1px solid #333;
    color: #888;
    padding: 10px 20px;
    font-family: var(--font-head);
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s;
    margin-left: 40px;
    margin-bottom: 40px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.back-btn:hover {
    color: white;
    border-color: white;
    background: rgba(255, 255, 255, 0.05);
}

.item-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 80px;
    padding: 0 40px;
}

.item-image-section {
    position: sticky;
    top: 150px;
}

.item-card {
    background: radial-gradient(circle at center, #2e2e2e, #111111);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 600px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.item-img {
    max-width: 100%;
    max-height: 500px;
    object-fit: contain;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.6));
    transition: transform 0.5s ease;
}

.item-card:hover .item-img {
    transform: scale(1.05);
}

.product-title-container {
    text-align: center;
    margin-bottom: 80px;
}

#item-title {
    font-family: var(--font-head);
    font-size: 4.5rem;
    color: white;
    text-transform: uppercase;
    letter-spacing: 6px;
    margin: 0;
}

.item-price {
    font-family: var(--font-head);
    font-size: 3rem;
    color: var(--neon-cyan);
    margin-bottom: 30px;
    text-shadow: 0 0 15px rgba(0, 243, 255, 0.3);
}

.item-description {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #aaa;
    margin-bottom: 50px;
    font-weight: 300;
}

.add-to-cart-large {
    width: 100%;
    padding: 22px;
    background: var(--neon-cyan);
    color: black;
    border: none;
    font-family: var(--font-head);
    font-size: 1.4rem;
    font-weight: 900;
    cursor: pointer;
    text-transform: uppercase;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    clip-path: polygon(20px 0, 100% 0, 100% calc(100% - 20px), calc(100% - 20px) 100%, 0 100%, 0 20px);
    margin-bottom: 40px;
}

.add-to-cart-large:hover {
    box-shadow: 0 0 40px rgba(0, 243, 255, 0.6);
    transform: translateY(-3px);
    filter: brightness(1.1);
}

/* Color Selection Styles */
.color-selection-container {
    margin-bottom: 40px;
}

.color-selection-container label {
    display: block;
    font-family: var(--font-head);
    font-size: 0.85rem;
    color: #666;
    letter-spacing: 2px;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.color-options-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.color-option {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    padding: 2px;
    background-clip: content-box;
    background-color: var(--color-hex);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.1);
}

.color-option:hover {
    transform: scale(1.2);
}

.color-option.active {
    border-color: var(--neon-cyan);
    transform: scale(1.1);
    box-shadow: 0 0 10px rgba(0, 243, 255, 0.4);
}

.selected-color-name {
    margin-left: 10px;
    color: white;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

/* Express Checkout */
.express-checkout {
    margin-top: 50px;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.express-checkout p {
    font-family: var(--font-head);
    font-size: 0.85rem;
    color: #555;
    letter-spacing: 3px;
    margin-bottom: 25px;
    text-align: center;
}

.payment-buttons {
    display: flex;
    gap: 12px;
}

.pay-btn {
    flex: 1;
    height: 50px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 700;
    transition: all 0.2s;
    font-size: 1rem;
}

.pay-btn:hover {
    opacity: 0.85;
    transform: translateY(-1px);
}

.shop-pay {
    background-color: #5a31f4;
    color: white;
}

.paypal {
    background-color: #ffc400;
    color: #003087;
}

.gpay {
    background-color: white;
    color: black;
    border: 1px solid #ddd;
}

/* --- FIREWORK EFFECT --- */
.firework-rocket {
    position: fixed;
    width: 10px;
    height: 10px;
    background: #00f3ff;
    box-shadow: 0 0 25px #00f3ff, 0 0 10px white;
    border-radius: 50%;
    pointer-events: none;
    z-index: 10001;
    transition: all 0.7s cubic-bezier(0.1, 0.5, 0.5, 1);
}

.firework-particle {
    position: fixed;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    pointer-events: none;
    z-index: 10000;
    animation: fireworkExplode 1.2s ease-out forwards;
}

@keyframes fireworkExplode {
    0% {
        transform: translate(0, 0) scale(1);
        opacity: 1;
    }

    100% {
        transform: translate(var(--tx), var(--ty)) scale(0);
        opacity: 0;
    }
}

/* --- PULSE EFFECT FOR EMOJI --- */
.confetti-launcher {
    position: absolute;
    bottom: 15px;
    right: 20px;
    animation: emojiPulse 2s infinite ease-in-out;
    filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0));
    transition: filter 0.3s ease;
    cursor: pointer;
    font-size: 2rem;
    /* Made it a bit bigger as well per previous request */
    z-index: 10;
}

.confetti-launcher:hover {
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.8));
    transform: scale(1.2);
}

@keyframes emojiPulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.6;
        filter: drop-shadow(0 0 0 rgba(0, 243, 255, 0));
    }

    50% {
        transform: scale(1.4);
        /* Much more dramatic scale */
        opacity: 1;
        filter: drop-shadow(0 0 15px rgba(0, 243, 255, 0.8));
        /* Neon cyan glow added to pulse */
    }
}

/* --- PRODUCT SPECIFIC ADJUSTMENTS --- */
.prod-psa-wall-mount .prod-img,
.prod-psa-wall-mount .item-img {
    transform: scale(1.3);
}

.prod-psa-wall-mount.item-card:hover .item-img {
    transform: scale(1.4);
}

/* 2. POKEMON / POKE-STANDS (Playful Bounce) */
.product-card.pokemon,
.product-card.poke-stands {
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    /* Changed to subtle white */
    background: rgba(20, 20, 20, 0.6);
}

.product-card.pokemon:hover,
.product-card.poke-stands:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: #ffffff;
    /* Changed to white */
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.15);
}

.product-card.pokemon .product-image-container,
.product-card.poke-stands .product-image-container {
    border-radius: 12px 12px 0 0;
    /* Ensuring this targets the container instead of placeholder if structure changed */
    background: linear-gradient(180deg, rgba(255, 215, 0, 0.05), rgba(0, 0, 0, 0));
}



/* 3. CARD HOLDERS (Holographic Glass) */
.product-card.card-holders {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.product-card.card-holders::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: 0.5s;
    transform: skewX(-25deg);
    pointer-events: none;
}

.product-card.card-holders:hover::before {
    left: 100%;
}

.product-card.card-holders:hover {
    border-color: rgba(0, 255, 157, 0.5);
    box-shadow: 0 0 20px rgba(0, 255, 157, 0.1);
}

.product-card.card-holders .add-btn {
    border-color: rgba(0, 255, 157, 0.3);
    color: #00ff9d;
}

/* 4. HOME & DESK (Sleek Matte / Monochrome) */
.product-card.home-desk {
    background: #0f0f0f;
    border: 1px solid #222;
}

.product-card.home-desk .product-image-container {
    border-radius: 4px;
    background: #151515;
    transition: all 0.5s ease;
}

.product-card.home-desk:hover {
    border-color: #555;
    box-shadow: 0 5px 20px rgba(255, 255, 255, 0.05);
    transform: translateY(-5px);
}

.product-card.home-desk:hover .product-image-container {
    background: #1a1a1a;
}

.product-card.home-desk h3 {
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #ddd;
}

.product-card.home-desk .add-btn {
    border: 1px solid #333;
    background: transparent;
    color: #888;
    border-radius: 0;
}

.product-card.home-desk .add-btn:hover {
    background: #fff;
    color: #000;

    border-color: #fff;
}

/* Specific fix for 9x pokecoin insert */
.prod-9x-pokecoin-insert .product-image-container {
    background: white !important;
}

.prod-9x-pokecoin-insert:hover .product-image-container {
    background: white !important;
}

/* Zoom adjustments for storage boxes */
.prod-charizard-storage-box .prod-img,
.prod-snorlax-storage-box .prod-img,
.prod-pikachu-storage-box .prod-img {
    transform: scale(1.25);
}

.prod-charizard-storage-box:hover .prod-img,
.prod-snorlax-storage-box:hover .prod-img,

/* --- Social Particles FX --- */
.social-card {
    overflow: visible !important;
    /* Allow particles to fly out */
}

.social-card .holo-layer {
    border-radius: 12px;
    /* Prevent square corners from poking out */
}

.social-particle {
    position: absolute;
    pointer-events: none;
    z-index: 6;
    /* On top of holo-layer (z-5) so they remain bright */
    filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.5));
}

/* --- Review Modal Styles --- */
.review-btn-container {
    text-align: center;
    margin-top: 40px;
}

.modal-backdrop-review {
    display: flex;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    justify-content: center;
    align-items: center;
    z-index: 9999;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.modal-backdrop-review.active {
    opacity: 1;
    pointer-events: all;
}

.review-form-box {
    width: 90%;
    max-width: 500px;
    background: rgba(20, 20, 20, 0.95);
    border: 1px solid var(--accent);
    padding: 30px;
    border-radius: 12px;
    position: relative;
    box-shadow: 0 0 30px rgba(188, 19, 254, 0.2);
}

.review-form-box .modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
}

/* Form Styles */
.form-group {
    margin-bottom: 20px;
    text-align: left;
}

.form-group label {
    display: block;
    font-family: var(--font-head);
    color: var(--accent);
    margin-bottom: 8px;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid #333;
    color: white;
    font-family: var(--font-body);
    border-radius: 4px;
}

/* Star Rating - Unique to avoid conflicts */
.star-rating {
    display: inline-flex;
    flex-direction: row-reverse;
}

.star-rating input {
    display: none;
}

.star-rating label {
    font-size: 30px;
    color: #444;
    cursor: pointer;
    padding: 0 5px;
    transition: color 0.2s;
}

.star-rating input:checked~label,
.star-rating label:hover,
.star-rating label:hover~label {
    color: #ffd700;
}