@import url('https://fonts.googleapis.com/css2?family=Press+Start+2P&family=Pixelify+Sans:wght@400;500;600;700&family=Orbitron:wght@400;500;600;700;800;900&family=Inter:wght@300;400;500;600;700&family=Rajdhani:wght@300;400;500;600;700&family=Space+Grotesk:wght@300;400;500;600;700&display=swap');

:root {
    --color-bg: #050507;
    --color-bg-deep: #000000;
    --color-panel: #0b0d12;
    --color-panel-soft: #121520;
    
    --neon-cyan: #00d9ff;
    --neon-pink: #ff2bbf;
    --neon-purple: #8b3dff;
    --neon-yellow: #ffd400;
    --neon-orange: #ff6a00;
    --neon-red: #ff3045;
    --acid-green: #b6ff00;
    
    --page-primary: #ff2bbf;
    --page-secondary: #8b3dff;
    --page-accent: #ffd400;
    --page-cyan: #00d9ff;
    
    --font-pixel: 'Press Start 2P', 'Pixelify Sans', cursive;
    --font-tech: 'Orbitron', 'Rajdhani', sans-serif;
    --font-body: 'Inter', 'Space Grotesk', sans-serif;
    
    --transition-smooth: 0.35s cubic-bezier(.2,.8,.2,1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background: var(--color-bg);
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 20%, rgba(255,43,191,.15), transparent 30%),
        radial-gradient(circle at 80% 30%, rgba(0,217,255,.12), transparent 28%),
        radial-gradient(circle at 50% 80%, rgba(139,61,255,.1), transparent 35%);
    pointer-events: none;
    z-index: 0;
}

.scanline {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(
        0deg,
        rgba(0,0,0,0.15),
        rgba(0,0,0,0.15) 1px,
        transparent 1px,
        transparent 2px
    );
    pointer-events: none;
    z-index: 9999;
    opacity: 0.4;
}

.container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 32px;
    position: relative;
    z-index: 1;
}

header {
    position: sticky;
    top: 0;
    backdrop-filter: blur(16px);
    background: rgba(0,0,0,0.72);
    border-bottom: 1px solid rgba(255,255,255,0.12);
    z-index: 1000;
    height: 80px;
    display: flex;
    align-items: center;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo {
    font-family: var(--font-pixel);
    font-size: 24px;
    color: #ffffff;
    text-decoration: none;
    letter-spacing: 2px;
    text-shadow: 0 0 10px rgba(255,43,191,0.5);
    transition: var(--transition-smooth);
}

.logo:hover {
    text-shadow: 0 0 20px rgba(255,43,191,0.8);
}

nav {
    display: flex;
    gap: 40px;
}

nav a {
    font-family: var(--font-tech);
    font-size: 14px;
    font-weight: 600;
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    transition: var(--transition-smooth);
}

nav a::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--neon-pink);
    transition: var(--transition-smooth);
}

nav a:hover {
    color: var(--neon-pink);
}

nav a:hover::after {
    width: 100%;
}

nav a.active {
    color: var(--neon-pink);
}

nav a.active::after {
    width: 100%;
}

.cart-btn {
    position: relative;
    background: transparent;
    border: 2px solid var(--neon-cyan);
    color: var(--neon-cyan);
    padding: 10px 20px;
    font-family: var(--font-tech);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 10px 100%, 0 calc(100% - 10px));
    transition: var(--transition-smooth);
}

.cart-btn:hover {
    background: var(--neon-cyan);
    color: #000;
    box-shadow: 0 0 20px rgba(0,217,255,0.5);
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background: var(--neon-pink);
    color: #000;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
}

.hero {
    min-height: 900px;
    display: flex;
    align-items: center;
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

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

.hero-text {
    position: relative;
    z-index: 2;
}

.product-number {
    font-family: var(--font-pixel);
    font-size: 120px;
    font-weight: 700;
    color: rgba(255,255,255,0.05);
    position: absolute;
    top: -40px;
    left: -20px;
    z-index: -1;
    line-height: 1;
}

.product-label {
    font-family: var(--font-tech);
    font-size: 14px;
    font-weight: 600;
    color: var(--neon-pink);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 20px;
    display: block;
}

.hero-title {
    font-family: var(--font-pixel);
    font-size: 64px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.1;
    margin-bottom: 20px;
    text-transform: uppercase;
    text-shadow: 0 0 30px rgba(255,43,191,0.3);
}

.hero-title span {
    display: block;
    color: var(--neon-pink);
}

.hero-subtitle {
    font-family: var(--font-tech);
    font-size: 24px;
    font-weight: 600;
    color: var(--neon-yellow);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 30px;
}

.hero-description {
    font-size: 18px;
    color: rgba(255,255,255,0.7);
    margin-bottom: 40px;
    line-height: 1.8;
}

.hero-features {
    list-style: none;
    margin-bottom: 50px;
}

.hero-features li {
    font-family: var(--font-tech);
    font-size: 16px;
    color: rgba(255,255,255,0.9);
    margin-bottom: 15px;
    padding-left: 30px;
    position: relative;
}

.hero-features li::before {
    content: '>';
    position: absolute;
    left: 0;
    color: var(--neon-cyan);
    font-weight: 700;
}

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

.btn {
    font-family: var(--font-tech);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 16px 40px;
    border: none;
    cursor: pointer;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--neon-yellow);
    color: #000;
    clip-path: polygon(0 0, calc(100% - 14px) 0, 100% 14px, 100% 100%, 14px 100%, 0 calc(100% - 14px));
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(255,212,0,0.6);
}

