/* ================================
   PikaHut - Premium Pokemon TCG Store
   Stunning CSS with Animations & Effects
   ================================ */

/* CSS Variables */
:root {
    /* Primary Colors */
    --primary: #ffd000;
    --primary-dark: #cc9900;
    --primary-light: #ffe54c;

    /* Secondary Colors */
    --secondary: #3d7dca;
    --secondary-dark: #2a5694;
    --secondary-light: #5a9ce0;

    /* Accent Colors */
    --accent-red: #ff4655;
    --accent-purple: #9333ea;
    --accent-cyan: #00d4ff;
    --accent-green: #00ff88;

    /* Background Colors */
    --bg-dark: #0a0a0f;
    --bg-darker: #050508;
    --bg-card: rgba(20, 20, 30, 0.8);
    --bg-card-hover: rgba(30, 30, 45, 0.9);

    /* Text Colors */
    --text-primary: #ffffff;
    --text-secondary: rgba(255, 255, 255, 0.7);
    --text-muted: rgba(255, 255, 255, 0.5);

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #ffd000 0%, #ff9500 50%, #ff5e00 100%);
    --gradient-rainbow: linear-gradient(90deg, #ff0000, #ff7f00, #ffff00, #00ff00, #0000ff, #4b0082, #9400d3);
    --gradient-holo: linear-gradient(135deg,
        rgba(255, 0, 0, 0.3) 0%,
        rgba(255, 127, 0, 0.3) 14%,
        rgba(255, 255, 0, 0.3) 28%,
        rgba(0, 255, 0, 0.3) 42%,
        rgba(0, 0, 255, 0.3) 57%,
        rgba(75, 0, 130, 0.3) 71%,
        rgba(148, 0, 211, 0.3) 85%,
        rgba(255, 0, 0, 0.3) 100%);

    /* Shadows */
    --shadow-glow: 0 0 30px rgba(255, 208, 0, 0.3);
    --shadow-card: 0 10px 40px rgba(0, 0, 0, 0.5);

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-medium: 0.3s ease;
    --transition-slow: 0.5s ease;

    /* Spacing */
    --container-width: 1400px;
    --section-padding: 120px;
}

/* Reset & Base */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--bg-dark);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Selection */
::selection {
    background: var(--primary);
    color: var(--bg-dark);
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--bg-darker);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--primary), var(--accent-red));
    border-radius: 5px;
}

/* ================================
   Loading Screen
   ================================ */
#loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-darker);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

#loader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader-content {
    text-align: center;
}

.pokeball-loader {
    margin-bottom: 30px;
}

.pokeball {
    width: 80px;
    height: 80px;
    position: relative;
    animation: pokeball-bounce 0.6s ease-in-out infinite;
}

.pokeball-top {
    position: absolute;
    top: 0;
    width: 80px;
    height: 40px;
    background: #ff1a1a;
    border-radius: 80px 80px 0 0;
    border: 4px solid #333;
    border-bottom: none;
}

.pokeball-bottom {
    position: absolute;
    bottom: 0;
    width: 80px;
    height: 40px;
    background: #fff;
    border-radius: 0 0 80px 80px;
    border: 4px solid #333;
    border-top: none;
}

.pokeball-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 24px;
    height: 24px;
    background: #fff;
    border: 4px solid #333;
    border-radius: 50%;
    z-index: 10;
}

.pokeball-center::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 10px;
    height: 10px;
    background: #fff;
    border: 3px solid #333;
    border-radius: 50%;
}

@keyframes pokeball-bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

.loader-text {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.2rem;
    color: var(--primary);
    margin-bottom: 20px;
    animation: pulse 1.5s ease-in-out infinite;
}

.loader-bar {
    width: 200px;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    overflow: hidden;
    margin: 0 auto;
}

.loader-progress {
    height: 100%;
    background: var(--gradient-primary);
    width: 0%;
    animation: load 2s ease-in-out forwards;
}

