body {
    margin: 0;
    font-family: "Comic Neue";
    font-size:large;
    background-color: #C7B50E;
    
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}



header {
    background-color: #58a8ab;
    padding: 10px 20px;
}

.nav-container {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    top: 0;
    padding: 0 20px;
}

.logo img {
    width: 150px;
    height: auto;
    border-radius: 50%;
}
.nav-links {
    display: flex; /* Ocultar menú por defecto en móviles */
    justify-content: flex-start;
    flex-direction: column;
    background-color: none;
    position: fixed;
    top: 0px;
    right: 0;
    width: 170px;
    text-align: right;
    padding: 10px;
    border-radius: 5px;
    z-index: 1000;
    gap: 15px;
    right: o;
    
}

.nav-links a {
    color: white;
    padding: 10px;
    display: block;
    text-decoration: none;
}

.nav-links a:hover {
    background-color: none;
}



/* Mostrar el botón en pantallas pequeñas */
@media (max-width: 768px) {
    .nav-container {
        justify-content: space-between; /* Asegura que el botón esté a la izquierda y el menú a la derecha */
    }

    .nav-links {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 60px;
        right: 0;
        background-color: none;
        width: 200px;
        padding: 10px;
        text-align: right;
        border-radius: 5px;
        z-index: 9999;
        right: 10px;
    }

    .nav-links.show {
        display: flex;
    }


}

