@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;500;600;700&family=Poppins:wght@300;400;500;600;700&display=swap');

:root {
    --neon-glow: 0 0 10px rgba(74, 222, 128, 0.8), 0 0 20px rgba(74, 222, 128, 0.6), 0 0 30px rgba(74, 222, 128, 0.4);
}

body {
    font-family: 'Poppins', sans-serif;
}

.neon-text {
    font-family: 'Orbitron', sans-serif;
    text-shadow: 0 0 5px #4ade80, 0 0 10px #4ade80;
}

.neon-glow {
    box-shadow: var(--neon-glow);
}

.perspective-1000 {
    perspective: 1000px;
}

.rotate-y-20 {
    transform: rotateY(20deg);
}
model-viewer {
    --progress-bar-color: transparent;
    --poster-color: transparent;
}

model-viewer::part(default-ar-button) {
    background-color: var(--neon-600);
    color: var(--dark-900);
    border-radius: 9999px;
    padding: 0.5rem 1rem;
    font-weight: bold;
    bottom: 20px;
}

model-viewer::part(default-ar-button):hover {
    background-color: var(--neon-700);
}

.product-3d {
    transform-style: preserve-3d;
    transition: transform 0.5s ease;
}

.model-switch {
    transition: all 0.3s ease;
}

.model-switch:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 10px rgba(74, 222, 128, 0.5);
}
/* Shopping cart animation */
@keyframes cartBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}

.cart-animate {
  animation: cartBounce 0.5s ease;
}

/* Animation for neon elements */
@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.7;
    }
}

.pulse {
    animation: pulse 2s infinite;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #1a1a1a;
}

::-webkit-scrollbar-thumb {
    background: #4ade80;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #22c55e;
}