@keyframes load {
    0% { width: 0%; }
    100% { width: 100%; }
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

/* ================================
   Particle Canvas
   ================================ */
#particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

/* ================================
   Navigation
   ================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 0;
    z-index: 1000;
    background: transparent;
    transition: all var(--transition-medium);
}

.navbar.scrolled {
    background: rgba(10, 10, 15, 0.95);
    backdrop-filter: blur(20px);
    padding: 15px 0;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.3);
}

.nav-container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--text-primary);
}

/* Pikachu Logo with Pizza Hut Hat - Detailed Version */
.logo-mascot {
    width: 50px;
    height: 55px;
    position: relative;
    margin-right: 5px;
}

.pika-logo {
    position: relative;
    width: 100%;
    height: 100%;
}

/* Pikachu Body */
.pika-logo-body {
    position: absolute;
    width: 32px;
    height: 24px;
    background: linear-gradient(180deg, #ffd000 0%, #f5c400 100%);
    border-radius: 50% 50% 45% 45%;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    box-shadow: inset -4px -4px 8px rgba(0,0,0,0.1), inset 2px 2px 4px rgba(255,255,255,0.2);
}

.pika-logo-belly {
    position: absolute;
    width: 16px;
    height: 10px;
    background: #fff8dc;
    border-radius: 50%;
    bottom: 4px;
    left: 50%;
    transform: translateX(-50%);
}

/* Pikachu Head */
.pika-logo-head {
    position: absolute;
    width: 36px;
    height: 28px;
    background: linear-gradient(180deg, #ffd000 0%, #f5c400 100%);
    border-radius: 50% 50% 40% 40%;
    bottom: 18px;
    left: 50%;
    transform: translateX(-50%);
    box-shadow: inset -3px -3px 6px rgba(0,0,0,0.1), inset 2px 2px 4px rgba(255,255,255,0.2);
}

.pika-logo-face {
    position: absolute;
    width: 100%;
    height: 100%;
}

/* Eyes */
.pika-logo-eye {
    position: absolute;
    width: 8px;
    height: 10px;
    background: #1a1a2e;
    border-radius: 50%;
    top: 10px;
}

.pika-logo-eye.left { left: 6px; }
.pika-logo-eye.right { right: 6px; }

.pika-eye-pupil {
    position: absolute;
    width: 5px;
    height: 6px;
    background: #000;
    border-radius: 50%;
    top: 2px;
    left: 2px;
}

.pika-eye-shine {
    position: absolute;
    width: 3px;
    height: 3px;
    background: #fff;
    border-radius: 50%;
    top: 2px;
    right: 1px;
}

/* Nose */
.pika-logo-nose {
    position: absolute;
    width: 4px;
    height: 3px;
    background: #1a1a2e;
    border-radius: 50%;
    top: 14px;
    left: 50%;
    transform: translateX(-50%);
}

/* Mouth */
.pika-logo-mouth {
    position: absolute;
    width: 8px;
    height: 4px;
    border-bottom: 2px solid #1a1a2e;
    border-radius: 0 0 50% 50%;
    top: 16px;
    left: 50%;
    transform: translateX(-50%);
}

/* Cheeks */
.pika-logo-cheek {
    position: absolute;
    width: 10px;
    height: 8px;
    background: radial-gradient(circle, #ff6b6b 0%, #ff4444 100%);
    border-radius: 50%;
    bottom: 4px;
    box-shadow: 0 0 6px rgba(255, 100, 100, 0.6);
}

.pika-logo-cheek.left { left: 2px; }
.pika-logo-cheek.right { right: 2px; }

/* Ears */
.pika-logo-ear {
    position: absolute;
    width: 10px;
    height: 22px;
    background: linear-gradient(180deg, #ffd000 30%, #333 100%);
    border-radius: 50% 50% 0 0;
    top: -5px;
}

.pika-logo-ear.left {
    left: 2px;
    transform: rotate(-25deg);
}

.pika-logo-ear.right {
    right: 2px;
    transform: rotate(25deg);
}

.pika-logo-ear::after {
    content: '';
    position: absolute;
    top: 0;
    width: 100%;
    height: 8px;
    background: #1a1a2e;
    border-radius: 50% 50% 0 0;
}

/* Tail */
.pika-logo-tail {
    position: absolute;
    width: 12px;
    height: 16px;
    background: linear-gradient(135deg, #ffd000, #b8860b);
    bottom: 8px;
    right: -6px;
    clip-path: polygon(0% 100%, 50% 0%, 100% 0%, 100% 30%, 50% 30%, 50% 100%);
    transform: rotate(15deg);
}

/* Pizza Hut Logo Hat - Iconic Red Roof */
.pizza-hut-hat {
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 20;
}

/* The iconic Pizza Hut red roof - triangle pointing up */
.ph-hat-roof {
    width: 38px;
    height: 18px;
    background: linear-gradient(180deg, #e31837 0%, #c41230 50%, #a00d28 100%);
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
    position: relative;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.4));
}

/* Hide unused elements */
.ph-hat-stripe {
    display: none;
}

.ph-hat-base {
    display: none;
}

/* Hover animation */
.logo:hover .pika-logo {
    animation: logo-bounce 0.5s ease;
}

.logo:hover .pika-logo-cheek {
    animation: cheek-glow 0.5s ease infinite alternate;
}

@keyframes logo-bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

@keyframes cheek-glow {
    0% { box-shadow: 0 0 6px rgba(255, 100, 100, 0.6); }
    100% { box-shadow: 0 0 12px rgba(255, 100, 100, 0.9); }
}

.logo-text {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: 1px;
}

.logo-text .highlight {
    color: var(--primary);
}

.nav-links {
    display: flex;
    gap: 40px;
}

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
    transition: color var(--transition-fast);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width var(--transition-medium);
}

.nav-link:hover, .nav-link.active {
    color: var(--text-primary);
}

.nav-link:hover::after, .nav-link.active::after {
    width: 100%;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.cart-btn {
    position: relative;
    background: transparent;
    border: none;
    color: var(--text-primary);
    cursor: pointer;
    padding: 10px;
    transition: transform var(--transition-fast);
}

.cart-btn:hover {
    transform: scale(1.1);
}

.cart-count {
    position: absolute;
    top: 0;
    right: 0;
    background: var(--accent-red);
    color: white;
    font-size: 0.7rem;
    font-weight: 600;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cta-btn {
    background: var(--gradient-primary);
    border: none;
    color: var(--bg-dark);
    font-weight: 600;
    padding: 12px 24px;
    border-radius: 8px;
    cursor: pointer;
    transition: all var(--transition-medium);
}

.cta-btn:hover {
    transform: translateY(-2px);
}

/* Glow Button Effect */
.glow-btn {
    position: relative;
    overflow: hidden;
}

.glow-btn::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 208, 0, 0.3) 0%, transparent 70%);
    opacity: 0;
    transition: opacity var(--transition-medium);
}

.glow-btn:hover::before {
    opacity: 1;
    animation: rotate 3s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* ================================
   Hero Section
   ================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 40px 80px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(ellipse at 20% 80%, rgba(255, 208, 0, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 20%, rgba(147, 51, 234, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 50%, rgba(255, 70, 85, 0.1) 0%, transparent 60%);
}

.hero-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(255, 208, 0, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 208, 0, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
}

.hero-content {
    max-width: var(--container-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-text {
    max-width: 600px;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 208, 0, 0.1);
    border: 1px solid rgba(255, 208, 0, 0.3);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--primary);
    margin-bottom: 30px;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--primary);
    border-radius: 50%;
    animation: badge-pulse 2s ease-in-out infinite;
}

@keyframes badge-pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.2); }
}

.hero-title {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 30px;
}

.title-line {
    display: block;
}

.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 40px;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 60px;
}

.primary-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--gradient-primary);
    color: var(--bg-dark);
    border: none;
    padding: 16px 32px;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-medium);
}

.primary-btn:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-glow);
}

.secondary-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    color: var(--text-primary);
    border: 2px solid rgba(255, 255, 255, 0.2);
    padding: 14px 28px;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all var(--transition-medium);
}

.secondary-btn:hover {
    border-color: var(--primary);
    background: rgba(255, 208, 0, 0.1);
}

.play-icon {
    width: 24px;
    height: 24px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
}

.hero-stats {
    display: flex;
    gap: 50px;
}

.stat {
    text-align: left;
}

.stat-number {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
    display: block;
}

.stat-number::after {
    content: '+';
    color: var(--primary);
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* Hero 3D Area */
.hero-3d {
    position: relative;
    height: 600px;
}

#hero-canvas-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.floating-cards {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.floating-card {
    position: absolute;
    width: 180px;
    height: 250px;
    background: linear-gradient(135deg, rgba(255, 208, 0, 0.2), rgba(255, 70, 85, 0.2));
    border-radius: 15px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    animation: float 6s ease-in-out infinite;
}

.floating-card.card-1 {
    top: 10%;
    right: 20%;
    animation-delay: 0s;
}

.floating-card.card-2 {
    top: 40%;
    right: 5%;
    animation-delay: -2s;
}

.floating-card.card-3 {
    bottom: 10%;
    right: 30%;
    animation-delay: -4s;
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(5deg); }
    50% { transform: translateY(-30px) rotate(-5deg); }
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: var(--text-muted);
    font-size: 0.85rem;
    animation: bounce 2s ease-in-out infinite;
}

.mouse {
    width: 26px;
    height: 40px;
    border: 2px solid var(--text-muted);
    border-radius: 15px;
    position: relative;
}

.wheel {
    width: 4px;
    height: 8px;
    background: var(--primary);
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll 2s ease-in-out infinite;
}

@keyframes scroll {
    0%, 100% { opacity: 1; transform: translateX(-50%) translateY(0); }
    50% { opacity: 0.5; transform: translateX(-50%) translateY(10px); }
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(-10px); }
}

/* Animation classes */
.animate-in {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards;
}

.animate-in:nth-child(1) { animation-delay: 0.1s; }
.animate-in:nth-child(2) { animation-delay: 0.2s; }
.animate-in:nth-child(3) { animation-delay: 0.3s; }
.animate-in:nth-child(4) { animation-delay: 0.4s; }
.animate-in:nth-child(5) { animation-delay: 0.5s; }

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ================================
   Section Styles
   ================================ */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 40px;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-tag {
    display: inline-block;
    background: rgba(255, 208, 0, 0.1);
    color: var(--primary);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.section-title {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 700;
    margin-bottom: 20px;
}

.section-description {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* ================================
   Products Section
   ================================ */
.products-section {
    padding: var(--section-padding) 0;
    position: relative;
}

.section-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1;
}

.glow-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    animation: orb-float 8s ease-in-out infinite;
}

.orb-1 {
    width: 400px;
    height: 400px;
    background: rgba(255, 208, 0, 0.15);
    top: 20%;
    left: -10%;
}

.orb-2 {
    width: 300px;
    height: 300px;
    background: rgba(147, 51, 234, 0.15);
    bottom: 20%;
    right: -5%;
    animation-delay: -4s;
}

@keyframes orb-float {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(50px, 30px); }
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
}

