body {
    margin: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f2f4f8;
    color: #333;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Estilos para el GIF de Navidad */
.navidad-gif {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /*z-index: -1; /* Detrás de todo el contenido */
    pointer-events: none; /* No interfiere con clics */
    overflow: hidden;
    margin: auto;
}

.navidad-gif img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.1; /* Ajusta la opacidad para que no distraiga */
    margin: auto;
}
.Bolas-navidad-gif {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: auto;
    /*z-index: -1; /* Detrás de todo el contenido */
    pointer-events: none; /* No interfiere con clics */
    overflow: hidden;
    margin: auto;
}
.Bolas-navidad-gif img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.5; /* Ajusta la opacidad para que no distraiga */
    margin: auto;
}

header {
    background: linear-gradient(to right, #fc9bdc, #ff5dbc);
    padding: 2rem;
    text-align: center;
    color: white;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
    width: 90%;
    margin: auto;
    margin-top: 2rem;

}

header h1 {
    margin: 0;
    font-size: 2.5rem;
    letter-spacing: 1px;
}

nav ul {
    list-style-type: none;
    padding: 0;
}

nav ul li {
    display: inline;
    margin:  10px;
}

nav ul li a {
    background: linear-gradient(145deg, #ff5dbc, #fc9bdc);
    border-radius: 10px;
    box-shadow: 5px 5px 10px #c43a7f,
                -5px -5px 10px #ff7fc1;
    color: white;
    cursor: pointer;
    font-weight: bold;
    padding: 0.4rem 0.8rem;
    text-decoration: none;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
    display: inline-block;
    align-items: relative;
    margin-top: 20px;
    /* height: 20px;
    width: 132px; */
    text-align:justify;

}

nav ul li a:hover {
    box-shadow: inset 5px 5px 10px #c43a7f,
                inset -5px -5px 10px #ff7fc1;
    transform: translateY(2px);
}

.menu {
    /* Cambiar para que el contenedor no limite el ancho */
    display: block;
    padding: 1rem 0;
    margin: 0;
    position: center;
    
}


.categoria-contenedor {
    width: 100%; /* Ocupa todo el ancho de la pantalla */
    background-color: #f9f9f9;
    padding: 1rem 2rem;
    margin-bottom: 2rem;
    box-sizing: border-box;
    display: center;
    justify-content: center;
    /* flex-wrap: wrap; */
    text-align: center;
    
}

.categoria-contenedor h1 {
    
    border-bottom: 2px solid #fc2bbd;
    color: #fc2bbd;
    font-size: 1.8rem;
    text-align: center;
}

.productos {
    background-color: rgb(255, 255, 255);
    border-radius: 20px;
    padding: 1.5rem;
    text-align: center;
    width: 320px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    display: inline-block;
    margin: 0.5rem;
    /* height: 400px; */
    align-items: center;
}

.productos button {
    background: linear-gradient(145deg, #ff5dbc, #fc9bdc);
    border: none;
    border-radius: 12px;
    box-shadow: 5px 5px 10px #c43a7f,
                -5px -5px 10px #ff7fc1;
    color: white;
    cursor: pointer;
    font-weight: bold;
    margin: 0.3rem 0.5rem;
    padding: 0.6rem 1.2rem;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
}

.productos button:hover {
    box-shadow: inset 5px 5px 10px #c43a7f,
                inset -5px -5px 10px #ff7fc1;
    transform: translateY(2px);
}

/* Hover effect for products */
.productos:hover {
    transform: translateY(-5px);
}

.productos img {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 10%;
    border: 4px solid #ffffff;
    margin-bottom: 1rem;
}

.productos h1 {
    margin: 0.5rem 0 0.2rem;
    color: #fc2bbd;
    font-size: 1.2rem;
}

.productos p {
    margin: 0.6rem 0;
    font-size: 0.95rem;
}

/* 📱 Diseño responsivo para pantallas pequeñas */
@media (max-width: 768px) {
    header h1 {
        font-size: 2rem;
        padding: 1.5rem;
    }

    .menu {
        gap: 2rem;
        padding: 2rem 1rem;
    }

    .productos {
        width: 90%;
        max-width: 340px;
    }
}

@media (max-width: 480px) {
    header h1 {
        font-size: 1.6rem;
    }

    nav ul {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        padding: 0;
        margin: 0;
    }

    nav ul li a {
        /* margin: 6px 10px; */
        padding: 0.3rem 0.6rem;
        display: flex;
        align-items: center;
        

    }

    .productos img {
        width: 100px;
        height: 100px;
    }

    .productos h1 {
        font-size: 1rem;
    }

    .productos p {
        font-size: 0.85rem;
    }
}

footer {
    background: linear-gradient(to right, #fc9bdc, #ff5dbc);
    border-radius: 10px 10px 50px 50px ;
    color: white;
    text-align: center;
    padding: 1rem;
    position: center;
    bottom: 10;
    width: 90%;
    margin: auto;
    margin-top: 2rem;
    
}

/* Added styles for centering container and logo image */

.container {
  display: grid;
  place-items: center; /* Center content horizontally and vertically */
  height: 100vh; /* Full viewport height */
  text-align: center;
}

.logo {
  display: center;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin-top: 20px
}

.logo-image {
  max-width: 80px;
  height: auto;
  align-items: center;
}

.logo-container {
    display: flex;
    justify-content: center; /* Centra horizontalmente */
    align-items: center; /* Centra verticalmente (si el contenedor tiene altura) */
    height: 100px; /* Ajusta la altura según sea necesario */
    
}
.logo-text {
    font-size: 1.5rem;
    color: #333;
    text-align: center;
    margin-top: 30px;
}

/* Estilos para el botón de ir al inicio */
#scrollToTopBtn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 100;
    background: linear-gradient(145deg, #ff5dbc, #fc9bdc);
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    color: white;
    font-size: 24px;
    cursor: pointer;
    box-shadow: 5px 5px 10px #c43a7f,
                -5px -5px 10px #ff7fc1;
    transition: all 0.3s ease;
}

#scrollToTopBtn:hover {
    box-shadow: inset 5px 5px 10px #c43a7f,
                inset -5px -5px 10px #ff7fc1;
    transform: translateY(-2px);
}

.map-section {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2rem 0;
    width: 100%;
}

.map-container {
    position: relative;
}

/* Estilos para el botón de contacto WhatsApp */
#whatsappBtn {
    position: fixed;
    bottom: 90px; /* 60px arriba del botón de ir al inicio */
    right: 30px;
    z-index: 101;
    background: linear-gradient(145deg, #25D366, #128C7E);
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    color: white;
    font-size: 24px;
    font-weight: bold;
    text-align: center;
    line-height: 50px;
    cursor: pointer;
    box-shadow: 5px 5px 10px #128C7E,
                -5px -5px 10px #25D366;
    transition: all 0.3s ease;
    text-decoration: none;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
}

#whatsappBtn:hover {
    box-shadow: inset 5px 5px 10px #128C7E,
                inset -5px -5px 10px #25D366;
    transform: translateY(-2px);
}

/* Estilos para el botón de carrito */
#cartBtn {
    position: fixed;
    bottom: 150px; /* Separado del botón WhatsApp */
    right: 30px;
    z-index: 101;
    background: linear-gradient(145deg, #ff6f61, #e65b50);
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    color: white;
    font-size: 24px;
    font-weight: bold;
    text-align: center;
    line-height: 50px;
    cursor: pointer;
    box-shadow: 5px 5px 10px #e65b50,
                -5px -5px 10px #ff6f61;
    transition: all 0.3s ease;
    display: flex;
    justify-content: center;
    align-items: center;
}

#cartBtn:hover {
    box-shadow: inset 5px 5px 10px #e65b50,
                inset -5px -5px 10px #ff6f61;
    transform: translateY(-2px);
}

#orderDetailsModal {
    background-color: white;
    border-radius: 20px;
    padding: 1.5rem;
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
    max-width: 500px;
    width: 90vw;
    max-height: 80vh;
    overflow-y: auto;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #333;
}