.btn-secondary {
    background: transparent;
    color: var(--neon-cyan);
    border: 2px solid var(--neon-cyan);
    clip-path: polygon(0 0, calc(100% - 14px) 0, 100% 14px, 100% 100%, 14px 100%, 0 calc(100% - 14px));
}

.btn-secondary:hover {
    background: var(--neon-cyan);
    color: #000;
    box-shadow: 0 0 30px rgba(0,217,255,0.6);
}

.hero-image {
    position: relative;
    z-index: 1;
}

.product-image-container {
    position: relative;
    width: 100%;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-image {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 0 50px rgba(255,43,191,0.4)) blur(30px) brightness(1.6) contrast(0.5);
    animation: revealImage 1s ease-out forwards, floatProduct 5s ease-in-out infinite 1s;
}

@keyframes revealImage {
    0% {
        filter: drop-shadow(0 0 50px rgba(255,43,191,0.4)) blur(30px) brightness(1.6) contrast(0.5);
    }
    30% {
        filter: drop-shadow(0 0 50px rgba(255,43,191,0.4)) blur(25px) brightness(1.4) contrast(0.6);
    }
    60% {
        filter: drop-shadow(0 0 50px rgba(255,43,191,0.4)) blur(15px) brightness(1.2) contrast(0.8);
    }
    80% {
        filter: drop-shadow(0 0 50px rgba(255,43,191,0.4)) blur(4px) brightness(1.05) contrast(0.95);
    }
    100% {
        filter: drop-shadow(0 0 50px rgba(255,43,191,0.4)) blur(0px) brightness(1) contrast(1);
    }
}

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

.neon-glow {
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255,43,191,0.3), transparent 70%);
    filter: blur(60px);
    animation: neonPulse 2.4s ease-in-out infinite;
}

@keyframes neonPulse {
    0%, 100% {
        opacity: 0.5;
        transform: scale(1);
    }
    50% {
        opacity: 0.8;
        transform: scale(1.1);
    }
}

.features-section {
    padding: 120px 0;
    position: relative;
}

.section-title {
    font-family: var(--font-pixel);
    font-size: 48px;
    font-weight: 700;
    color: #ffffff;
    text-align: center;
    margin-bottom: 80px;
    text-transform: uppercase;
}

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

.feature-card {
    background: var(--color-panel);
    border: 1px solid rgba(255,255,255,0.14);
    padding: 40px 30px;
    position: relative;
    transition: var(--transition-smooth);
    overflow: hidden;
}

.feature-card::before,
.feature-card::after {
    content: '';
    position: absolute;
    width: 18px;
    height: 18px;
    border: 2px solid var(--neon-cyan);
}

.feature-card::before {
    top: 10px;
    left: 10px;
    border-right: none;
    border-bottom: none;
}

.feature-card::after {
    bottom: 10px;
    right: 10px;
    border-left: none;
    border-top: none;
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: var(--neon-pink);
    box-shadow: 0 20px 40px rgba(255,43,191,0.2);
}

.feature-icon {
    font-size: 48px;
    margin-bottom: 20px;
    display: block;
}