/* Product Card */
.product-card {
    background: var(--bg-card);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all var(--transition-medium);
    cursor: pointer;
    position: relative;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 208, 0, 0.1) 0%, transparent 50%);
    opacity: 0;
    transition: opacity var(--transition-medium);
}

.product-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 208, 0, 0.3);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4), 0 0 30px rgba(255, 208, 0, 0.1);
}

.product-card:hover::before {
    opacity: 1;
}

.product-image {
    height: 280px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(30, 30, 50, 0.8), rgba(20, 20, 35, 0.9));
}

/* Real Product Images */
.product-img {
    width: 180px;
    height: 250px;
    object-fit: contain;
    border-radius: 10px;
    transition: transform 0.6s ease;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.4));
}

.product-card:hover .product-img {
    transform: scale(1.05) rotateY(5deg);
}

.real-image {
    position: relative;
}

.real-image .card-holo-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.real-image .card-shine {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.product-image-inner {
    width: 200px;
    height: 280px;
    position: relative;
    transform-style: preserve-3d;
    transition: transform 0.6s ease;
}

.product-card:hover .product-image-inner {
    transform: rotateY(15deg) rotateX(-5deg);
}

.card-visual {
    width: 100%;
    height: 100%;
    border-radius: 12px;
    position: relative;
    overflow: hidden;
}

.card-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transition: background var(--transition-medium);
}

.card-bg.charizard {
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 50%, #ff4500 100%);
}

.card-bg.pikachu {
    background: linear-gradient(135deg, #ffd000 0%, #ffea00 50%, #ff9500 100%);
}

.card-bg.mewtwo {
    background: linear-gradient(135deg, #9333ea 0%, #a855f7 50%, #7c3aed 100%);
}

.card-bg.umbreon {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f0f23 100%);
}

.card-bg.rayquaza {
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 50%, #15803d 100%);
}

.card-bg.gengar {
    background: linear-gradient(135deg, #7c3aed 0%, #6d28d9 50%, #5b21b6 100%);
}

.card-holo-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-holo);
    background-size: 200% 200%;
    opacity: 0;
    mix-blend-mode: overlay;
    animation: holo-shift 3s linear infinite;
    transition: opacity var(--transition-medium);
}

.product-card:hover .card-holo-overlay {
    opacity: 0.6;
}

@keyframes holo-shift {
    0% { background-position: 0% 0%; }
    50% { background-position: 100% 100%; }
    100% { background-position: 0% 0%; }
}

.card-shine {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent 30%,
        rgba(255, 255, 255, 0.3) 50%,
        transparent 70%
    );
    transform: translateX(-100%);
    transition: transform 0.8s ease;
}

.product-card:hover .card-shine {
    transform: translateX(100%);
}

.card-pokemon-silhouette {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 8rem;
    opacity: 0.2;
    filter: drop-shadow(0 0 30px currentColor);
}

.product-content {
    padding: 25px;
    position: relative;
    z-index: 1;
}

.product-rarity {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 4px 12px;
    border-radius: 50px;
    margin-bottom: 12px;
}

.product-rarity.secret-rare {
    background: linear-gradient(90deg, #ffd000, #ff6b00);
    color: var(--bg-dark);
}

.product-rarity.rainbow-rare {
    background: var(--gradient-rainbow);
    color: white;
    background-size: 200% 100%;
    animation: rainbow-shift 3s linear infinite;
}

.product-rarity.full-art {
    background: linear-gradient(90deg, #9333ea, #ec4899);
    color: white;
}

.product-rarity.alternate-art {
    background: linear-gradient(90deg, #00d4ff, #00ff88);
    color: var(--bg-dark);
}

.product-rarity.alt-art-secret {
    background: linear-gradient(90deg, #22c55e, #ffd000);
    color: var(--bg-dark);
}

@keyframes rainbow-shift {
    0% { background-position: 0% 50%; }
    100% { background-position: 200% 50%; }
}

.product-name {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.product-set {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.product-delivery {
    font-size: 0.8rem;
    color: var(--accent-cyan);
    margin-bottom: 8px;
}

.product-stock, .booster-stock {
    font-size: 0.85rem;
    color: var(--accent-green);
    font-weight: 600;
    margin-bottom: 15px;
}

.product-stock.low-stock, .booster-stock.low-stock {
    color: var(--accent-red);
    animation: pulse-stock 1.5s ease-in-out infinite;
}

@keyframes pulse-stock {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.6; }
}

.product-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.product-price {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
}

.add-to-cart {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-medium);
}

.add-to-cart:hover {
    background: var(--primary);
    color: var(--bg-dark);
    transform: scale(1.1);
}

/* ================================
   3D Showcase Section
   ================================ */
.showcase-section {
    padding: var(--section-padding) 0;
    background: linear-gradient(180deg, var(--bg-dark) 0%, var(--bg-darker) 100%);
}

.showcase-container {
    text-align: center;
}

#showcase-canvas {
    width: 100%;
    height: 500px;
    margin-bottom: 40px;
    border-radius: 20px;
    background: radial-gradient(ellipse at center, rgba(255, 208, 0, 0.05) 0%, transparent 70%);
}

.showcase-controls {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.showcase-btn {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-secondary);
    padding: 12px 24px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all var(--transition-medium);
}

.showcase-btn:hover, .showcase-btn.active {
    background: var(--gradient-primary);
    border-color: transparent;
    color: var(--bg-dark);
}

.card-info {
    max-width: 400px;
    margin: 0 auto;
}

.card-info h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.card-details {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.card-details span {
    background: rgba(255, 255, 255, 0.05);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.9rem;
}

.card-price {
    background: var(--gradient-primary) !important;
    color: var(--bg-dark) !important;
    font-weight: 600;
}

/* ================================
   Boosters Section
   ================================ */
.boosters-section {
    padding: var(--section-padding) 0;
    position: relative;
}

.boosters-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.booster-card {
    background: var(--bg-card);
    border-radius: 20px;
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all var(--transition-medium);
    position: relative;
    overflow: hidden;
}

.booster-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform var(--transition-medium);
}

.booster-card:hover::before {
    transform: scaleX(1);
}

.booster-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-card);
}

.booster-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary), var(--accent-red));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    margin-bottom: 20px;
}

/* Real Booster Images */
.booster-image {
    width: 100%;
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    border-radius: 12px;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(30, 30, 50, 0.5), rgba(20, 20, 35, 0.6));
}

.booster-img {
    max-width: 100%;
    max-height: 170px;
    object-fit: contain;
    border-radius: 8px;
    transition: transform 0.3s ease;
    filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.3));
}

.booster-card:hover .booster-img {
    transform: scale(1.05);
}

.booster-type {
    display: inline-block;
    background: rgba(255, 208, 0, 0.1);
    color: var(--primary);
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.booster-name {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.booster-cards {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 8px;
}

.booster-delivery {
    font-size: 0.8rem;
    color: var(--accent-cyan);
    margin-bottom: 15px;
}

.negotiable-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, var(--accent-green), var(--accent-cyan));
    color: var(--bg-dark);
    padding: 6px 12px;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    animation: pulse-badge 2s ease-in-out infinite;
}

@keyframes pulse-badge {
    0%, 100% { box-shadow: 0 0 10px rgba(0, 255, 136, 0.5); }
    50% { box-shadow: 0 0 20px rgba(0, 255, 136, 0.8); }
}

.booster-card.negotiable {
    border-color: rgba(0, 255, 136, 0.3);
}

.booster-card.negotiable:hover {
    border-color: rgba(0, 255, 136, 0.6);
    box-shadow: var(--shadow-card), 0 0 30px rgba(0, 255, 136, 0.2);
}

.booster-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.booster-price {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
}

