/* Estilos visuales personalizados para Nickronso Store (Neon Purple & Gold) */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800;900&display=swap');

:root {
    --primary-purple: #9333ea;
    --primary-glow: rgba(147, 51, 234, 0.35);
    --gold-accent: #f59e0b;
    --gold-glow: rgba(245, 158, 11, 0.25);
    --card-bg: rgba(12, 16, 26, 0.90);
    --card-border: rgba(147, 51, 234, 0.22);
}

body {
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    background-color: #06080e;
    color: #f1f5f9;
    overflow-x: hidden;
    position: relative;
}

/* Marca de Agua Central del Logo Nickronso Store */
.watermark-background {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    max-width: 85vw;
    height: 600px;
    max-height: 85vh;
    background-image: url('file:///C:/Users/Ronso/.gemini/antigravity/brain/805a762a-a0d8-466e-8af2-7984a63ee82e/.user_uploaded/media_1787687530103.jpg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0.05;
    pointer-events: none;
    z-index: 0;
    filter: drop-shadow(0 0 60px rgba(147, 51, 234, 0.6));
}

/* Background Gradients and Purple Ambient Glows */
.ambient-glow-1 {
    position: absolute;
    top: -5%;
    left: 15%;
    width: 650px;
    height: 650px;
    background: radial-gradient(circle, rgba(147, 51, 234, 0.22) 0%, rgba(124, 58, 237, 0.08) 45%, rgba(0,0,0,0) 70%);
    pointer-events: none;
    z-index: 0;
}

.ambient-glow-2 {
    position: absolute;
    top: 35%;
    right: 5%;
    width: 550px;
    height: 550px;
    background: radial-gradient(circle, rgba(217, 119, 6, 0.12) 0%, rgba(147, 51, 234, 0.1) 40%, rgba(0,0,0,0) 70%);
    pointer-events: none;
    z-index: 0;
}

/* Glassmorphism Cards with Neon Violet Accent */
.glass-card {
    background: var(--card-bg);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border: 1px solid var(--card-border);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.glass-card:hover {
    border-color: rgba(168, 85, 247, 0.6);
    transform: translateY(-4px);
    box-shadow: 0 16px 35px -10px rgba(0, 0, 0, 0.6), 0 0 25px 2px rgba(147, 51, 234, 0.25);
}

/* Brand Emblem Glow & Styling */
.emblem-glow {
    box-shadow: 0 0 25px rgba(147, 51, 234, 0.55), 0 0 50px rgba(124, 58, 237, 0.25);
    animation: emblemPulse 3.5s ease-in-out infinite alternate;
}

.logo-glow-ring {
    position: relative;
}

.logo-glow-ring::after {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 9999px;
    background: linear-gradient(135deg, #a855f7, #f59e0b, #9333ea);
    z-index: -1;
    opacity: 0.8;
    filter: blur(4px);
    animation: rotateHue 6s linear infinite;
}

@keyframes rotateHue {
    0% { filter: blur(4px) hue-rotate(0deg); }
    100% { filter: blur(4px) hue-rotate(360deg); }
}

@keyframes emblemPulse {
    0% {
        box-shadow: 0 0 20px rgba(147, 51, 234, 0.4), 0 0 40px rgba(124, 58, 237, 0.2);
    }
    100% {
        box-shadow: 0 0 32px rgba(168, 85, 247, 0.75), 0 0 60px rgba(147, 51, 234, 0.4);
    }
}

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

::-webkit-scrollbar-track {
    background: #06080e;
}

::-webkit-scrollbar-thumb {
    background: #1e1b4b;
    border-radius: 4px;
    border: 1px solid rgba(147, 51, 234, 0.3);
}

::-webkit-scrollbar-thumb:hover {
    background: #312e81;
}

/* Category Filter Active Pill */
.category-btn.active {
    background: linear-gradient(135deg, #9333ea 0%, #7c3aed 50%, #6366f1 100%);
    color: #ffffff;
    box-shadow: 0 4px 18px rgba(147, 51, 234, 0.45);
    border-color: rgba(216, 180, 254, 0.4);
}

/* Pulse animation for Live/Guaranteed badges */
@keyframes pulse-subtle {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.85; transform: scale(0.98); }
}

.pulse-badge {
    animation: pulse-subtle 3s infinite ease-in-out;
}

/* Cart Drawer and Modals */
.drawer-backdrop {
    background: rgba(4, 5, 10, 0.82);
    backdrop-filter: blur(6px);
}

/* WhatsApp Floating Button */
.whatsapp-float {
    box-shadow: 0 8px 25px rgba(34, 197, 94, 0.4);
    animation: float 4s ease-in-out infinite;
}

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

/* Toast Notifications */
.toast-slide-in {
    animation: slideIn 0.3s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

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