#orderDetailsModal button {
    background: linear-gradient(145deg, #25D366, #128C7E);
    border: none;
    border-radius: 12px;
    box-shadow: 5px 5px 10px #128C7E,
                -5px -5px 10px #25D366;
    color: white;
    cursor: pointer;
    font-weight: bold;
    margin: 0.3rem 0.5rem;
    padding: 0.6rem 1.2rem;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
}

#orderDetailsModal button:hover {
    box-shadow: inset 5px 5px 10px #128C7E,
                inset -5px -5px 10px #25D366;
    transform: translateY(2px);
}

#orderDetailsModal label {
    display: block;
    margin-bottom: 0.3rem;
    font-weight: 600;
}

#orderDetailsModal input[type="text"],
#orderDetailsModal textarea {
    width: 100%;
    padding: 0.5rem;
    margin-bottom: 1rem;
    border-radius: 8px;
    border: 1px solid #ccc;
    font-size: 1rem;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    box-sizing: border-box;
}

#orderDetailsModal textarea {
    resize: vertical;
}

#orderDetailsModal div {
    margin-bottom: 1rem;
}

#orderDetailsModal input[type="radio"] {
    margin-right: 0.3rem;
    vertical-align: middle;
}

#video-container {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem 0;
}

main {
    flex-grow: 1;
}


