
        /* Todos tus estilos CSS anteriores aquí */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }

        body {
            background-color: #f8f9fa;
            color: #333;
            line-height: 1.6;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Header */
        header {
            background: linear-gradient(135deg, #2c3e50, #1a2530);
            color: white;
            padding: 1rem 0;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }

        .navbar {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo h1 {
            font-size: 1.8rem;
            font-weight: 700;
            display: flex;
            align-items: center;
            font-family: cursive;


        }

        .logo i {
            margin-right: 10px;
            color: #e74c3c;
        }

        .nav-links {
            display: flex;
            list-style: none;
        }

        .nav-links li {
            margin-left: 25px;
        }

        .nav-links li a {
            color: white;
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s;
        }

        .nav-links li a:hover {
            color: #e74c3c;
        }

        .nav-icons {
            display: flex;
            gap: 15px;
        }

        #carrito-btn, #usuario-btn {
            background: none;
            border: none;
            color: white;
            font-size: 1.2rem;
            cursor: pointer;
            position: relative;
        }

        #carrito-count {
            position: absolute;
            top: -8px;
            right: -8px;
            background: #e74c3c;
            color: white;
            border-radius: 50%;
            width: 20px;
            height: 20px;
            font-size: 0.8rem;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .user-menu {
            position: relative;
        }

        .dropdown-content {
            display: none;
            position: absolute;
            right: 0;
            background: white;
            min-width: 200px;
            box-shadow: 0 8px 16px rgba(0,0,0,0.2);
            z-index: 1;
            border-radius: 5px;
            overflow: hidden;
        }

        .dropdown-content a, .dropdown-content span {
            color: #333;
            padding: 12px 16px;
            text-decoration: none;
            display: block;
            border-bottom: 1px solid #eee;
        }

        .dropdown-content a:hover {
            background-color: #f1f1f1;
        }

        .user-menu:hover .dropdown-content {
            display: block;
        }

        /* Hero Section con Carousel */
        .hero {
            margin-bottom: 50px;
        }

        .carousel {
            position: relative;
            width: 100%;
            height: 500px;
            overflow: hidden;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }

        .carousel-inner {
            display: flex;
            transition: transform 0.5s ease;
            height: 100%;
        }

        .carousel-slide {
            min-width: 100%;
            height: 100%;
            background-size: cover;
            background-position: center;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
        }

        .carousel-control {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(0,0,0,0.5);
            color: white;
            border: none;
            padding: 15px;
            cursor: pointer;
            font-size: 18px;
            border-radius: 50%;
            width: 50px;
            height: 50px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .carousel-control.prev {
            left: 20px;
        }

        .carousel-control.next {
            right: 20px;
        }

        .carousel-control:hover {
            background: rgba(0,0,0,0.8);
        }

        /* Sección Ubícanos */
        .ubicacion-hero {
            background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('https://scontent.fjal3-1.fna.fbcdn.net/v/t39.30808-6/480949993_1082343157239973_2300995641216729783_n.jpg?_nc_cat=101&ccb=1-7&_nc_sid=cc71e4&_nc_ohc=iF-htdc5vKgQ7kNvwGgRgKv&_nc_oc=Adl9km5VzrB26ipgSyYbTp4pLv5ftMiYUUNMLNNLeqrunDZNzH8O3weIrdt938BcWIlAPd8IaHBgX_hugv2m-s5i&_nc_zt=23&_nc_ht=scontent.fjal3-1.fna&_nc_gid=5uJq9PknuboQsi749_3zPg&oh=00_AfcqUZQIEleHesJV2RInYhq_HoIC_cnynLO2BWQzsKY7gA&oe=69081709');
            background-size: cover;
          
            color: white;
            text-align: center;
            padding: 100px 20px;
            margin-bottom: 50px;
            border-radius: 10px;
        }

        .ubicacion-hero h1 {
            font-size: 2.8rem;
            margin-bottom: 20px;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
        }

        .ubicacion-hero p {
            font-size: 1.2rem;
            max-width: 700px;
            margin: 0 auto;
        }

        .ubicacion-section {
            padding: 60px 0;
            background-color: white;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            margin-bottom: 50px;
        }

        .section-title {
            text-align: center;
            margin-bottom: 40px;
            position: relative;
        }

        .section-title h2 {
            font-size: 2.2rem;
            color: #2c3e50;
            display: inline-block;
            padding-bottom: 10px;
        }

        .section-title h2:after {
            content: '';
            position: absolute;
            width: 80px;
            height: 4px;
            background: #e74c3c;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            border-radius: 2px;
        }

        .ubicacion-container {
            display: flex;
            flex-wrap: wrap;
            gap: 30px;
            align-items: stretch;
        }

        .mapa-container {
            flex: 1;
            min-width: 300px;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            height: 450px;
        }

        #map {
            width: 100%;
            height: 100%;
        }

        .info-container {
            flex: 1;
            min-width: 300px;
            background: #f8f9fa;
            padding: 30px;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }

        .info-item {
            display: flex;
            margin-bottom: 25px;
            align-items: flex-start;
        }

        .info-icon {
            background: #e74c3c;
            color: white;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 15px;
            flex-shrink: 0;
        }

        .info-text h3 {
            color: #2c3e50;
            margin-bottom: 5px;
            font-size: 1.2rem;
        }

        .info-text p {
            color: #555;
        }

        .horarios {
            margin-top: 30px;
            background: white;
            padding: 20px;
            border-radius: 8px;
            box-shadow: 0 3px 10px rgba(0,0,0,0.05);
        }

        .horarios h3 {
            color: #2c3e50;
            margin-bottom: 15px;
            border-bottom: 2px solid #eee;
            padding-bottom: 10px;
        }

        .horario-item {
            display: flex;
            justify-content: space-between;
            margin-bottom: 8px;
        }

        .horario-dias {
            font-weight: 500;
        }

        .horario-horas {
            color: #e74c3c;
            font-weight: 600;
        }

        /* Productos */
        .productos {
            padding: 60px 0;
        }

        .productos h2 {
            text-align: center;
            margin-bottom: 40px;
            font-size: 2.2rem;
            color: #2c3e50;
            position: relative;
        }

        .productos h2:after {
            content: '';
            position: absolute;
            width: 80px;
            height: 4px;
            background: #e74c3c;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            border-radius: 2px;
        }

        .filtros {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 10px;
            margin-bottom: 30px;
        }

        .filtro-btn {
            padding: 10px 20px;
            background: #f8f9fa;
            border: 2px solid #ddd;
            border-radius: 30px;
            cursor: pointer;
            transition: all 0.3s;
            font-weight: 500;
        }

        .filtro-btn.active, .filtro-btn:hover {
            background: #e74c3c;
            color: white;
            border-color: #e74c3c;
        }

        .busqueda {
            display: flex;
            justify-content: center;
            margin-bottom: 30px;
        }

        #buscar-input {
            padding: 12px 20px;
            border: 2px solid #ddd;
            border-radius: 30px 0 0 30px;
            width: 300px;
            outline: none;
        }

        #buscar-btn {
            padding: 12px 20px;
            background: #e74c3c;
            color: white;
            border: 2px solid #e74c3c;
            border-radius: 0 30px 30px 0;
            cursor: pointer;
        }

        .productos-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 30px;
            margin-bottom: 40px;
        }

        .producto-card {
            background: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            transition: transform 0.3s, box-shadow 0.3s;
            cursor: pointer;
        }

        .producto-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0,0,0,0.1);
        }

        .producto-img-container {
            height: 200px;
            overflow: hidden;
        }

        .producto-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s;
        }

        .producto-card:hover .producto-img {
            transform: scale(1.05);
        }

        .producto-info {
            padding: 20px;
        }

        .producto-info h3 {
            margin-bottom: 10px;
            color: #2c3e50;
        }

        .producto-descripcion {
            color: #666;
            font-size: 0.9rem;
            margin-bottom: 10px;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        .producto-precio {
            font-size: 1.2rem;
            font-weight: bold;
            color: #e74c3c;
            margin-bottom: 15px;
        }

        .producto-oferta {
            background: #e74c3c;
            color: white;
            padding: 3px 8px;
            border-radius: 5px;
            font-size: 0.8rem;
            display: inline-block;
            margin-bottom: 10px;
        }

        .producto-stock {
            font-size: 0.8rem;
            margin-bottom: 10px;
        }

        .stock-disponible {
            color: #27ae60;
        }

        .stock-agotado {
            color: #e74c3c;
        }

        .add-to-cart {
            width: 100%;
            padding: 10px;
            background: #2c3e50;
            color: white;
            border: none;
            border-radius: 5px;
            cursor: pointer;
            transition: background 0.3s;
        }

        .add-to-cart:hover {
            background: #e74c3c;
        }

        .add-to-cart:disabled {
            background: #bdc3c7;
            cursor: not-allowed;
        }

        .loading {
            text-align: center;
            padding: 20px;
            font-size: 1.2rem;
            color: #666;
        }

        /* Modal Producto */
        .producto-modal-content {
            max-width: 800px;
            display: flex;
            gap: 30px;
        }

        .producto-modal-img {
            flex: 1;
            border-radius: 10px;
            overflow: hidden;
        }

        .producto-modal-img img {
            width: 100%;
            height: 300px;
            object-fit: cover;
        }

        .producto-modal-info {
            flex: 1;
        }

        .producto-modal-info h2 {
            color: #2c3e50;
            margin-bottom: 15px;
        }

        .producto-modal-descripcion {
            color: #666;
            margin-bottom: 20px;
            line-height: 1.6;
        }

        .producto-modal-precio {
            font-size: 1.5rem;
            font-weight: bold;
            color: #e74c3c;
            margin-bottom: 20px;
        }

        .cantidad-controls {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-bottom: 20px;
        }

        .cantidad-controls button {
            background: #2c3e50;
            color: white;
            border: none;
            width: 30px;
            height: 30px;
            border-radius: 50%;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .cantidad-controls span {
            font-size: 1.2rem;
            font-weight: bold;
            min-width: 30px;
            text-align: center;
        }

        /* Modal Carrito */
        .modal {
            display: none;
            position: fixed;
            z-index: 1000;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0,0,0,0.5);
        }

        .modal-content {
            background-color: white;
            margin: 5% auto;
            padding: 30px;
            border-radius: 10px;
            width: 80%;
            max-width: 600px;
            position: relative;
            max-height: 80vh;
            overflow-y: auto;
        }

        .close {
            position: absolute;
            right: 20px;
            top: 15px;
            font-size: 28px;
            font-weight: bold;
            cursor: pointer;
        }

        .carrito-item {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
            border-bottom: 1px solid #eee;
        }

        .carrito-item-info {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .carrito-item-info img {
            width: 60px;
            height: 60px;
            object-fit: cover;
            border-radius: 5px;
        }

        .carrito-item-controls {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .carrito-total {
            margin-top: 20px;
            padding-top: 20px;
            border-top: 2px solid #eee;
        }

        .carrito-total p {
            font-size: 1.2rem;
            font-weight: bold;
            margin-bottom: 15px;
        }

        .metodo-pago {
            margin-bottom: 15px;
        }

        #metodo-pago-select {
            padding: 8px;
            border-radius: 5px;
            border: 1px solid #ddd;
            width: 100%;
            margin-top: 5px;
        }

        #checkout-btn {
            width: 100%;
            padding: 12px;
            background: #e74c3c;
            color: white;
            border: none;
            border-radius: 5px;
            cursor: pointer;
            font-size: 1.1rem;
            transition: background 0.3s;
        }

        #checkout-btn:hover {
            background: #c0392b;
        }

        #checkout-btn:disabled {
            background: #bdc3c7;
            cursor: not-allowed;
        }

        /* Footer */
        footer {
            background: #2c3e50;
            color: white;
            padding: 30px 0;
            text-align: center;
        }

        .footer-content p {
            margin: 0;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .navbar {
                flex-direction: column;
                text-align: center;
            }
            
            .nav-links {
                margin-top: 15px;
                justify-content: center;
            }
            
            .nav-links li {
                margin: 0 10px;
            }
            
            .carousel {
                height: 300px;
            }
            
            .ubicacion-hero {
                padding: 60px 20px;
            }
            
            .ubicacion-hero h1 {
                font-size: 2.2rem;
            }
            
            .ubicacion-container {
                flex-direction: column;
            }
            
            .mapa-container, .info-container {
                width: 100%;
            }

            .producto-modal-content {
                flex-direction: column;
            }
        }
  /* Sección Redes Sociales Mejorada */
