@font-face {
    font-family: 'Eurostyle Extend';
    src: url('../TTF/eurostile.woff2') format('woff2');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

/* 1. FUENTE GLOBAL LEGIBLE (Inter) */
body {
    background: var(--gradient-bg); 
    color: var(--text-light); 
    min-height: 100vh;
    overflow-x: hidden; 
    font-family: 'Inter', sans-serif; /* Aquí cambiamos a Inter */
    scroll-behavior: smooth; 
    position: relative;
}

/* 2. FUENTE SOLO PARA LOGOS Y TÍTULOS */
.logo-nav, .logo-giant, h1, h2, h3, .cta-button, .pricing-header { 
    font-family: 'Eurostyle Extend', sans-serif !important; 
    font-weight: 900 !important; 
}

/* 3. Aseguramos que los párrafos y listas mantengan legibilidad */
p, li, .plan-desc, .contact-form input, .contact-form textarea, .social-btn {
    font-family: 'Inter', sans-serif !important;
}

:root {
    --bg-dark: #0a0f12;
    --primary-color: #01fe86;
    --primary-hover: #00db73;
    --gradient-bg: linear-gradient(135deg, #0a0f12 0%, #05101a 100%);
    --text-light: #e0e0e0;
    --card-bg: rgba(255, 255, 255, 0.03);
    --border-color: rgba(255,255,255,0.08);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

/* PANTALLA DE CARGA */
#loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-dark);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    transition: opacity 0.5s ease-out;
}
.spinner {
    width: 50px;
    height: 50px;
    border: 5px solid rgba(1, 254, 134, 0.3);
    border-top-color: var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-bottom: 20px;
}
@keyframes spin { 100% { transform: rotate(360deg); } }
.loader-text {
    font-family: 'Eurostyle Extend', sans-serif;
    color: var(--primary-color);
    font-size: 1.5rem;
    letter-spacing: 2px;
    animation: pulse 1.5s infinite;
}
@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

body {
    background: var(--gradient-bg); 
    color: var(--text-light); 
    min-height: 100vh;
    overflow-x: hidden; 
    font-family: 'Eurostyle Extend', 'Inter', sans-serif; /* Tipografía global aplicada */
    scroll-behavior: smooth; 
    position: relative;
}

/* Background Orbs */
.bg-orbs { position: fixed; top: 0; left: 0; width: 100%; height: 100%; z-index: -1; overflow: hidden; pointer-events: none; }
.orb { position: absolute; border-radius: 50%; filter: blur(90px); opacity: 0.3; animation: float 15s infinite alternate ease-in-out; }
.orb-1 { width: 450px; height: 450px; background: #004d2b; top: -10%; left: -10%; }
.orb-2 { width: 550px; height: 550px; background: #002615; bottom: -20%; right: -10%; animation-delay: -5s; }
.orb-3 { width: 300px; height: 300px; background: rgba(1, 254, 134, 0.15); top: 40%; left: 30%; animation-delay: -10s; }

@keyframes float { 0% { transform: translate(0, 0); } 100% { transform: translate(50px, -50px); } }

/* Typography */
.logo-nav, .logo-giant { font-family: 'Eurostyle Extend', 'Syncopate', sans-serif; font-weight: 900; }
.logo-nav { font-size: 1.8rem; }
.logo-giant { font-size: 5rem; text-align: center; margin-bottom: 2rem; text-shadow: 0 0 20px rgba(1, 254, 134, 0.3); }
.highlight { color: var(--primary-color); }
h2 { font-size: 2.5rem; line-height: 1.3; margin-bottom: 1.5rem; color: #ffffff; }

/* Navbar */
/* --- ANIMACIÓN DE ENTRADA DEL HEADER --- */
@keyframes slideDownHeader {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* --- HEADER / NAVBAR ESTÉTICO --- */
.navbar {
    position: fixed; 
    top: 0; 
    left: 0; 
    width: 100%; 
    padding: 1.5rem 10%; 
    display: flex;
    justify-content: space-between; 
    align-items: center; 
    z-index: 1000;
    
    /* Animación inicial al entrar a la página */
    animation: slideDownHeader 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    
    /* Efecto Glassmorphism inicial */
    background: rgba(10, 15, 18, 0.6);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.4s ease;
}

/* Cuando el usuario hace scroll hacia abajo */
.navbar.scrolled {
    padding: 1rem 10%; 
    background: rgba(5, 10, 13, 0.95); /* Más oscuro al hacer scroll */
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.8);
    border-bottom: 1px solid rgba(1, 254, 134, 0.1); /* Brillo verde sutil abajo */
}

/* --- ENLACES DEL NAVBAR CON ANIMACIÓN --- */
.nav-links {
    list-style: none;
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-links a:not(.auth-btn) { /* Excluimos los botones para que no tengan la línea abajo */
    color: var(--text-light);
    text-decoration: none;
    font-weight: 700;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    padding: 0.5rem 0;
    transition: color 0.3s ease;
}

.nav-links a:not(.auth-btn):hover {
    color: var(--primary-color);
}

/* Efecto de línea verde que se expande desde el centro */
.nav-links a:not(.auth-btn)::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 50%;
    background-color: var(--primary-color);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    transform: translateX(-50%);
    box-shadow: 0 0 8px var(--primary-color); /* Glow neón */
}

.nav-links a:not(.auth-btn):hover::after {
    width: 100%;
}


/* --- BOTONES DEL HEADER (GLOBAL) --- */
.auth-btn {
    background: var(--primary-color);
    color: #000 !important;
    padding: 0.5rem 1.2rem;
    border-radius: 6px;
    font-weight: bold;
    transition: 0.3s;
    text-decoration: none;
}

.auth-btn:hover {
    background: var(--primary-hover);
    box-shadow: 0 0 10px rgba(1, 254, 134, 0.4);
}

.auth-btn.outline {
    background: transparent;
    border: 1px solid #ff4444;
    color: #ff4444 !important;
}

.auth-btn.outline:hover {
    background: #ff4444;
    color: #fff !important;
    box-shadow: 0 0 10px rgba(255, 68, 68, 0.4);
}
/* Buttons */
.cta-button {
    background: var(--primary-color); color: #000; border: none; padding: 1rem 2rem;
    font-size: 1.1rem; font-weight: 700; border-radius: 8px; cursor: pointer;
    transition: all 0.3s ease; box-shadow: 0 0 15px rgba(1, 254, 134, 0.3); text-align: center;
    font-family: 'Eurostyle Extend', sans-serif;
}
.cta-button:hover { background: var(--primary-hover); transform: translateY(-2px); box-shadow: 0 0 25px rgba(1, 254, 134, 0.6); }
.cta-button.full-width { width: 100%; display: block; }

/* Sections */
section { padding: 6rem 10%; }

/* Hero */
.hero { display: flex; flex-direction: column; justify-content: center; min-height: 90vh; }
.hero-container { display: flex; align-items: center; justify-content: space-between; gap: 4rem; }
.hero-content { flex: 1; }
.hero-content p { font-size: 1.1rem; line-height: 1.6; margin-bottom: 2rem; color: #a0a0a0; }
.delivery-note { font-size: 0.9rem; color: var(--primary-color); margin-top: 1rem; font-weight: 700; }
.mockup-placeholder { width: 100%; max-width: 400px; height: 500px; background: var(--card-bg); border: 1px solid var(--border-color); border-radius: 20px; display: flex; align-items: center; justify-content: center; color: #555; box-shadow: 0 20px 40px rgba(0,0,0,0.5); backdrop-filter: blur(5px); margin: 0 auto; }
.mockup-placeholder.small { height: 350px; }

/* About Us */
.about-section { background: rgba(0,0,0,0.2); }
.about-container { display: flex; align-items: center; gap: 4rem; }
.about-text { flex: 1; }
.about-text p { font-size: 1.1rem; color: #a0a0a0; line-height: 1.6; margin-bottom: 2rem; }
.stats-container { display: flex; gap: 2rem; }
.stat-item h3 { font-size: 3rem; color: var(--primary-color); margin-bottom: 0.5rem; display: flex; align-items: center; }
.stat-item p { font-size: 0.9rem; color: #888; font-weight: bold; text-transform: uppercase; }
.about-image { flex: 1; }

/* Pricing / Product Split Section */
.pricing-section { text-align: center; }
.product-split { display: flex; gap: 4rem; max-width: 1200px; margin: 0 auto; align-items: flex-start; text-align: left; }
.product-info-side, .product-carousel-side { flex: 1; width: 100%; }

.pricing-card {
    background: #002b18; 
    width: 100%; border-radius: 20px; padding: 3rem 2rem;
    box-shadow: 0 20px 50px rgba(1, 254, 134, 0.1); margin-bottom: 2rem;
}
.price-label { font-size: 0.9rem; font-weight: bold; text-transform: uppercase; color: rgba(255,255,255,0.7); display: block; margin-bottom: 0.5rem; }
.price-amount { font-size: 3.5rem; color: #fff; margin-bottom: 1rem; font-weight: 900; }
.price-amount .currency { font-size: 1.2rem; font-weight: 400; opacity: 0.8; }
.plan-name { font-size: 1.5rem; margin-bottom: 1rem; color: #fff; }
.plan-desc { color: rgba(255,255,255,0.8); margin-bottom: 2rem; line-height: 1.5; font-size: 1rem; }
.pricing-features { list-style: none; margin-bottom: 2rem; }
.pricing-features li { padding: 1rem 0; border-top: 1px solid rgba(255,255,255,0.2); color: #fff; font-size: 1rem; }

/* Product Carousel */
.prod-carousel { position: relative; width: 100%; height: 600px; border-radius: 20px; overflow: hidden; border: 1px solid var(--border-color); background: #000; box-shadow: 0 20px 40px rgba(0,0,0,0.5); }
.prod-slide { position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: contain; opacity: 0; transition: opacity 0.5s ease-in-out; }
.prod-slide.active { opacity: 1; }
.carousel-btn { position: absolute; top: 50%; transform: translateY(-50%); background: rgba(0,0,0,0.5); color: #fff; border: none; font-size: 2rem; padding: 1rem; cursor: pointer; transition: 0.3s; z-index: 10; border-radius: 5px; }
.carousel-btn:hover { background: var(--primary-color); color: #000; }
.carousel-btn.prev { left: 10px; }
.carousel-btn.next { right: 10px; }


/* Testimonials Carousel */
.testimonials-section { text-align: center; background: rgba(0,0,0,0.3); }
.carousel-container { overflow: hidden; max-width: 1000px; margin: 0 auto; position: relative; }
.carousel-track { display: flex; transition: transform 0.5s ease-in-out; gap: 2rem; }
.testimonial-card {
    min-width: calc(50% - 1rem);
    background: var(--card-bg); border: 1px solid var(--border-color);
    border-radius: 15px; padding: 2rem; text-align: left; backdrop-filter: blur(10px);
}
.stars { color: #ffc107; margin-bottom: 1rem; font-size: 1.2rem; }
.testimonial-text { font-style: italic; color: #ccc; margin-bottom: 1.5rem; line-height: 1.6; }
.client-info { display: flex; align-items: center; gap: 1rem; border-top: 1px solid var(--border-color); padding-top: 1rem; }
.client-avatar { width: 40px; height: 40px; background: var(--primary-color); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: bold; color: #000; }
.client-name { font-weight: bold; color: #fff; }
.carousel-dots { display: flex; justify-content: center; gap: 0.5rem; margin-top: 2rem; }
.dot { width: 12px; height: 12px; border-radius: 50%; background: rgba(255,255,255,0.2); cursor: pointer; transition: 0.3s; }
.dot.active { background: var(--primary-color); }

/* Contact Section */
.contact-section { background: transparent; }
.contact-section h2 { text-align: center; margin-bottom: 3rem; }
.contact-grid { display: flex; gap: 4rem; max-width: 1000px; margin: 0 auto; background: rgba(15, 20, 25, 0.6); padding: 3rem; border-radius: 20px; border: 1px solid var(--border-color); backdrop-filter: blur(15px); }
.contact-form-container, .contact-profile { flex: 1; }
.contact-form-container h3 { margin-bottom: 1.5rem; color: #fff; font-size: 1.5rem; }
.contact-form { display: flex; flex-direction: column; gap: 1.2rem; }
.contact-form input, .contact-form textarea { width: 100%; padding: 1rem; background: rgba(0,0,0,0.4); border: 1px solid rgba(255,255,255,0.1); border-radius: 8px; color: var(--text-light); font-family: 'Eurostyle Extend', inherit; font-size: 1rem; transition: 0.3s; }
.contact-form input:focus, .contact-form textarea:focus { outline: none; border-color: var(--primary-color); background: rgba(0,0,0,0.6); }

/* Social Links - No Personal Info */
.contact-profile { display: flex; flex-direction: column; justify-content: center; border-left: 1px solid var(--border-color); padding-left: 4rem; }
.social-links { width: 100%; display: flex; flex-direction: column; gap: 1.5rem; }
.social-btn { display: flex; align-items: center; gap: 1rem; width: 100%; padding: 1.2rem; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); border-radius: 8px; color: #e0e0e0; text-decoration: none; transition: 0.3s; font-size: 1rem; }
.social-btn:hover { background: rgba(255,255,255,0.1); border-color: var(--primary-color); transform: translateX(5px); }

/* Footer & WSP */
/* --- REDISEÑO DEL FOOTER --- */
.footer {
    position: relative;
    background: linear-gradient(135deg, #030507 0%, #0a1510 100%);
    padding: 4rem 10% 2rem;
    text-align: center;
    border-top: 1px solid rgba(1, 254, 134, 0.2);
    overflow: hidden;
}

/* Animación de luz de fondo (Glow Effect) */
.footer::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(1,254,134,0.05) 0%, transparent 60%);
    animation: rotateGlow 15s linear infinite;
    z-index: 0;
    pointer-events: none;
}

@keyframes rotateGlow {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.footer-content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.footer .logo-nav {
    font-size: 2.5rem;
    text-shadow: 0 0 15px rgba(1, 254, 134, 0.3);
}

.footer p {
    color: #888;
    font-size: 0.95rem;
    margin-top: 1rem;
}
.whatsapp-btn { position: fixed; bottom: 30px; right: 30px; background-color: #25d366; color: white; width: 60px; height: 60px; border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 15px rgba(0,0,0,0.4); z-index: 1000; transition: transform 0.3s ease; }
.whatsapp-btn:hover { transform: scale(1.1); }
.whatsapp-btn svg { width: 35px; height: 35px; }

/* Responsiveness */
@media (max-width: 900px) {
    .hero-container, .about-container, .contact-grid, .product-split { flex-direction: column; gap: 2rem; }
    .contact-profile { border-left: none; border-top: 1px solid var(--border-color); padding-left: 0; padding-top: 2rem; text-align: center; }
    .testimonial-card { min-width: 100%; }
    .navbar { flex-direction: column; padding: 1rem; }
    .nav-links { gap: 1rem; margin-top: 1rem; flex-wrap: wrap; justify-content: center; }
    .logo-giant { font-size: 3rem; }
    .prod-carousel { height: 400px; }
}

/* --- BOTÓN DE CARRITO EN NAVBAR --- */
.cart-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.cart-btn {
    display: flex;
    align-items: center;
    color: var(--text-light) !important;
    text-decoration: none;
    padding: 0.5rem;
    transition: color 0.3s ease;
}

.cart-btn:hover {
    color: var(--primary-color) !important;
}

.cart-icon {
    width: 22px;
    height: 22px;
}

.cart-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: var(--primary-color);
    color: #000;
    font-size: 0.75rem;
    font-weight: 800;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 8px var(--primary-color);
}

/* --- PANEL LATERAL DEL CARRITO (OFFCANVAS) --- */
.cart-overlay {
    position: fixed; top: 0; left: 0; width: 100vw; height: 100vh;
    background: rgba(0, 0, 0, 0.6); backdrop-filter: blur(5px);
    z-index: 10000; opacity: 0; visibility: hidden; transition: 0.3s ease;
}
.cart-overlay.active { opacity: 1; visibility: visible; }

.cart-panel {
    position: fixed; top: 0; right: -450px; width: 100%; max-width: 450px; height: 100vh;
    background: #0a0f12; border-left: 1px solid var(--border-color);
    z-index: 10001; display: flex; flex-direction: column;
    transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.6);
}
.cart-panel.open { right: 0; }

.cart-header {
    padding: 1.5rem; border-bottom: 1px solid var(--border-color);
    display: flex; justify-content: space-between; align-items: center;
}
.cart-header h2 { margin: 0; font-size: 1.8rem; font-family: 'Eurostyle Extend', sans-serif; }
.close-btn { background: none; border: none; color: #fff; font-size: 2.5rem; line-height: 1; cursor: pointer; transition: color 0.2s; }
.close-btn:hover { color: var(--primary-color); }

.cart-items-container { flex: 1; overflow-y: auto; padding: 1.5rem; }
.cart-item {
    display: flex; justify-content: space-between; align-items: center;
    background: rgba(255,255,255,0.05); padding: 1.2rem; border-radius: 8px; margin-bottom: 1rem;
    border: 1px solid rgba(255,255,255,0.05);
}
.item-info h4 { margin: 0 0 0.5rem 0; font-size: 1.1rem; }
.item-info .item-price { color: var(--primary-color); font-weight: bold; }
.item-controls { display: flex; align-items: center; gap: 0.8rem; }
.qty-btn { 
    background: rgba(0,0,0,0.5); color: #fff; border: 1px solid var(--border-color); 
    width: 30px; height: 30px; border-radius: 4px; cursor: pointer; font-size: 1.2rem;
    display: flex; align-items: center; justify-content: center;
}
.qty-btn:hover { background: var(--primary-color); color: #000; border-color: var(--primary-color); }
.remove-btn { background: none; border: none; color: #ff4444; font-size: 1.3rem; cursor: pointer; margin-left: 0.5rem; }

.cart-footer { padding: 2rem 1.5rem; border-top: 1px solid var(--border-color); background: rgba(5, 10, 13, 0.95); }
.cart-total { display: flex; justify-content: space-between; font-size: 1.3rem; font-weight: bold; margin-bottom: 1.5rem; }

/* =========================================
   FIX DEFINITIVO IMÁGENES: GRANDES Y SIN FONDO
   ========================================= */

/* 1. Forzar contenedores 100% invisibles */
.mockup-placeholder,
.mockup-placeholder.small,
.image-container,
.prod-carousel {
    background-color: transparent !important;
    border: none !important;
    box-shadow: none !important;
}

/* 2. Tamaño gigante y responsivo (Imagen Hero) */
.mockup-placeholder img,
.hero-image img {
    width: 100%;
    max-width: 600px; /* Crece hasta 600px */
    height: auto;
    object-fit: contain;
    transform: scale(1.15); /* Zoom para que destaque */
    margin: 0 auto;
    display: block;
    background-color: transparent !important; /* Asegura que la imagen en sí no tenga fondo */
}

/* 3. Tamaño "Sobre Nosotros" */
.about-image img {
    width: 100%;
    max-width: 450px;
    height: auto;
    object-fit: contain;
    transform: scale(1.1);
    margin: 0 auto;
    display: block;
    background-color: transparent !important;
}

/* 4. Carrusel de productos */
.prod-slide {
    width: 100%;
    max-width: 500px;
    max-height: 600px;
    object-fit: contain;
    margin: 0 auto;
    background-color: transparent !important;
}

/* =========================================
   1. CORRECCIÓN DE SCROLL HORIZONTAL
   ========================================= */
html, body {
    max-width: 100vw;
    overflow-x: hidden;
}

/* =========================================
   2. ALINEACIÓN DEL CARRUSEL Y FLECHAS
   ========================================= */
.product-split {
    display: flex;
    align-items: stretch; /* Fuerza a ambas columnas a tener la misma altura */
    gap: 2rem;
    flex-wrap: wrap; /* Evita que se aplaste en pantallas medianas */
}

.product-info-side, .product-carousel-side {
    flex: 1;
    min-width: 300px;
    display: flex;
    flex-direction: column;
}

.prod-carousel {
    position: relative;
    width: 100%;
    height: 100%; /* Toma la altura completa de la tarjeta de la izquierda */
    min-height: 450px; 
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid var(--border-color, #27272a);
}

.prod-slide {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover; /* Evita que las imágenes se deformen */
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.prod-slide.active {
    opacity: 1;
    position: relative;
}

/* Flechas dentro del carrusel */
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.6);
    color: #01fe86;
    border: 1px solid #01fe86;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.carousel-btn.prev { left: 15px; }
.carousel-btn.next { right: 15px; }


/* =========================================
   3. NAVEGACIÓN INFERIOR MÓVIL (APP NATIVA)
   ========================================= */
/* Ocultar menú móvil en escritorio por defecto */
.mobile-bottom-nav {
    display: none;
}

@media (max-width: 768px) {
    /* Ocultar el navbar original en móvil dejando solo el logo */
    #navbar nav {
        display: none !important; 
    }
    
    #navbar {
        justify-content: center;
        padding-top: 15px;
    }

    /* Mostrar barra inferior */
    .mobile-bottom-nav {
        display: flex;
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 70px;
        background-color: #050a0d; /* Fondo oscuro */
        border-top: 1px solid #27272a;
        z-index: 9999;
        justify-content: space-around;
        align-items: center;
        padding-bottom: env(safe-area-inset-bottom); /* Soporte para iPhones */
        box-shadow: 0 -5px 20px rgba(0,0,0,0.5);
    }

    .mobile-bottom-nav .nav-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        color: #a1a1aa;
        text-decoration: none;
        font-size: 0.75rem;
        gap: 5px;
        flex: 1;
        height: 100%;
        transition: color 0.3s;
    }

    .mobile-bottom-nav .nav-item i {
        font-size: 1.3rem;
    }

    .mobile-bottom-nav .nav-item.active,
    .mobile-bottom-nav .nav-item:hover {
        color: #01fe86;
    }

    /* Ajuste del contador del carrito en móvil */
    .cart-icon-wrapper {
        position: relative;
        display: inline-block;
    }

    .cart-badge-mobile {
        position: absolute;
        top: -5px;
        right: -10px;
        background: #ff4444;
        color: white;
        font-size: 0.65rem;
        font-weight: bold;
        padding: 2px 5px;
        border-radius: 10px;
        min-width: 18px;
        text-align: center;
    }

    /* Espacio al final de la página para no tapar contenido */
    body {
        padding-bottom: 85px !important;
    }

    /* Subir botón de WhatsApp para que no estorbe con el menú */
    .whatsapp-btn {
        bottom: 90px !important;
    }
}