/* ================================
   Holographic Card Section
   ================================ */
.holo-section {
    padding: var(--section-padding) 0;
    background: linear-gradient(180deg, var(--bg-darker) 0%, var(--bg-dark) 100%);
}

.holo-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.holo-card-container {
    display: flex;
    justify-content: center;
    perspective: 1000px;
}

.holo-card {
    width: 300px;
    height: 420px;
    position: relative;
    transform-style: preserve-3d;
    transition: transform 0.1s ease-out;
    cursor: pointer;
}

.holo-card-inner {
    width: 100%;
    height: 100%;
    border-radius: 20px;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    position: relative;
    overflow: hidden;
    border: 3px solid rgba(255, 208, 0, 0.3);
    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.5),
        0 0 30px rgba(255, 208, 0, 0.2);
}

.holo-shine {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        transparent 0%,
        rgba(255, 255, 255, 0.1) 45%,
        rgba(255, 255, 255, 0.3) 50%,
        rgba(255, 255, 255, 0.1) 55%,
        transparent 100%
    );
    background-size: 200% 200%;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.holo-card:hover .holo-shine {
    opacity: 1;
}

.holo-content {
    position: relative;
    z-index: 1;
    padding: 20px;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.holo-pokemon {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* CSS Pikachu Art */
.pikachu-art {
    position: relative;
    width: 150px;
    height: 150px;
}

.pika-body {
    position: absolute;
    width: 100px;
    height: 80px;
    background: #ffd000;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    box-shadow: inset -10px -10px 20px rgba(0, 0, 0, 0.1);
}

.pika-ear {
    position: absolute;
    width: 20px;
    height: 50px;
    background: #ffd000;
    border-radius: 50% 50% 0 0;
    top: 0;
}

.pika-ear.left {
    left: 25px;
    transform: rotate(-30deg);
}

.pika-ear.left::after {
    content: '';
    position: absolute;
    top: 0;
    width: 100%;
    height: 15px;
    background: #333;
    border-radius: 50% 50% 0 0;
}

.pika-ear.right {
    right: 25px;
    transform: rotate(30deg);
}

.pika-ear.right::after {
    content: '';
    position: absolute;
    top: 0;
    width: 100%;
    height: 15px;
    background: #333;
    border-radius: 50% 50% 0 0;
}

.pika-cheek {
    position: absolute;
    width: 25px;
    height: 25px;
    background: #ff6b6b;
    border-radius: 50%;
    top: 60%;
}

.pika-cheek.left { left: 20px; }
.pika-cheek.right { right: 20px; }

.pika-eye {
    position: absolute;
    width: 12px;
    height: 16px;
    background: #333;
    border-radius: 50%;
    top: 45%;
}

.pika-eye::after {
    content: '';
    position: absolute;
    width: 5px;
    height: 5px;
    background: white;
    border-radius: 50%;
    top: 3px;
    left: 2px;
}

.pika-eye.left { left: 40px; }
.pika-eye.right { right: 40px; }

.pika-tail {
    position: absolute;
    width: 40px;
    height: 60px;
    background: #ffd000;
    right: -20px;
    top: 30%;
    clip-path: polygon(0 100%, 50% 0, 100% 0, 100% 30%, 50% 30%, 30% 100%);
}

.lightning-bolt {
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 15px solid transparent;
    border-right: 15px solid transparent;
    border-top: 30px solid var(--primary);
    filter: drop-shadow(0 0 10px var(--primary));
    animation: lightning-glow 1.5s ease-in-out infinite;
}

@keyframes lightning-glow {
    0%, 100% { filter: drop-shadow(0 0 10px var(--primary)); }
    50% { filter: drop-shadow(0 0 20px var(--primary)) drop-shadow(0 0 30px var(--primary)); }
}

.holo-details {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.holo-name {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
}

.holo-hp {
    font-family: 'Orbitron', sans-serif;
    font-size: 1rem;
    color: var(--accent-red);
    font-weight: 700;
}

.holo-type {
    text-align: center;
}

.type-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
}

.type-badge.electric {
    background: rgba(255, 208, 0, 0.2);
    color: var(--primary);
    border: 1px solid var(--primary);
}

.holo-sparkles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.8) 1px, transparent 1px),
        radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.8) 1px, transparent 1px),
        radial-gradient(circle at 40% 70%, rgba(255, 255, 255, 0.8) 1px, transparent 1px),
        radial-gradient(circle at 70% 60%, rgba(255, 255, 255, 0.8) 1px, transparent 1px),
        radial-gradient(circle at 10% 80%, rgba(255, 255, 255, 0.8) 1px, transparent 1px),
        radial-gradient(circle at 90% 90%, rgba(255, 255, 255, 0.8) 1px, transparent 1px);
    animation: sparkle 3s ease-in-out infinite;
    pointer-events: none;
}

@keyframes sparkle {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.8; }
}

.holo-info h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 2rem;
    margin-bottom: 20px;
}

.holo-info p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 30px;
}

.holo-features {
    list-style: none;
}

.holo-features li {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 1rem;
}

.feature-icon {
    font-size: 1.2rem;
}

/* ================================
   About Section
   ================================ */