.comic-neue-light {
    font-family: "Comic Neue", cursive;
    font-weight: 300;
    font-style: normal;
  }


    
    .whatsapp-container {
        position: fixed;
        bottom: 20px;
        right: 20px;
        display: flex;
        align-items: center;
        gap: 10px;
    }

    /* Estilos del mensaje */
    .whatsapp-message {
        background-color: #25d366;
        color: white;
        padding: 10px 15px;
        border-radius: 15px;
        font-size: 14px;
        box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
        opacity: 0;
        transform: translateX(20px);
        transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
        white-space: nowrap;
    }

    /* Estilos del botón */
    .whatsapp-float {
        background-color: #25d366;
        color: white;
        width: 60px;
        height: 60px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 30px;
        text-decoration: none;
        box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
        transition: transform 0.3s ease-in-out;
        position: relative;
    }

    .whatsapp-float:hover {
        transform: scale(1.1);
    }

    /* Mostrar mensaje al pasar el mouse */
    .whatsapp-container:hover .whatsapp-message {
        opacity: 1;
        transform: translateX(0);
    }

    /* Ícono de WhatsApp */
    .whatsapp-icon {
        width: 40px;
        height: 40px;
    }

    aside {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
            padding: 20px;
        }
        .text-content, .image-content {
            flex: 1;
            min-width: 300px;
            padding: 10px;
        }
        .image-content img {
            max-width: 100%;
            height: auto;
            border-radius: 10px;
        }
        @media (max-width: 768px) {
            aside {
                flex-direction: column;
            }
        }

        .image-content img {
            max-width: 70%;  /* La imagen no será más grande que su contenedor */
            height: auto;  /* Mantiene la proporción de la imagen */
            border-radius: 10px; /* Bordes redondeados opcionales */
        }

        @keyframes slideIn {
            from {
                transform: translateX(-100%);
                opacity: 0;
            }
            to {
                transform: translateX(0);
                opacity: 1;
            }
        }
        
        .text-content p {
            animation: slideIn 1s ease-out; /* Duración y efecto de la animación */
        }
        
       
        .gallery {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 20px;
            padding: 20px;
            justify-items: center;
        }
        
        .gallery-item {
            text-align: center;
            background: #fff;
            padding: 10px;
            border-radius: 10px;
            box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
        }
        
        .gallery img {
            width: 100%;
            height: auto;
            max-width: 300px;
            border-radius: 10px;
            cursor: pointer;
            transition: transform 0.3s ease-in-out;
        }
        
        .gallery img:hover {
            transform: scale(1.05);
        }
        
        .buy-button {
            background-color: #D3676B;
            color: white;
            border: none;
            padding: 10px;
            cursor: pointer;
            font-size: 16px;
            border-radius: 5px;
            margin-top: 10px;
        }
        
        .buy-button:hover {
            background-color: #b1555a;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .quienes-somos {
            opacity: 0; /* Oculta el texto al inicio */
            animation: fadeInUp 1s ease-out forwards;
            text-align: center;
            font-size: 18px;
            max-width: 800px;
            margin: 20px auto;
            padding: 20px;
            background: rgba(255, 255, 255, 0.8);
            border-radius: 10px;
            box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
        }


        
        footer {
            background-color: #D3676B;
            color: white;
            text-align: center;
            padding: 20px 0;
            margin-top: 20px;
        }
        
        .footer-container {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 10px;
        }
        
        .social-media a {
            display: inline-block;
            margin: 0 10px;
        }
        
        .social-media img {
            width: 40px;
            height: 40px;
            transition: transform 0.3s ease-in-out;
        }
        
        .social-media img:hover {
            transform: scale(1.2);
        }
        
        .company-info p {
            margin: 5px 0;
        }
        
        .company-info a {
            color: white;
            text-decoration: none;
            font-weight: bold;
        }
        
        .company-info a:hover {
            text-decoration: underline;
        }
        
        @media (min-width: 768px) {
            .footer-container {
                flex-direction: row;
                justify-content: space-between;
                max-width: 800px;
                margin: auto;
            }
        }
        

        .quienes-somos img {
            width: 100%; /* Ajusta el ancho al 100% del contenedor */
            max-width: 400px; /* Tamaño máximo para evitar que sea muy grande */
            height: auto; /* Mantiene la proporción de la imagen */
            display: block;
            margin: 20px auto; /* Centra la imagen horizontalmente */
            border-radius: 10px; /* Bordes redondeados opcionales */
        }

        h3{


            font-size: 30px;
            justify-content: space-between;
            text-align: center;
            
        }

       

        #cart-count {
            background: red;
            color: white;
            border-radius: 50%;
            padding: 3px 7px;
            font-size: 14px;
            position: absolute;
            top: -5px;
            right: -10px;
        }

        .cart-item {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 15px;
            border-bottom: 1px solid #ddd;
            padding-bottom: 10px;
        }
        .cart-item img {
            width: 80px;
            height: 80px;
            margin-right: 15px;
            border-radius: 5px;
        }
        .remove-btn {
            background-color: red;
            color: white;
            border: none;
            padding: 5px 10px;
            cursor: pointer;
            border-radius: 5px;
        }
        .remove-btn:hover {
            background-color: darkred;
        }
    
    /*jjjjjjjjjjj*/

    .sidebar {
        width: 200px;
        background-color: #333;
        color: white;
        height: 100vh;
        padding-top: 20px;
        position: fixed;
    }
    .sidebar a {
        display: block;
        color: white;
        text-decoration: none;
        padding: 10px;
        border-bottom: 1px solid #444;
        text-align: center;
    }
    .sidebar a:hover {
        background-color: #555;
    }

    /* Estilos de la galería */
    .content {
        margin-left: 220px;
        padding: 20px;
        width: calc(100% - 220px);
    }
    .gallery {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }
    .gallery-item {
        width: 200px;
        border: 1px solid #ddd;
        border-radius: 10px;
        text-align: center;
        padding: 10px;
        box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
    }
    .gallery-item img {
        width: 100%;
        border-radius: 5px;
    }
    .buy-button {
        background-color: green;
        color: white;
        border: none;
        padding: 10px;
        cursor: pointer;
        border-radius: 5px;
    }
    .buy-button:hover {
        background-color: darkgreen;
    }

    #cart-items {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
        margin-top: 20px;
    }
    .cart-item {
        background: white;
        padding: 15px;
        border-radius: 10px;
        box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
        text-align: center;
        width: 220px;
        transition: transform 0.3s ease-in-out;
    }
    
    .cart-item:hover {
        transform: scale(1.05);
    }
    
    /* Imagen de producto */
    .cart-item img {
        width: 100%;
        border-radius: 10px;
    }
    
    /* Precio del producto */
    .cart-item p {
        font-size: 16px;
        font-weight: bold;
        margin: 10px 0;
    }
    
    /* Botones */
    button {
        padding: 10px 15px;
        border: none;
        border-radius: 5px;
        font-size: 16px;
        cursor: pointer;
        transition: background 0.3s ease-in-out;
    }
    
    /* Botón de eliminar */
    .remove-button {
        background: #ff4d4d;
        color: white;
        margin-top: 10px;
    }
    
    .remove-button:hover {
        background: #cc0000;
    }
    
    /* Botón de finalizar compra */
    #checkout-button {
        background: #28a745;
        color: white;
        font-size: 18px;
        margin-top: 20px;
        padding: 12px 20px;
        border-radius: 8px;
    }
    
    #checkout-button:hover {
        background: #218838;
    }
    
    /* Total del carrito */
    #total-price {
        font-size: 22px;
        font-weight: bold;
        color: #333;
        background: #ffdd57;
        display: inline-block;
        padding: 10px 15px;
        border-radius: 8px;
        margin-top: 20px;

    }

    .map-container {
        text-align: center;
        margin-top: 20px;
        font-family: "Comic Neue", cursive;
    }

    #map {
        width: 80%;
        height: 400px;
        margin: 0 auto;
        border-radius: 10px;
        box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
        font-family: "Comic Neue", cursive;
    }

    .map-title {
        font-size: 24px;
        font-weight: bold;
        margin-bottom: 10px;
        font-family: "Comic Neue", cursive;
        
    }