.feature-title {
    font-family: var(--font-tech);
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
    text-transform: uppercase;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.feature-description {
    font-size: 15px;
    color: rgba(255,255,255,0.7);
    line-height: 1.6;
}

.feature-card:nth-child(1) .feature-icon { color: var(--neon-pink); }
.feature-card:nth-child(2) .feature-icon { color: var(--neon-cyan); }
.feature-card:nth-child(3) .feature-icon { color: var(--neon-yellow); }
.feature-card:nth-child(4) .feature-icon { color: var(--neon-purple); }

.product-showcase {
    padding: 120px 0;
    background: var(--color-panel-soft);
    position: relative;
}

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

.showcase-text h2 {
    font-family: var(--font-pixel);
    font-size: 48px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 30px;
    text-transform: uppercase;
    line-height: 1.2;
}

.showcase-text p {
    font-size: 18px;
    color: rgba(255,255,255,0.7);
    margin-bottom: 40px;
    line-height: 1.8;
}

.specs-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.spec-item {
    background: var(--color-panel);
    border: 1px solid rgba(255,255,255,0.14);
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: var(--transition-smooth);
}

.spec-item:hover {
    border-color: var(--neon-cyan);
    box-shadow: 0 0 20px rgba(0,217,255,0.2);
}

.spec-icon {
    font-size: 24px;
    color: var(--neon-cyan);
}

.spec-text {
    font-family: var(--font-tech);
    font-size: 14px;
    font-weight: 600;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.showcase-images {
    position: relative;
    height: 600px;
}

.showcase-image-main {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 0 40px rgba(139,61,255,0.4));
}

.gallery-section {
    padding: 120px 0;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.gallery-item {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    border: 2px solid rgba(255,255,255,0.14);
    cursor: pointer;
    transition: var(--transition-smooth);
}

.gallery-item:hover {
    border-color: var(--neon-pink);
    box-shadow: 0 0 30px rgba(255,43,191,0.4);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
    padding: 20px;
    font-family: var(--font-tech);
    font-size: 12px;
    font-weight: 600;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.purchase-section {
    padding: 80px 0;
    background: var(--color-panel);
    position: relative;
}

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

.purchase-image {
    grid-column: 1;
}

.purchase-info {
    grid-column: 2;
}

.purchase-info h2 {
    font-family: var(--font-pixel);
    font-size: 48px;
    font-weight: 700;
    color: var(--neon-pink);
    margin-bottom: 20px;
    text-transform: uppercase;
}

.purchase-info h3 {
    font-family: var(--font-tech);
    font-size: 36px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.price {
    font-family: var(--font-pixel);
    font-size: 56px;
    font-weight: 700;
    color: var(--neon-yellow);
    margin-bottom: 40px;
}

.quantity-selector {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 40px;
}

.quantity-label {
    font-family: var(--font-tech);
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.quantity-controls {
    display: flex;
    align-items: center;
    border: 2px solid rgba(255,255,255,0.14);
}

.quantity-btn {
    background: transparent;
    border: none;
    color: var(--neon-cyan);
    width: 50px;
    height: 50px;
    font-size: 24px;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.quantity-btn:hover {
    background: var(--neon-cyan);
    color: #000;
}

.quantity-value {
    width: 60px;
    height: 50px;
    background: transparent;
    border: none;
    color: #ffffff;
    font-family: var(--font-tech);
    font-size: 20px;
    font-weight: 700;
    text-align: center;
}

.purchase-buttons {
    display: flex;
    gap: 20px;
}

.purchase-image {
    position: relative;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.purchase-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 0 40px rgba(255,43,191,0.4));
}

footer {
    background: var(--color-bg-deep);
    border-top: 1px solid rgba(255,255,255,0.12);
    padding: 80px 0 40px;
}

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

.footer-brand h3 {
    font-family: var(--font-pixel);
    font-size: 24px;
    color: #ffffff;
    margin-bottom: 20px;
}

.footer-brand p {
    font-size: 15px;
    color: rgba(255,255,255,0.6);
    line-height: 1.8;
}

.footer-links h4 {
    font-family: var(--font-tech);
    font-size: 16px;
    font-weight: 700;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

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

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

.footer-links a {
    font-size: 15px;
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    transition: var(--transition-smooth);
}

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

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.12);
    padding-top: 40px;
    text-align: center;
}

.footer-bottom p {
    font-size: 14px;
    color: rgba(255,255,255,0.5);
}

.mobile-menu-btn {
    display: none;
    background: transparent;
    border: 2px solid rgba(255,255,255,0.3);
    color: #ffffff;
    font-size: 20px;
    cursor: pointer;
    padding: 8px 12px;
    border-radius: 4px;
    transition: var(--transition-smooth);
}

.mobile-menu-btn:hover {
    border-color: var(--neon-pink);
    color: var(--neon-pink);
}

@media (max-width: 1199px) {
    nav {
        display: none;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .cart-btn {
        padding: 8px 16px;
        font-size: 12px;
    }
    
    .logo {
        font-size: 18px;
    }
    
    header {
        height: 70px;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .hero-image {
        order: -1;
    }
    
    .product-image-container {
        height: 400px;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .showcase-content {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .purchase-content {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .container {
        padding: 0 16px;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    * {
        box-sizing: border-box;
    }
    
    header {
        height: 70px;
        position: sticky;
        -webkit-position: sticky;
    }
    
    nav {
        display: none;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .hero {
        min-height: auto;
        padding: 60px 0;
        overflow: hidden;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        max-width: 100%;
    }
    
    .hero-image {
        order: -1;
        width: 100%;
    }
    
    .hero-text {
        width: 100%;
        max-width: 100%;
        overflow: hidden;
        padding: 0;
    }
    
    .hero-title {
        font-size: 28px;
        word-wrap: break-word;
        overflow-wrap: break-word;
        -webkit-hyphens: auto;
        hyphens: auto;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .hero-description {
        font-size: 14px;
        line-height: 1.6;
    }
    
    .hero-features {
        font-size: 13px;
    }
    
    .hero-features li {
        margin-bottom: 8px;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 10px;
        width: 100%;
    }
    
    .btn {
        width: 100%;
        text-align: center;
        padding: 12px 20px;
        box-sizing: border-box;
    }
    
    .product-image-container {
        height: 280px;
        width: 100%;
    }
    
    .product-number {
        font-size: 80px;
        top: -30px;
        left: -10px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .gallery-item {
        padding: 10px;
    }
    
    .section-title {
        font-size: 24px;
    }
    
    .showcase-text h2 {
        font-size: 24px;
    }
    
    .specs-grid {
        grid-template-columns: 1fr;
    }
    
    .purchase-section {
        padding: 60px 0;
    }
    
    .purchase-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .purchase-info h2 {
        font-size: 28px;
    }
    
    .purchase-info h3 {
        font-size: 20px;
    }
    
    .price {
        font-size: 32px;
    }
    
    .purchase-buttons {
        flex-direction: column;
        gap: 10px;
        width: 100%;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-brand,
    .footer-links {
        width: 100%;
    }
}

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.glitch {
    position: relative;
}

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

.glitch::before {
    left: 2px;
    text-shadow: -2px 0 var(--neon-pink);
    clip: rect(24px, 550px, 90px, 0);
    animation: glitch-anim-2 3s infinite linear alternate-reverse;
}

.glitch::after {
    left: -2px;
    text-shadow: -2px 0 var(--neon-cyan);
    clip: rect(85px, 550px, 140px, 0);
    animation: glitch-anim 2.5s infinite linear alternate-reverse;
}

@keyframes glitch-anim {
    0% { clip: rect(30px, 9999px, 10px, 0); }
    10% { clip: rect(70px, 9999px, 130px, 0); }
    20% { clip: rect(20px, 9999px, 90px, 0); }
    30% { clip: rect(60px, 9999px, 40px, 0); }
    40% { clip: rect(10px, 9999px, 80px, 0); }
    50% { clip: rect(50px, 9999px, 120px, 0); }
    60% { clip: rect(40px, 9999px, 70px, 0); }
    70% { clip: rect(80px, 9999px, 30px, 0); }
    80% { clip: rect(20px, 9999px, 100px, 0); }
    90% { clip: rect(90px, 9999px, 50px, 0); }
    100% { clip: rect(10px, 9999px, 60px, 0); }
}

@keyframes glitch-anim-2 {
    0% { clip: rect(65px, 9999px, 100px, 0); }
    10% { clip: rect(15px, 9999px, 60px, 0); }
    20% { clip: rect(85px, 9999px, 40px, 0); }
    30% { clip: rect(35px, 9999px, 110px, 0); }
    40% { clip: rect(75px, 9999px, 20px, 0); }
    50% { clip: rect(25px, 9999px, 90px, 0); }
    60% { clip: rect(55px, 9999px, 130px, 0); }
    70% { clip: rect(5px, 9999px, 70px, 0); }
    80% { clip: rect(95px, 9999px, 50px, 0); }
    90% { clip: rect(45px, 9999px, 80px, 0); }
    100% { clip: rect(25px, 9999px, 120px, 0); }
}

.mouse-glow {
    position: fixed;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255,43,191,0.15), transparent 70%);
    pointer-events: none;
    z-index: 9998;
    transform: translate(-50%, -50%);
    transition: opacity 0.3s ease;
}

.cart-notification {
    position: fixed;
    top: 100px;
    right: 32px;
    background: var(--color-panel);
    border: 2px solid var(--neon-pink);
    padding: 20px 30px;
    border-radius: 4px;
    box-shadow: 0 10px 40px rgba(255,43,191,0.3);
    z-index: 10000;
    transform: translateX(400px);
    transition: transform 0.4s cubic-bezier(.2,.8,.2,1);
}

.cart-notification.show {
    transform: translateX(0);
}

.cart-notification h4 {
    font-family: var(--font-tech);
    font-size: 16px;
    font-weight: 700;
    color: var(--neon-pink);
    margin-bottom: 8px;
    text-transform: uppercase;
}

.cart-notification p {
    font-size: 14px;
    color: rgba(255,255,255,0.8);
}