.redes-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 60px 0;
}

.redes-section .section-title {
    text-align: center;
    margin-bottom: 40px;
}

.redes-section .section-title h2 {
    color: #333;
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.redes-section .section-title p {
    color: #666;
    font-size: 1.1rem;
}

.redes-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.redes-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.redes-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.15);
}

.redes-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.redes-header i {
    font-size: 1.5rem;
}

.redes-header h3 {
    margin: 0;
    font-size: 1.3rem;
}

.facebook-card .redes-header {
    background: linear-gradient(135deg, #1877f2 0%, #0d5cb6 100%);
}

.instagram-card .redes-header {
    background: linear-gradient(135deg, #833ab4 0%, #fd1d1d 50%, #fcb045 100%);
}

.redes-embed {
    padding: 20px;
    min-height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.redes-link {
    display: block;
    background: #f8f9fa;
    color: #333;
    text-decoration: none;
    padding: 15px 20px;
    text-align: center;
    font-weight: 600;
    transition: background 0.3s ease;
}

.redes-link:hover {
    background: #e9ecef;
    color: #007bff;
}

.redes-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.redes-quick-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 25px;
    border-radius: 50px;
    text-decoration: none;
    color: white;
    font-weight: 600;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.redes-quick-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.redes-quick-link.whatsapp {
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
}

.redes-quick-link.phone {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.redes-quick-link.email {
    background: linear-gradient(135deg, #fd1d1d 0%, #833ab4 100%);
}

/* Responsive */
@media (max-width: 768px) {
    .redes-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .redes-section .section-title h2 {
        font-size: 2rem;
    }
    
    .redes-links {
        flex-direction: column;
        align-items: center;
    }
    
    .redes-quick-link {
        width: 200px;
        justify-content: center;
    }
}