#section-galeria {

    background-color: var(--awb-color2); /* rgba(249,249,251,1) - Color muy claro */

    padding: var(--main_padding-top) var(--hundredp_padding) var(--main_padding-bottom);
    text-align: center; /* Centra el título */
    margin-top: 50px; /* Separación superior */
    margin-bottom: 50px; /* Separación inferior */
    margin: auto;
    width: 90%;
}
#section-galeria h2 {
    font-size: 2.5rem;
    color: var(--awb-color7); 
    margin-bottom: 40px; 
}
.gallery {
    display: grid;
   
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px; /* Espacio entre las imágenes (separación) */
    max-width: var(--site_width); /* Limita el ancho de la galería */
    margin: 0 auto; /* Centra el contenedor de la galería dentro de la sección */
}


.gallery img {
    
    display: block; 
    width: 100%;
    margin: auto;
    height: auto;
    object-fit: cover; 
    aspect-ratio: 1 / 1; 

    
    border-radius: 10px; 
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1); 
    cursor: pointer; 
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}


.gallery img:hover {
    transform: scale(1.05); /* Efecto de zoom sutil y moderno */
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2); /* Sombra más pronunciada al interactuar */
    z-index: 10; /* Asegura que la imagen en hover esté sobre las demás */
}

/* Estilos para la página de contacto */
#contacto-info, #redes-sociales, #horarios {
    background-color: #f9f9f9;
    padding: 2rem;
    margin: 2rem auto;
    max-width: 800px;
    border-radius: 20px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
    text-align: center;
}

#contacto-info h2, #redes-sociales h2, #horarios h2 {
    color: #fc2bbd;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.contact-container, .social-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 1rem;
}

.contact-item, .social-link {
    background-color: white;
    border-radius: 15px;
    padding: 1.5rem;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    text-decoration: none;
    color: #333;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 200px;
}

.contact-item:hover, .social-link:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0,0,0,0.2);
}

.contact-link {
    text-decoration: none;
    color: #fc2bbd;
    font-weight: bold;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.contact-link img {
    border-radius: 50%;
    border: 2px solid #fc2bbd;
}

.social-link img {
    border-radius: 10px;
    margin-bottom: 0.5rem;
}

#horarios {
    background: linear-gradient(to right, #fc9bdc, #ff5dbc);
    color: white;
    padding: 2rem;
    border-radius: 20px;
    margin: 2rem auto;
    max-width: 600px;
}

#horarios p {
    margin: 0.5rem 0;
    font-size: 1.1rem;
}
