/* Manteniendo exactamente tu paleta de colores */
:root {
    --primary: #00d9ff;
    --accent: #ff006e;
    --dark-bg: #0a0e27;
    --dark-card: #141829;
    --text-light: #ffffff;
    --text-muted: #b0b8c1;
}

/* Header mejorado manteniendo tu estilo */
.navbar-blur {
    background: rgba(10, 14, 39, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 217, 255, 0.1);
    transition: all 0.3s ease;
    padding: 1rem;
    position: sticky;
    top: 0;
    z-index: 50;
}

.logo-futuristic {
    font-family: 'Orbitron', sans-serif;
    font-size: 48px;
    font-weight: 900;
    background: linear-gradient(135deg, #00d9ff, #ff006e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(0, 217, 255, 0.3);
    margin-bottom: 0;
}

/* Para pantallas menores a 770px */
@media (max-width: 770px) {
    .logo-futuristic {
        font-size: 32px;
        margin-left: auto;
        margin-right: auto;
    }
}

/* Para pantallas entre 771px y 1010px */
@media (min-width: 771px) and (max-width: 1010px) {
    .logo-futuristic {
        font-size: 36px;
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
    }
}

/* Para pantallas mayores a 1010px */
@media (min-width: 1011px) {
    .logo-futuristic {
        font-size: 48px;
        margin-right: auto;
        position: static;
        transform: none;
    }
}

/* Cart badge con tu paleta */
.cart-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: var(--accent);
    border-radius: 50%;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 600;
    color: #000;
}

/* Dropdown mejorado - más ancho para todas las tarjetas */
.dropdown-menu {
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--dark-card);
    border-radius: 12px;
    margin-top: 12px;
    z-index: 50;
    border: 1px solid rgba(0, 217, 255, 0.2);
    min-width: 300px;
}

.dropdown-trigger:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Mobile menu manteniendo tu estilo */
.mobile-nav {
    position: fixed;
    top: 0;
    left: -100%;
    width: 280px;
    height: 100vh;
    background: rgba(20, 24, 41, 0.98);
    backdrop-filter: blur(10px);
    transition: left 0.4s ease-in-out;
    z-index: 60;
    padding: 80px 0 20px;
    overflow-y: auto;
    border-right: 1px solid rgba(0, 217, 255, 0.2);
}

.mobile-nav.active {
    left: 0;
}

.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 55;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Mejoras visuales sutiles */
.nav-link {
    transition: all 0.3s ease;
}

.nav-link:hover {
    transform: translateY(-2px);
}

.desktop-nav {
    display: none;
}

@media (min-width: 1011px) {
    .desktop-nav {
        display: flex !important;
    }
}

.mobile-nav-toggle {
    display: block;
}

@media (min-width: 1011px) {
    .mobile-nav-toggle {
        display: none !important;
    }
}









/* Agrega en tu sección de estilos CSS */
.sidebar {
    position: fixed;
    right: -100%;
    top: 0;
    width: 400px;
    height: 100vh;
    background: var(--dark-card);
    transition: right 0.3s ease;
    z-index: 90;
    overflow-y: auto;
    border-left: 1px solid rgba(0, 217, 255, 0.2);
}

.sidebar.active {
    right: 0;
}

@media (max-width: 768px) {
    .sidebar {
        width: 100%;
    }
}