.about-section {
    padding: var(--section-padding) 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.feature-card {
    background: var(--bg-card);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all var(--transition-medium);
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 208, 0, 0.2);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.feature-icon-wrap {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, rgba(255, 208, 0, 0.1), rgba(255, 70, 85, 0.1));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon {
    font-size: 2.5rem;
}

.feature-card h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.feature-card p {
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ================================
   Newsletter Section
   ================================ */
.newsletter-section {
    padding: var(--section-padding) 0;
}

.newsletter-card {
    background: linear-gradient(135deg, rgba(255, 208, 0, 0.1) 0%, rgba(147, 51, 234, 0.1) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    padding: 80px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.newsletter-content h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.newsletter-content p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.newsletter-form {
    display: flex;
    gap: 15px;
}

.newsletter-form input {
    flex: 1;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 16px 24px;
    border-radius: 12px;
    color: var(--text-primary);
    font-size: 1rem;
    outline: none;
    transition: border-color var(--transition-medium);
}

.newsletter-form input:focus {
    border-color: var(--primary);
}

.newsletter-form input::placeholder {
    color: var(--text-muted);
}

.newsletter-note {
    display: block;
    margin-top: 15px;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.newsletter-decoration {
    position: relative;
    height: 300px;
}

.deco-card {
    position: absolute;
    width: 150px;
    height: 210px;
    background: linear-gradient(135deg, var(--primary), var(--accent-red));
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.deco-1 {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-15deg);
    z-index: 3;
}

.deco-2 {
    top: 40%;
    left: 40%;
    transform: translate(-50%, -50%) rotate(5deg);
    background: linear-gradient(135deg, var(--secondary), var(--accent-cyan));
    z-index: 2;
}

.deco-3 {
    top: 60%;
    left: 60%;
    transform: translate(-50%, -50%) rotate(-5deg);
    background: linear-gradient(135deg, var(--accent-purple), var(--accent-red));
    z-index: 1;
}

/* ================================
   Footer
   ================================ */
.footer {
    background: var(--bg-darker);
    padding: 80px 0 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-simple {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.footer-brand p {
    color: var(--text-secondary);
    margin: 20px 0;
    line-height: 1.7;
}

.footer-contact h4 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1rem;
    margin-bottom: 15px;
    color: var(--text-primary);
}

.contact-email {
    color: var(--primary);
    text-decoration: none;
    font-size: 1.1rem;
    transition: color var(--transition-fast);
}

.contact-email:hover {
    color: var(--accent-cyan);
}

.footer-nav {
    display: flex;
    gap: 25px;
}

.footer-nav a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.footer-nav a:hover {
    color: var(--primary);
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.footer-brand .social-links {
    justify-content: flex-start;
}

.social-link {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    transition: all var(--transition-medium);
}

.social-link:hover {
    background: var(--primary);
    color: var(--bg-dark);
    transform: translateY(-3px);
}

.footer-links h4 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1rem;
    margin-bottom: 25px;
    color: var(--text-primary);
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.footer-links a:hover {
    color: var(--primary);
}

.footer-bottom {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-bottom p {
    color: var(--text-muted);
    font-size: 0.9rem;
    text-align: center;
}

.footer-legal {
    display: flex;
    gap: 30px;
}

.footer-legal a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color var(--transition-fast);
}

.footer-legal a:hover {
    color: var(--primary);
}

/* ================================
   Responsive Design
   ================================ */
@media (max-width: 1200px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-text {
        max-width: 800px;
        margin: 0 auto;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
    }

    .hero-3d {
        display: none;
    }

    .holo-showcase {
        grid-template-columns: 1fr;
    }

    .holo-info {
        text-align: center;
    }
}

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

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .newsletter-card {
        grid-template-columns: 1fr;
        padding: 50px;
    }

    .newsletter-decoration {
        display: none;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 80px;
    }

    .hero {
        padding: 100px 20px 60px;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .hero-stats {
        flex-direction: column;
        gap: 30px;
    }

    .products-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-simple {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-brand .social-links {
        justify-content: center;
    }

    .footer-nav {
        flex-wrap: wrap;
        justify-content: center;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .newsletter-form {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 20px;
    }

    .nav-container {
        padding: 0 20px;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .holo-card {
        width: 250px;
        height: 350px;
    }
}

/* ================================
   Cart & Checkout Modals
   ================================ */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.modal.active {
    opacity: 1;
    visibility: visible;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
}

.modal-content {
    position: relative;
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px;
    max-width: 600px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.modal.active .modal-content {
    transform: translateY(0);
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    color: var(--text-secondary);
    font-size: 2rem;
    cursor: pointer;
    transition: color 0.2s ease;
}

.modal-close:hover {
    color: var(--primary);
}

.modal-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.8rem;
    margin-bottom: 30px;
    text-align: center;
}

/* Cart Items */
.empty-cart {
    text-align: center;
    color: var(--text-muted);
    padding: 40px;
}

.cart-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    margin-bottom: 10px;
}

.cart-item-info {
    flex: 1;
}

.cart-item-info h4 {
    font-size: 1rem;
    margin-bottom: 4px;
}

.cart-item-type {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 2px;
}

.cart-item-price {
    font-size: 0.85rem;
    color: var(--accent-cyan);
}

.cart-item-controls {
    display: flex;
    align-items: center;
    gap: 10px;
}

.cart-item-controls button {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 1px solid var(--primary);
    background: transparent;
    color: var(--primary);
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

.cart-item-controls button:hover {
    background: var(--primary);
    color: var(--bg-dark);
}

.cart-item-controls span {
    font-weight: 600;
    min-width: 30px;
    text-align: center;
}

.cart-item-total {
    font-family: 'Orbitron', sans-serif;
    font-weight: 600;
    color: var(--primary);
    min-width: 80px;
    text-align: right;
}

.cart-item-remove {
    background: none;
    border: none;
    color: var(--accent-red);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 5px;
    opacity: 0.6;
    transition: opacity 0.2s ease;
}

.cart-item-remove:hover {
    opacity: 1;
}

/* Cart Summary */
#cart-summary {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.cart-summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    font-size: 1rem;
}

.cart-summary-note {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-align: center;
    margin-top: 10px;
}

.checkout-btn {
    width: 100%;
    margin-top: 20px;
}

/* Checkout Modal */
.checkout-content {
    max-width: 700px;
}

.checkout-steps {
    margin-bottom: 30px;
}

.checkout-step {
    display: flex;
    gap: 20px;
    padding: 25px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.step-number {
    width: 40px;
    height: 40px;
    background: var(--gradient-primary);
    color: var(--bg-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    flex-shrink: 0;
}

.step-content {
    flex: 1;
}

.step-content h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.1rem;
    margin-bottom: 15px;
}

/* Address Form */
#address-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

#address-form input,
#address-form textarea {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 14px 18px;
    border-radius: 10px;
    color: var(--text-primary);
    font-size: 1rem;
    font-family: inherit;
    outline: none;
    transition: border-color 0.2s ease;
    width: 100%;
    resize: vertical;
}

#address-form input:focus,
#address-form textarea:focus {
    border-color: var(--primary);
}

#address-form input::placeholder,
#address-form textarea::placeholder {
    color: var(--text-muted);
}

/* Apple Cash Box */
.apple-cash-box {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.4), rgba(50, 50, 50, 0.4));
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 30px;
    text-align: center;
    margin-bottom: 20px;
}

.apple-logo {
    font-size: 3rem;
    margin-bottom: 15px;
}

.apple-cash-box p {
    margin-bottom: 10px;
}

.phone-number {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary);
    background: rgba(255, 208, 0, 0.1);
    padding: 15px 25px;
    border-radius: 10px;
    margin: 15px 0;
    letter-spacing: 2px;
}

.payment-note {
    font-size: 0.85rem;
    color: var(--text-muted);
}

#total-amount {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    color: var(--accent-green);
}

/* Payment Breakdown */
.payment-breakdown {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    padding: 20px;
}

.breakdown-row {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    font-size: 0.95rem;
}

.breakdown-row.total {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 10px;
    padding-top: 15px;
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--primary);
}

/* Order Summary */
.order-items {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    padding: 15px;
    margin-top: 15px;
}

.order-item {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    font-size: 0.9rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.order-item:last-child {
    border-bottom: none;
}

.submit-order-btn {
    width: 100%;
    padding: 18px;
    font-size: 1.1rem;
}

.stripe-icon {
    margin-right: 8px;
}

.secure-note {
    text-align: center;
    margin-top: 15px;
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* Confirmation Modal */
.confirmation-content {
    text-align: center;
    max-width: 500px;
}

.confirmation-icon {
    width: 80px;
    height: 80px;
    background: var(--accent-green);
    color: var(--bg-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    margin: 0 auto 25px;
    animation: pop-in 0.5s ease;
}

@keyframes pop-in {
    0% { transform: scale(0); }
    50% { transform: scale(1.2); }
    100% { transform: scale(1); }
}

.confirmation-content h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 2rem;
    margin-bottom: 15px;
    color: var(--accent-green);
}

.confirmation-details {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    padding: 20px;
    margin: 20px 0;
    text-align: left;
}

.confirmation-note {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 25px;
}

/* Responsive for modals */
@media (max-width: 768px) {
    .modal-content {
        padding: 25px;
        margin: 10px;
    }

    .address-row {
        grid-template-columns: 1fr;
    }

    .phone-number {
        font-size: 1.3rem;
    }

    .checkout-step {
        flex-direction: column;
        gap: 15px;
    }
}

/* ================================
   Trailer Modal
   ================================ */
.trailer-content {
    max-width: 600px;
    text-align: center;
}

.video-placeholder {
    padding: 40px 20px;
}

.pika-animation {
    position: relative;
    height: 200px;
    margin-bottom: 30px;
}

.pika-bounce {
    animation: pika-jump 1s ease-in-out infinite;
}

@keyframes pika-jump {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

/* Big Pikachu for trailer */
.big-pika {
    position: relative;
    width: 120px;
    height: 120px;
    margin: 0 auto;
}

.big-pika-body {
    position: absolute;
    width: 80px;
    height: 65px;
    background: #ffd000;
    border-radius: 50%;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    box-shadow: inset -8px -8px 20px rgba(0,0,0,0.1);
}

.big-pika-ear {
    position: absolute;
    width: 20px;
    height: 50px;
    background: #ffd000;
    border-radius: 50% 50% 0 0;
    top: 0;
}

.big-pika-ear.left {
    left: 12px;
    transform: rotate(-25deg);
}

.big-pika-ear.left::after {
    content: '';
    position: absolute;
    top: 0;
    width: 100%;
    height: 15px;
    background: #333;
    border-radius: 50% 50% 0 0;
}

.big-pika-ear.right {
    right: 12px;
    transform: rotate(25deg);
}

.big-pika-ear.right::after {
    content: '';
    position: absolute;
    top: 0;
    width: 100%;
    height: 15px;
    background: #333;
    border-radius: 50% 50% 0 0;
}

.big-pika-cheek {
    position: absolute;
    width: 22px;
    height: 22px;
    background: #ff6b6b;
    border-radius: 50%;
    bottom: 18px;
}

.big-pika-cheek.left { left: 12px; }
.big-pika-cheek.right { right: 12px; }

.big-pika-eye {
    position: absolute;
    width: 12px;
    height: 16px;
    background: #333;
    border-radius: 50%;
    bottom: 35px;
}

.big-pika-eye::after {
    content: '';
    position: absolute;
    width: 5px;
    height: 5px;
    background: white;
    border-radius: 50%;
    top: 3px;
    left: 2px;
}

.big-pika-eye.left { left: 30px; }
.big-pika-eye.right { right: 30px; }

/* Big Pizza Hat */
.big-pizza-hat {
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.big-hat-top {
    width: 55px;
    height: 35px;
    background: linear-gradient(135deg, #d4232a, #8b0000);
    border-radius: 50% 50% 0 0;
    position: relative;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

.big-hat-top::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 35px;
    height: 15px;
    background: #ffd000;
    border-radius: 3px;
}

.big-hat-brim {
    width: 75px;
    height: 10px;
    background: linear-gradient(135deg, #d4232a, #8b0000);
    border-radius: 3px;
    margin-left: -10px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

/* Sparks */
.spark {
    position: absolute;
    font-size: 2rem;
    color: var(--primary);
    animation: spark-float 1.5s ease-in-out infinite;
    text-shadow: 0 0 10px var(--primary);
}

.spark-1 {
    top: 20px;
    left: 20%;
    animation-delay: 0s;
}

.spark-2 {
    top: 40px;
    right: 20%;
    animation-delay: 0.5s;
}

.spark-3 {
    bottom: 40px;
    left: 30%;
    animation-delay: 1s;
}

@keyframes spark-float {
    0%, 100% {
        transform: translateY(0) scale(1);
        opacity: 1;
    }
    50% {
        transform: translateY(-10px) scale(1.2);
        opacity: 0.7;
    }
}

.video-placeholder h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 2rem;
    margin-bottom: 10px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.video-placeholder p {
    color: var(--text-secondary);
    margin-bottom: 30px;
}

.promo-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-bottom: 30px;
}

.promo-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 10px;
}

.promo-icon {
    font-size: 1.5rem;
}

.promo-item span:last-child {
    font-weight: 500;
}

/* ================================
   Christmas Theme
   ================================ */

/* Snowflakes */
.snowflakes {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9999;
    overflow: hidden;
}

.snowflake {
    position: absolute;
    top: -50px;
    color: #fff;
    font-size: 1.5rem;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
    animation: snowfall linear infinite;
    opacity: 0.8;
}

.snowflake:nth-child(1) { left: 5%; animation-duration: 10s; animation-delay: 0s; font-size: 1.2rem; }
.snowflake:nth-child(2) { left: 15%; animation-duration: 12s; animation-delay: 1s; font-size: 1.8rem; }
.snowflake:nth-child(3) { left: 25%; animation-duration: 8s; animation-delay: 2s; font-size: 1rem; }
.snowflake:nth-child(4) { left: 35%; animation-duration: 14s; animation-delay: 0.5s; font-size: 2rem; }
.snowflake:nth-child(5) { left: 45%; animation-duration: 9s; animation-delay: 3s; font-size: 1.4rem; }
.snowflake:nth-child(6) { left: 55%; animation-duration: 11s; animation-delay: 1.5s; font-size: 1.6rem; }
.snowflake:nth-child(7) { left: 65%; animation-duration: 13s; animation-delay: 2.5s; font-size: 1.1rem; }
.snowflake:nth-child(8) { left: 75%; animation-duration: 10s; animation-delay: 4s; font-size: 1.9rem; }
.snowflake:nth-child(9) { left: 85%; animation-duration: 15s; animation-delay: 0.8s; font-size: 1.3rem; }
.snowflake:nth-child(10) { left: 92%; animation-duration: 9s; animation-delay: 2.2s; font-size: 1.7rem; }
.snowflake:nth-child(11) { left: 10%; animation-duration: 11s; animation-delay: 3.5s; font-size: 1.5rem; }
.snowflake:nth-child(12) { left: 50%; animation-duration: 12s; animation-delay: 4.5s; font-size: 2.2rem; }

@keyframes snowfall {
    0% {
        transform: translateY(-50px) rotate(0deg);
        opacity: 1;
    }
    100% {
        transform: translateY(100vh) rotate(360deg);
        opacity: 0.3;
    }
}

/* Christmas Lights */
.christmas-lights {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 8px;
    display: flex;
    justify-content: space-around;
    z-index: 1001;
    overflow: hidden;
}

.christmas-lights .light {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    position: relative;
    top: -2px;
    animation: twinkle 1s ease-in-out infinite;
}

.christmas-lights .light::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 10px;
    background: #333;
}

.christmas-lights .light.red {
    background: radial-gradient(circle at 30% 30%, #ff6b6b, #cc0000);
    box-shadow: 0 0 15px #ff0000, 0 0 30px #ff0000;
    animation-delay: 0s;
}

.christmas-lights .light.green {
    background: radial-gradient(circle at 30% 30%, #6bff6b, #00cc00);
    box-shadow: 0 0 15px #00ff00, 0 0 30px #00ff00;
    animation-delay: 0.2s;
}

.christmas-lights .light.gold {
    background: radial-gradient(circle at 30% 30%, #ffd700, #cc9900);
    box-shadow: 0 0 15px #ffd700, 0 0 30px #ffd700;
    animation-delay: 0.4s;
}

.christmas-lights .light.blue {
    background: radial-gradient(circle at 30% 30%, #6bb6ff, #0066cc);
    box-shadow: 0 0 15px #0099ff, 0 0 30px #0099ff;
    animation-delay: 0.6s;
}

@keyframes twinkle {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(0.9); }
}

/* Christmas Navbar Styling */
.christmas-navbar {
    border-bottom: 3px solid transparent;
    background-image: linear-gradient(var(--bg-dark), var(--bg-dark)),
                      linear-gradient(90deg, #cc0000, #00cc00, #ffd700, #cc0000);
    background-origin: border-box;
    background-clip: padding-box, border-box;
}

.christmas-navbar.scrolled {
    background: rgba(10, 10, 15, 0.95);
    border-bottom: 3px solid;
    border-image: linear-gradient(90deg, #cc0000, #00cc00, #ffd700, #cc0000) 1;
}

/* Christmas Badge */
.christmas-badge {
    background: linear-gradient(135deg, rgba(204, 0, 0, 0.2), rgba(0, 128, 0, 0.2)) !important;
    border: 1px solid rgba(255, 215, 0, 0.5) !important;
    color: #ffd700 !important;
}

.christmas-badge .badge-dot {
    background: #ff0000 !important;
    box-shadow: 0 0 10px #ff0000;
}

/* Christmas Gradient Text */
.christmas-gradient {
    background: linear-gradient(135deg, #ff0000 0%, #00cc00 50%, #ffd700 100%) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
    animation: christmas-shimmer 3s ease-in-out infinite;
    background-size: 200% 200%;
}

@keyframes christmas-shimmer {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Christmas Section Tags */
.christmas-tag {
    background: linear-gradient(135deg, rgba(204, 0, 0, 0.2), rgba(0, 128, 0, 0.2)) !important;
    color: #ffd700 !important;
    border: 1px solid rgba(255, 215, 0, 0.3);
}

/* Christmas Product Cards */
.product-card {
    border: 1px solid rgba(204, 0, 0, 0.2);
}

.product-card::after {
    content: '🎁';
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 1.5rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-card:hover::after {
    opacity: 1;
}

.product-card:hover {
    border-color: rgba(0, 204, 0, 0.5);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4),
                0 0 30px rgba(204, 0, 0, 0.2),
                0 0 30px rgba(0, 204, 0, 0.2);
}

/* Christmas Booster Cards */
.booster-card {
    border: 1px solid rgba(0, 128, 0, 0.2);
}

.booster-card::before {
    background: linear-gradient(90deg, #cc0000, #00cc00, #ffd700) !important;
}

.booster-card:hover {
    border-color: rgba(255, 215, 0, 0.4);
}

/* Christmas Feature Cards */
.feature-card {
    border: 1px solid rgba(255, 215, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #cc0000, #00cc00, #ffd700);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-card:hover {
    border-color: rgba(204, 0, 0, 0.3);
}

/* Christmas Footer */
.christmas-footer {
    position: relative;
    overflow: hidden;
}

.christmas-footer-decor {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-around;
    font-size: 1.5rem;
    padding: 10px 0;
    background: linear-gradient(180deg, rgba(204, 0, 0, 0.1), transparent);
    animation: decor-float 3s ease-in-out infinite;
}

@keyframes decor-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

/* Christmas Hero Background */
.hero {
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(ellipse at 20% 80%, rgba(204, 0, 0, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 20%, rgba(0, 128, 0, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 50%, rgba(255, 215, 0, 0.05) 0%, transparent 60%);
    z-index: 0;
    pointer-events: none;
}

/* Christmas Glow Orbs */
.orb-1 {
    background: rgba(204, 0, 0, 0.15) !important;
}

.orb-2 {
    background: rgba(0, 128, 0, 0.15) !important;
}

/* Christmas Primary Button */
.primary-btn {
    background: linear-gradient(135deg, #cc0000 0%, #00cc00 50%, #ffd700 100%) !important;
    background-size: 200% 200%;
    animation: christmas-btn 3s ease infinite;
}

@keyframes christmas-btn {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.primary-btn:hover {
    box-shadow: 0 0 30px rgba(204, 0, 0, 0.4), 0 0 30px rgba(0, 204, 0, 0.4);
}

/* Christmas CTA Button */
.cta-btn {
    background: linear-gradient(135deg, #cc0000, #ffd700) !important;
}

/* Christmas Add to Cart */
.add-to-cart {
    border-color: #00cc00 !important;
    color: #00cc00 !important;
}

.add-to-cart:hover {
    background: #00cc00 !important;
    color: var(--bg-dark) !important;
}

/* Christmas Cart Count */
.cart-count {
    background: #cc0000 !important;
    box-shadow: 0 0 10px rgba(204, 0, 0, 0.5);
}

/* Christmas Scrollbar */
::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #cc0000, #00cc00, #ffd700) !important;
}

/* Christmas Loader */
.pokeball-top {
    background: #cc0000 !important;
}

.loader-progress {
    background: linear-gradient(90deg, #cc0000, #00cc00, #ffd700) !important;
}

.loader-text {
    color: #ffd700 !important;
}

/* Christmas Modal Styling */
.modal-content {
    border: 2px solid rgba(204, 0, 0, 0.3);
}

.step-number {
    background: linear-gradient(135deg, #cc0000, #00cc00) !important;
}

/* Festive Price Colors */
.product-price, .booster-price {
    color: #00cc00 !important;
    text-shadow: 0 0 10px rgba(0, 204, 0, 0.3);
}

/* Christmas Navigation Links */
.nav-link:hover, .nav-link.active {
    color: #ffd700 !important;
}

.nav-link::after {
    background: linear-gradient(90deg, #cc0000, #00cc00, #ffd700) !important;
}

/* Christmas Sale Prices */
.price-container {
    display: flex;
    flex-direction: column;
    gap: 2px;
    position: relative;
}

.original-price {
    font-size: 0.9rem;
    color: #888;
    text-decoration: line-through;
}

.sale-price {
    color: #00cc00 !important;
    font-size: 1.4rem !important;
    text-shadow: 0 0 10px rgba(0, 204, 0, 0.4);
}

.discount-badge {
    position: absolute;
    top: -10px;
    right: -35px;
    background: linear-gradient(135deg, #cc0000, #8b0000);
    color: #fff;
    font-size: 0.65rem;
    font-weight: 700;
    padding: 2px 6px;
    border-radius: 4px;
    animation: pulse-badge 1.5s ease infinite;
}

/* Cart Discount Row */
.christmas-discount-row {
    color: #00cc00;
}

.discount-amount {
    color: #00cc00 !important;
    font-weight: 600;
}

.total-row {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 10px;
    padding-top: 10px;
}

/* Live Visitor Counter */
.visitor-counter {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background: rgba(20, 20, 30, 0.95);
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 30px;
    padding: 10px 18px;
    display: flex;
    align-items: center;
    gap: 8px;
    z-index: 9999;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
    font-family: 'Inter', sans-serif;
}

.visitor-dot {
    width: 10px;
    height: 10px;
    background: #00cc00;
    border-radius: 50%;
    animation: pulse-dot 2s ease-in-out infinite;
    box-shadow: 0 0 10px #00cc00;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(0.9); }
}

.visitor-count {
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
}

.visitor-label {
    font-size: 0.85rem;
    color: #888;
}

/* Responsive Christmas */
@media (max-width: 768px) {
    .christmas-lights .light {
        width: 8px;
        height: 8px;
    }

    .snowflake {
        font-size: 1rem;
    }

    .christmas-footer-decor {
        font-size: 1rem;
    }

    .discount-badge {
        right: -25px;
        font-size: 0.55rem;
    }

    .visitor-counter {
        bottom: 15px;
        left: 15px;
        padding: 8px 14px;
    }

    .visitor-label {
        display: none;
    }
}

/* ================================
   Reviews Section
   ================================ */
.reviews-section {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--bg-dark) 0%, var(--bg-darker) 100%);
    position: relative;
}

.review-form-container {
    max-width: 600px;
    margin: 0 auto 60px;
    background: var(--bg-card);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(255, 208, 0, 0.2);
    backdrop-filter: blur(10px);
}

.review-form-container h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 25px;
    text-align: center;
}

.review-form .form-group {
    margin-bottom: 20px;
}

.review-form .form-group label {
    display: block;
    margin-bottom: 10px;
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.review-form input[type="text"],
.review-form textarea {
    width: 100%;
    padding: 15px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: var(--text-primary);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.review-form input[type="text"]:focus,
.review-form textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 15px rgba(255, 208, 0, 0.2);
}

.review-form textarea {
    min-height: 100px;
    resize: vertical;
}

/* Star Rating Input */
.star-rating-input {
    display: flex;
    gap: 8px;
    margin-top: 5px;
}

.star-rating-input .star {
    font-size: 2.5rem;
    color: rgba(255, 255, 255, 0.2);
    cursor: pointer;
    transition: all 0.2s ease;
}

.star-rating-input .star:hover,
.star-rating-input .star.hovered {
    color: var(--primary);
    transform: scale(1.2);
    text-shadow: 0 0 20px var(--primary);
}

.star-rating-input .star.active {
    color: var(--primary);
    text-shadow: 0 0 15px var(--primary);
}

.submit-review-btn {
    width: 100%;
    padding: 15px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    background: var(--gradient-primary);
    border: none;
    border-radius: 10px;
    color: var(--bg-dark);
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-review-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 208, 0, 0.4);
}

.submit-review-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

/* Reviews Grid */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.review-card {
    background: var(--bg-card);
    padding: 30px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    animation: fadeInUp 0.5s ease forwards;
}

.review-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 208, 0, 0.3);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 15px;
}

.review-author {
    font-weight: 600;
    color: var(--text-primary);
    font-size: 1.1rem;
}

.review-stars {
    display: flex;
    gap: 3px;
}

.review-stars .star {
    color: var(--primary);
    font-size: 1.2rem;
    text-shadow: 0 0 10px rgba(255, 208, 0, 0.5);
}

.review-stars .star.empty {
    color: rgba(255, 255, 255, 0.2);
    text-shadow: none;
}

.review-comment {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 15px;
}

.review-date {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.no-reviews {
    text-align: center;
    padding: 60px 20px;
    color: var(--text-muted);
}

.no-reviews p {
    font-size: 1.1rem;
    margin-bottom: 10px;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Average Rating Display */
.average-rating {
    text-align: center;
    margin-bottom: 40px;
    padding: 30px;
    background: var(--bg-card);
    border-radius: 15px;
    border: 1px solid rgba(255, 208, 0, 0.2);
}

.average-rating .big-rating {
    font-family: 'Orbitron', sans-serif;
    font-size: 4rem;
    font-weight: 900;
    color: var(--primary);
    text-shadow: 0 0 30px rgba(255, 208, 0, 0.5);
}

.average-rating .rating-stars {
    font-size: 2rem;
    margin: 10px 0;
}

.average-rating .rating-stars .star {
    color: var(--primary);
}

.average-rating .rating-stars .star.empty {
    color: rgba(255, 255, 255, 0.2);
}

.average-rating .total-reviews {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Responsive Reviews */
@media (max-width: 768px) {
    .review-form-container {
        padding: 25px;
        margin: 0 15px 40px;
    }

    .reviews-grid {
        grid-template-columns: 1fr;
        padding: 0 15px;
    }

    .star-rating-input .star {
        font-size: 2rem;
    }

    .average-rating .big-rating {
        font-size: 3rem;
    }
}

/* ================================
   ENHANCED GRAPHICS - Premium Effects
   ================================ */

/* Animated gradient background for hero */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(ellipse at 20% 20%, rgba(255, 208, 0, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 80%, rgba(138, 43, 226, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 50%, rgba(255, 70, 85, 0.08) 0%, transparent 60%);
    animation: heroGlow 8s ease-in-out infinite;
    pointer-events: none;
}

@keyframes heroGlow {
    0%, 100% { opacity: 0.5; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.05); }
}

/* Premium card hover effects */
.product-card::before,
.booster-card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #ffd000, #ff4655, #8a2be2, #00d4ff, #ffd000);
    background-size: 400% 400%;
    border-radius: 22px;
    z-index: -1;
    opacity: 0;
    animation: holoBorder 3s linear infinite;
    transition: opacity 0.3s ease;
}

.product-card:hover::before,
.booster-card:hover::before {
    opacity: 1;
}

@keyframes holoBorder {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Card shine effect on hover */
.product-card::after,
.booster-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.2),
        transparent
    );
    transform: skewX(-25deg);
    transition: left 0.5s ease;
    pointer-events: none;
    border-radius: 20px;
}

.product-card:hover::after,
.booster-card:hover::after {
    left: 150%;
}

/* Enhanced button glow */
.glow-btn {
    position: relative;
    overflow: hidden;
}

.glow-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(255,255,255,0.3) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
    pointer-events: none;
}

.glow-btn:hover::before {
    width: 300px;
    height: 300px;
}

/* Floating animation for feature icons */
.feature-icon-wrap {
    animation: floatIcon 3s ease-in-out infinite;
}

.feature-card:nth-child(1) .feature-icon-wrap { animation-delay: 0s; }
.feature-card:nth-child(2) .feature-icon-wrap { animation-delay: 0.5s; }
.feature-card:nth-child(3) .feature-icon-wrap { animation-delay: 1s; }
.feature-card:nth-child(4) .feature-icon-wrap { animation-delay: 1.5s; }

@keyframes floatIcon {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* Neon text effect for section titles */
.section-title {
    text-shadow: 
        0 0 10px rgba(255, 208, 0, 0.3),
        0 0 20px rgba(255, 208, 0, 0.2),
        0 0 30px rgba(255, 208, 0, 0.1);
}

/* Pulsing badge effect */
.section-tag {
    animation: pulseBadge 2s ease-in-out infinite;
}

@keyframes pulseBadge {
    0%, 100% { box-shadow: 0 0 10px rgba(255, 208, 0, 0.3); }
    50% { box-shadow: 0 0 25px rgba(255, 208, 0, 0.6); }
}

/* Enhanced navbar glass effect */
.navbar {
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
}

/* Animated logo text */
.logo-text {
    background: linear-gradient(90deg, #ffd000, #ff9500, #ffd000);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shimmerLogo 3s linear infinite;
}

@keyframes shimmerLogo {
    0% { background-position: 0% center; }
    100% { background-position: 200% center; }
}

/* Enhanced product image container */
.product-image {
    position: relative;
    overflow: hidden;
}

.product-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, transparent 60%, rgba(0,0,0,0.8) 100%);
    z-index: 1;
    pointer-events: none;
}

/* Glowing price tags */
.price {
    text-shadow: 0 0 15px rgba(0, 255, 136, 0.5);
}

/* Animated scroll indicator */
.scroll-indicator {
    animation: bounceScroll 2s ease-in-out infinite;
}

@keyframes bounceScroll {
    0%, 100% { transform: translateY(0); opacity: 1; }
    50% { transform: translateY(10px); opacity: 0.5; }
}

/* Stats counter glow */
.stat-number {
    text-shadow: 0 0 20px rgba(255, 208, 0, 0.6);
}

/* Enhanced Christmas lights glow */
.christmas-lights .light {
    box-shadow: 
        0 0 10px currentColor,
        0 0 20px currentColor,
        0 0 30px currentColor;
}

/* Snowflake enhanced effect */
.snowflake {
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
}

/* Cart button pulse on items */
.cart-btn:has(.cart-count:not(:empty)) {
    animation: cartPulse 2s ease-in-out infinite;
}

@keyframes cartPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

/* Product card 3D tilt effect */
.product-card,
.booster-card {
    transform-style: preserve-3d;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover,
.booster-card:hover {
    transform: perspective(1000px) rotateX(2deg) rotateY(-2deg) translateY(-10px);
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.5),
        0 0 30px rgba(255, 208, 0, 0.2);
}

/* Footer glow effect */
.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
    animation: footerGlow 3s ease-in-out infinite;
}

@keyframes footerGlow {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}
