*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
   
}
:root {
  --bg-light: #ffffff;
  --bg-dark: #1e1e1e;
  --text-light: #333333;
  --text-dark: #f5f5f5;
  --primary: #ff6b6b;
  --secondary: #ffe66d;
  --circle-bg: #e0e0e0;
  --circle-active: #ff6b6b;
}
body{
    font-family: raleway,roboto,arial;
}
.animated-section {
    opacity: 0; /* Inicialmente invisible */
    transform: translateY(20px); /* Desplazamiento hacia abajo */
    animation: fadeInUp 0.5s ease forwards; /* Duración y tipo de animación */
  }
  
  @keyframes fadeInUp {
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
.container{
    padding: 0px 80px;
}

/* Estilos para el Modal de eliminación */
        #modalEliminar {
            display: none; /* El modal está oculto por defecto */
            position: fixed; /* Asegura que el modal esté fijo en la pantalla */
            z-index: 1; /* Aparece sobre otros contenidos */
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            overflow: auto; /* Permite que se vea el contenido cuando el modal se expande */
            background-color: rgba(0, 0, 0, 0.4); /* Fondo semi-transparente */
            padding-top: 160px;
        }
        
        /* El contenido del modal de eliminación */
        .modal-contentEliminar {
            background-color: white;
            margin: auto; /* Asegura que el modal esté centrado */
            padding: 20px;
            border: 1px solid #888;
            width: 80%;
            max-width: 400px;
            border-radius: 8px; /* Esquinas redondeadas */
            position: relative; /* Permite que los elementos dentro del modal se ajusten correctamente */
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Agrega una sombra sutil para hacer que el modal se destaque */
            gap:20px
        }
        
        /* Botón de cierre (X) */
        .closeEliminar {
            color: #aaa;
            font-size: 28px;
            font-weight: bold;
            position: absolute;
            right: 10px;
            top: 10px;
            cursor: pointer;
        }
        
        .closeEliminar:hover,
        .closeEliminar:focus {
            color: black;
            text-decoration: none;
            cursor: pointer;
        }
        
        /* Estilo del fondo del modal */
        .modalEliminar .modal-contentEliminar {
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            align-items: center;
        }
        
        /* Botones dentro del modal */
        .modal-footer {
            display: flex;
            justify-content: space-between;
            width: 100%;
            gap: 10px;
        }
        
        /* Estilo de los botones del modal */
        .modal-footer button {
            padding: 10px 20px;
            border-radius: 5px;
            cursor: pointer;
        }
        
        /* Estilo para el botón de "Cancelar" */
        .btn-secondary {
            background-color: #6c757d;
            color: white;
        }
        
        /* Estilo para el botón de "Eliminar" */
        .btn-danger {
            background-color: #dc3545;
            color: white;
        }
        
        .btn-secondary:hover {
            background-color: #5a6268;
        }
        
        .btn-danger:hover {
            background-color: #c82333;
        }
.container-main{
    background-image: url("./assets/b3.jpg");
    width: 100%;
    height: 20vh;
    background-position: right;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
} 

#subir-imagen-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-width: 300px;
    margin: auto;
}

.social-links a {
    display: block;
    margin: 10px 0;
    text-decoration: none;
    padding: 10px 15px;
    border-radius: 5px;
    text-align: center;
    color: white;
    font-weight: bold;
}

.social-links a:hover {
    opacity: 0.9;
}

.share-icon{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 25px;
    height: 25px;
    border-radius: 25px;
    background-color: #8b123c;
    position: absolute;
    top: 5px;
    left: 3px;
    color: white;
    z-index: 100000;
}
.galeria-imagenes {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-top: 20px;
}

.galeria-imagenes img {
    max-width: 100%;
    height: auto;
    border: 1px solid #ddd;
    padding: 5px;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.1);
}


/* Estilos para la galería */
.gallery-container {
    display: flex;
    flex-wrap: wrap;
}

.gallery-item {
    margin: 10px;
}
.container-horarios {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 7px 20px;
    justify-content: center;
}
.container-horarios p{
    text-align: center;
}

.container-header-nav{
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%; 
    position: absolute;
    top: 0;
    left: 0;
    box-sizing: border-box; 
    transition: background 0.3s, padding 0.3s; 
    padding: 0px 80px;
    z-index: 100;
}
.container-header-nav div ul {
    display: flex;
    gap: 10px;
    margin-bottom: 0px;
}
.container-header-nav div ul li {
    display: flex;
    text-decoration: none;
    list-style: none;
    padding: 0px 10px;
    font-size: 18px;
}
.container-header-nav div ul li a {
    color: #dc3a72;
    text-decoration: none;
    font-weight: bold;
}
.container-header-nav div picture {
    width: 120px;
    height: 80px;
}
.container-header-nav div picture img{
    width: 100%;
    height: 80px;
}
.container-header-nav a:hover {
    text-decoration: underline; 
}
/* Estilos para el menú hamburguesa */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    height: 3px;
    width: 25px;
    background: #fff;
    margin: 4px;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(10px, -10px);
}
.scrolled {
    background: rgba(248,170,201,255); 
    padding: 5px 20px; 
    position: fixed;
}

/*===========Estilos para el hero 1===================*/

.hero{
    display: flex;
    align-items:center;
    justify-content: center;
    flex-direction: column;
    width: 100%;
}
.hero picture{
    margin-bottom: 20px;
}

.hero picture img{
    width: 100%;
}
.hero h1{
    text-transform: uppercase;
    font-weight: 800;
    color: #fff;
    font-size: 2rem;
    margin-top: -15px;
}
.hero p{
    font-weight:normal;
    color: #fff;
    font-size: 24px;
    margin: 20px 0px;
}
.hero button{
    padding: 7px;
    border-radius: 7px;
    background-color: #dc3a72;
    margin-top: 20px;
    border: none;
    color: #4d4545;
    font-weight: bold;
    width: 127px;
}
.hero button:hover{
    background-color: #92274d;
    color: #dadada;
}
.hero button:hover a {
    color: #dadada;
}
.hero button a{
    text-decoration: none;
    color: #fff;
}
/*===========fin del Estilos para el hero 1===================*/
/*===========Estilos para el about 1===================*/
/* Estilos para el mosaico en escritorio */

.about-container{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 40px;
}
.about-container p{
    font-size: 16px;
    margin-bottom: 20px;
    text-align: center;
}
#productos h2{
    color: #fff;
}
.about-container h2, section h2, #servicios h2{
    font-size: 36px;
    margin-bottom: 10px;
    font-weight: bold;
}
hr{
    height: 7px;
    width: 180px;
    background-color: #cf2e2e;
    border: none;

}
.container-info-about{
    display: flex;
    gap: 30px;
}
.container-info-text{
    font-size: 24px;
    color:"#828281";
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    flex: 1;
}
.gallery {
    display: grid;
    /*grid-template-columns: 1fr 1fr;*/
    grid-template-rows: auto auto;
    gap: 10px;
    flex: 1;
}

.gallery-item {
    overflow: hidden;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}
.about-container p span{
    font-size: 36px;
    color: #92274d;
}
.about-container p span strong{
  text-transform: capitalize;
  font-style: italic;
}
.container-info-text picture img{
    width: 350px;
}
/*===========fin de Estilos para el about 1===================*/
/*===========Estilos para las categorias 1===================*/

.logos-Container{
    width: 100%;
    height: 150px;
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: -40px;
    z-index: 1000;
    margin-bottom: 30px;
}
.logos-Container picture{
    width: 100%;
    display: flex;
    justify-content: space-evenly;
    gap: 20px;
    flex-wrap: nowrap;
    overflow-x: hidden;

}
.logos-Container picture img{
    width: 180px;
    height: auto;
    border-radius: 8px;
    box-shadow: 3px 3px 3px #cec8c8;
}
#categorias {
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.categoria-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 10px;
  }
.categoria-boton {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    border: none;
    border-radius: 50%;
    background-color: #f0f0f0;
    margin: 10px;
    cursor: pointer;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s;
    padding: 10px;
  }
  
  .categoria-boton:hover {
    background-color: #e0e0e0;
  }
  #productos-container{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .categoria-icono {
    width: 60px;
    height: 60px;
    border-Radius: 100%;
  }
  
  .categoria-nombre {
    font-size: 14px;
    text-align: center;
    margin-top: 5px;
    font-weight: bold;
  }
  
.container-categorias-items{
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 30px;
    justify-content: center;
  
}
#categorias button {
    background-color: #d63384;
    color: #fff;
    border: none;
    cursor: pointer;
    padding: 10px;
    margin: 5px;
    border-radius: 55px;
    
}

#categorias button:hover {
    background-color: #043612;
}

#productos {
    background-image: url("./assets/bg-3.jpg");
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    flex-direction: column;
    align-items: center;
    padding: 20px 0px;
    background-repeat: no-repeat;
    background-size: cover;
    margin-bottom: 25px;

}
.categoria{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;

}
.opciones-container {
    background-color: #ffffff;
    padding: 10px;
    border-radius: 5px;
    margin-top: -10px;
  }
  
  .select-opciones {
    width: 100%;
    padding: 5px;
    margin-top: 5px;
    border: 1px solid #ccc;
    border-radius: 5px;
  }

  .texto-sobre-imagen {
    position: absolute;
    top: 15px;
    right: 12px;
    background-color: rgba(255, 0, 0, 0.7);
    color: white;
    padding: 5px;
    border-radius: 7px;
    font-weight: bold;
    z-index: 1;
}
.precio-descuento{
    display: flex;
    margin-left: 5px;
}
.precio-descuento p{
    font-size: 14px !important;
    font-style: italic;
    text-decoration: line-through !important;
    margin-bottom: 0px !important;
    margin-top: -25px !important;
    position: absolute;
    right: 164px;
 
}

.texto-sobre-imagen p {
    margin: 0;
    padding: 0px;
    color: white !important;
    margin-bottom: 0px !important;
}

.producto {
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 5px;
    padding: 10px;
    margin: 10px;
    width: 250px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.producto img {
    max-width: 100%;
    border-radius: 5px;
    min-height: 171px;
    object-fit: cover;
}

.cantidad-container{
    display: flex;
    align-items: center;
    justify-content: center;

}
.cantidad-container .btn-restar,
.cantidad-container .btn-sumar
{
    border-radius: 50%;
    padding: 5px 10px;

}
.cantidad-container input{
    width: 40px;
    text-align: center;
    border: none;
}
.add-container{
    width: 100%;
    display: flex;
    justify-content: space-evenly;
    gap: 15px;
    flex-direction: column;

}
.producto h3 {
    margin: 10px 0;
}

.producto p {
    color: #666;
    font-size: 0.9em;
    margin-bottom: 15px;
}

.producto input[type="number"]:nth-of-type(2) {
    width: 60px;
    padding: 5px;
    margin: 5px 0;
    border: 1px solid #ddd;
    border-radius: 5px;
    text-align: center;
}

.producto button {
    background-color:#92274d;
    color: #fff;
    border: none;
    cursor: pointer;
    padding: 10px;
    border-radius: 5px;
    width: 100%;
}

.producto button:disabled {
    background-color: #ccc;
    cursor: not-allowed;
}

.producto button:hover:enabled {
    background-color: #39990d;
}

#datos-cliente {
    margin: 20px 0;
}

#datos-cliente label {
    display: block;
    margin-bottom: 5px;
}

#datos-cliente input[type="text"],
#datos-cliente input[type="tel"],
#datos-cliente textarea {
    width: calc(100% - 22px);
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
}

#ver-carrito {
    background-color: #dc3a72;
    color: #fff;
    border: none;
    cursor: pointer;
    padding: 10px;
    border-radius: 25px;
    width: 100%;
    margin: 20px 0;
    position: fixed;
    right: 30px;
    bottom: 50px;
    width: 100px;
    z-index: 1000;
}

#carrito-contador {
    position: absolute;
    top: -10px;
    right: -10px;
    background-color: red;
    color: white;
    border-radius: 50%;
    padding: 5px 10px;
    font-size: 12px;
    font-weight: bold;
    display: none; /* Ocultar inicialmente si el carrito está vacío */
  }
  

#ver-carrito:hover {
    background-color: #92274d;
}
.carrito-panel {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1000;
}

.carrito-content {
    background-color: #dbd7d7;
    margin: 50px auto;
    padding: 20px;
    border-radius: 5px;
    width: 88%;
    max-width: 600px;
    position: relative;
    min-height: 420px;
    z-index: 1000000;
}

.carrito-content h2 {
    margin-top: 0;
    text-align: center;
    margin-bottom: 60px;
}

.carrito-content .close-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    cursor: pointer;
    font-size: 1.5em;
}
.producto button:hover{
    background-color: rgb(155, 145, 14) !important;
    transition: background-color 0.3s ease-in-out;
}
.container-info-product{
    width: 100%;
}

.producto  .input-as-p {
    border: none;
    background: none;
    padding: 0;
    font-size: 18px;
    font-family: inherit;
    color: inherit;
    font-weight: bold;
    width: 100px;
    display: inline-block; /* Para que se comporte como un texto en línea */
    cursor: default; /* Cursor por defecto para indicar que no es editable */
}
.input-as-p[readonly] {
    background-color: transparent;
}
.no-spin {
    -moz-appearance: textfield; /* Firefox */
    -webkit-appearance: none; /* Chrome, Safari, Edge */
    appearance: none;
}

.no-spin::-webkit-outer-spin-button,
.no-spin::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.no-spin::-moz-outer-spin-button,
.no-spin::-moz-inner-spin-button {
    display: none;
}

.container-price{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    position: relative;
    margin-bottom: 15px;
}
.container-price label{
    font-size: 14px;
    margin-left: -10px;
}

.precio-input {
    padding-right: 20px; /* Espacio para el signo de pesos */
}

/* Estilo para el signo de pesos */
.precio-simbolo {
    position: absolute;
    top: 50%;
    right: 215px; /* Ajusta el espacio del signo de pesos */
    transform: translateY(-50%);
    content: "₱"; /* Signo de pesos */
    font-weight: bold;
}
.seleccionada{
    background-color: #043612 !important;
}
.alerta {
    color: red !important;
    margin-top: 5px;
    text-align: center;
}
.toast-containerr {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}
.search-bar {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 20px 0px;
    width: 100%;
}

.search-bar input {
    width: 70%;
    padding: 10px;
    border: 2px solid #ccc;
    border-radius: 50px 0 0 50px; /* Borde redondeado en los lados izquierdos */
    font-size: 16px;
    outline: none;
}

.search-bar button {
    padding: 10px;
    border: 2px solid #ccc;
    border-left: none;
    background-color: #fff;
    cursor: pointer;
    border-radius: 0 50px 50px 0; /* Borde redondeado en los lados derechos */
}

.search-bar button img {
    width: 20px;
    height: 20px;
}

.search-bar button:hover {
    background-color: #f0f0f0; /* Cambia el fondo del botón al pasar el mouse */
}

.toast {
    background-color: #09831d !important;
    color: #fff !important;
    padding: 15px 20px !important;
    margin-top: 10px !important;
    border-radius: 5px !important;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1) !important;
    transition: opacity 0.5s ease;
}

.toast.show {
    opacity: 1;
}
.carrito-vacio{
    text-align: center;
    height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}
.imagen-carrito-vacio{
    width: 100%;
    height: 185px;
    object-fit: contain;
}
.carrito-panel:target {
    scroll-behavior: smooth;
    scroll-margin-top: 50px; 
}
.image-carrito-descripcion{
    width: 80px;
    border-radius: 15%;
}
.carrito-item{
    display: flex;
    align-items: center;
    justify-content: space-between;

}
.cantidad{
    display: flex;
    gap: 15px;
    align-items: center;
}
#carrito-items{
    display: flex;
    flex-direction: column;
    gap: 15px;
    justify-content: start;
    max-height: 430px;
    
    overflow-y: auto;
    padding: 10px;
}
.cantidad button{
    padding: 5px 7px;
}
.total{
    font-weight: bold;
    display: flex;
    text-align: end;
    align-self: end;
}

.container-send{
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 60px;

}
#nota {
    width: 50%;
    height: 100px;
    padding: 10px;
    font-size: 16px;
    border: none;
    border-radius: 8px;
    outline: none;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    resize: none;
}

/* Estilo para el placeholder */
#nota::placeholder {
    color: #aaa;
}

/* Para agregar una animación de enfoque */
#nota:focus {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}
.container-send .btn-Send {
    background-color: #00bb31;
    color: #fff;
    border: none;
    cursor: pointer;
    padding: 10px;
    border-radius: 5px;
}
.container-send .btn-Send:hover {
    background-color: #0d7428;
}
.toast-containerr {
    top: 17%;
    z-index: 100;
}
body.modal-open {
    overflow: hidden;
  }

  .expanded-image {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8); /* Semi-transparent dark background */
    z-index: 9999; /* Ensure the expanded image is on top */
    justify-content: center; /* Center horizontally */
    align-items: center; /* Center vertically */
    cursor: pointer; /* Change cursor when hovering */
}

.expanded-image img {
    max-width: 90%;
    max-height: 90%;
}

.close {
    position: absolute;
    top: 15px;
    right: 15px;
    color: #fff;
    font-size: 30px;
    cursor: pointer;
}
/*===========fin del catalago =================*/
/*===========video y galeria de promo==========*/
.video-container iframe {
    width: 100%;
  }

  /* Estilos generales */
.card {
    width: 300px;
    background: #fff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    overflow: hidden;
    text-align: center;
    padding: 15px;
    transition: transform 0.3s;
}

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

.image-container {
    position: relative;
    width: 100%;
    overflow: hidden;
}

/* Slider dentro de la card */
.slider {
    display: flex;
    transition: transform 0.3s ease-in-out;
}

.card-image {
    width: 100%;
    border-radius: 10px;
    display: none;
}

.card-image.active {
    display: block;
}

/* Botón */
.card-button {
    display: block;
    background: #007bff;
    color: white;
    padding: 10px;
    margin-top: 10px;
    text-decoration: none;
    border-radius: 5px;
    transition: background 0.3s;
}

.card-button:hover {
    background: #0056b3;
}

/* Overlay (Modal) */
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000000000000;
}

.hidden {
    display: none;
}

.overlay-content {
    position: relative;
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    max-width: 80%;
    text-align: center;
}

/* Slider en el modal */
.slider-overlay {
    position: relative;
}

.overlay-image {
    max-width: 100%;
    border-radius: 10px;
}

/* Botón de navegación */
.prev-btn, .next-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 10px;
    cursor: pointer;
}

.prev-btn { left: 10px; }
.next-btn { right: 10px; }

/* Botón cerrar */
.close-btn-image {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 24px;
    cursor: pointer;
    color: red;
}
.cards-container {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
    flex-direction: column;
    align-items: center;
}

#video-corporativo{
    padding: 50px;
    background-color: #aeaba161;
    margin-bottom: 10px;
}
.video-corporativo h2 {
    text-align: center;
    margin-bottom: 30px;
  }

  .promociones {
    text-align: center;
    margin-bottom: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;

  }
  .video-container{
    display: flex;
    width: 60%;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    z-index:10;
  }
  
  .container-picture {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 30px;
    width: 340px;
    margin: 20px auto;
  }

  .carousel-item img{
    object-fit: contain;

  }
  #player video{
    z-index:10;
}

/*===========fin video y galeria de promo==========*/
  /* Estilos footer */
  
  .footer {
    display: flex;
    justify-content: space-between;
    padding: 30px;
    background-color: #92274d;
    width: 100%;
  }
  
  .footer a {
    margin: 0 10px;
    text-decoration: none;
    color: #cccccc;
  }
  
  .footer a:hover {
    text-decoration: underline;
  }

  .social-media{
    width: 100%;
    display: contents;
  }
  .social-media a{
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
  }

  .site-map{
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .circular-menu {
    position: fixed;
    bottom: 50px;
    right: 1em;
  }
  
  .circular-menu .floating-btn {
    display: block;
    width: 3.5em;
    height: 3.5em;
    border-radius: 50%;
    background-color: hsl(4, 98%, 60%);
    box-shadow: 0 2px 5px 0 hsla(0, 0%, 0%, .26);  
    color: hsl(0, 0%, 100%);
    text-align: center;
    line-height: 3.9;
    cursor: pointer;
    outline: 0;
  }
  
  .circular-menu.active .floating-btn {
    box-shadow: inset 0 0 3px hsla(0, 0%, 0%, .3);
  }
  
  .circular-menu .floating-btn:active {
    box-shadow: 0 4px 8px 0 hsla(0, 0%, 0%, .4);
  }
  
  .circular-menu .floating-btn i {
    font-size: 1.3em;
    transition: transform .2s;  
  }
  
  .circular-menu.active .floating-btn i {
    transform: rotate(-45deg);
  }
  
  .circular-menu:after {
    display: block;
    content: ' ';
    width: 3.5em;
    height: 3.5em;
    border-radius: 50%;
    position: absolute;
    top: 0;
    right: 0;
    z-index: -2;
    background-color: hsl(4, 98%, 60%);
    transition: all .3s ease;
  }
  
  .circular-menu.active:after {
    transform: scale3d(5.5, 5.5, 1);
    transition-timing-function: cubic-bezier(.68, 1.55, .265, 1);
  }
  
  .circular-menu .items-wrapper {
    padding: 0;
    margin: 0;
  }
  
  .circular-menu .menu-item {
    position: absolute;
    top: .2em;
    right: .2em;
    z-index: -1;
    display: block;
    text-decoration: none;
    color: hsl(0, 0%, 100%);
    font-size: 1em;
    width: 3em;
    height: 3em;
    border-radius: 50%;
    text-align: center;
    line-height: 3;
    background-color: hsla(0,0%,0%,.1);
    transition: transform .3s ease, background .2s ease;
  }
  .circular-menu .menu-item a{
    margin-top: 15px;
  }
  .circular-menu a svg{
    vertical-align:baseline !important;
  }
  .circular-menu .menu-item:hover {
    background-color: hsla(0,0%,0%,.3);
  }
  
  .circular-menu.active .menu-item {
    transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.275);
  }
  
  .circular-menu.active .menu-item:nth-child(1) {
    transform: translate3d(1em,-7em,0);
  }
  
  .circular-menu.active .menu-item:nth-child(2) {
    transform: translate3d(-3.5em,-6.3em,0);
  }
  
  .circular-menu.active .menu-item:nth-child(3) {
    transform: translate3d(-6.5em,-3.2em,0);
  }
  
  .circular-menu.active .menu-item:nth-child(4) {
    transform: translate3d(-7em,1em,0);
  }
  
  /**
   * The other theme for this menu
   */
  
  .circular-menu.circular-menu-left {
    right: auto; 
    left: 1em;
  }
  
  .circular-menu.circular-menu-left .floating-btn {
    background-color: #feca02;
  }
  
  .circular-menu.circular-menu-left:after {
    background-color: #c49e05;
  }
  
  .circular-menu.circular-menu-left.active .floating-btn i {
    transform: rotate(90deg);
  }
  
  .circular-menu.circular-menu-left.active .menu-item:nth-child(1) {
    transform: translate3d(-1em,-7em,0);
  }
  
  .circular-menu.circular-menu-left.active .menu-item:nth-child(2) {
    transform: translate3d(3.5em,-6.3em,0);
  }
  
  .circular-menu.circular-menu-left.active .menu-item:nth-child(3) {
    transform: translate3d(6.5em,-3.2em,0);
  }
  
  .circular-menu.circular-menu-left.active .menu-item:nth-child(4) {
    transform: translate3d(7em,1em,0);
  }

  #servicios h2{
    display: inline;
    padding: 0px 20px;
    text-align: center;
}

.fidelidad-check {
    text-align: center;
    padding: 2rem;
  }
  .fidelidad-check input {
    padding: 0.5rem;
    font-size: 1rem;
  }
  .fidelidad-check button {
    padding: 0.5rem 1rem;
    margin-left: 10px;
  }
  .tarjeta-fidelidad {
    margin-top: 2rem;
    padding: 1rem;
    border: 2px solid #ccc;
    border-radius: 10px;
    display: inline-block;
    max-width: 400px;
    background: #fff;
  }
  .logo-fidelidad img {
    max-height: 80px;
    margin-bottom: 1rem;
  }
  .descripcion-premio {
    font-size: 1rem;
    color: #555;
    margin-bottom: 1rem;
  }
  .puntos-fidelidad {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 1rem;
  }
  .punto {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #eee;
  }
  .notificacion {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #4caf50;
    color: white;
    padding: 12px 16px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.3);
    z-index: 9999;
    font-size: 14px;
    opacity: 0.95;
    transition: opacity 0.3s ease;
}
.notificacion.error {
    background: #e53935;
}

.tarjeta-fidelidad {
  max-width: 350px;
  margin: auto;
  padding: 20px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  text-align: center;
  font-family: 'Arial', sans-serif;
}

.logo {
  width: 80px;
  margin-bottom: 20px;
}

.circulos {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin: 20px 0;
  flex-wrap: wrap;
}

.circulo {
  width: 40px;
  height: 40px;
  background-color: #e0e0e0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
}



.titulo {
  font-size: 18px;
  margin: 10px 0;
}

.descripcion {
  font-size: 14px;
  color: #555;
}

.cliente-nombre {
  margin-top: 25px;
  font-size: 16px;
  font-weight: bold;
}
/* Contenedor general */
.seccion-resenas {
  padding: 2rem;
  max-width: 800px;
  margin: auto;
  background: #fdfdfd;
  border-radius: 16px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.05);
}

/* Título */
.seccion-resenas h2 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  text-align: center;
}

/* Formularios y entradas de reseñas */
.glsr-container {
  font-family: inherit;
}

.glsr-form,
.glsr-review {
  border: 1px solid #ddd;
  border-radius: 12px;
  padding: 1rem;
  margin-bottom: 1.5rem;
  background: white;
}

/* Campos de formulario */
.glsr-form input,
.glsr-form textarea,
.glsr-form select {
  width: 100%;
  padding: 10px;
  border-radius: 8px;
  border: 1px solid #ccc;
  margin-bottom: 12px;
}

/* Estrellas responsivas */
.glsr-rating-stars svg {
  width: 1.5em !important;
  height: 1.5em !important;
}


/* Tarjeta principal */
.tarjeta-fidelidad {
  background: linear-gradient(145deg, var(--primary), var(--secondary));
  padding: 2rem;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  margin: 3rem auto;
  max-width: 600px;
  text-align: center;
  color: var(--text-light);
  font-family: 'Poppins', sans-serif;
  animation: fadeIn 1s ease;
  transition: background 0.4s ease, color 0.4s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  
}

/* Dark Mode */
@media (prefers-color-scheme: dark) {
  .tarjeta-fidelidad {
    background: linear-gradient(145deg, #333, #111);
    color: var(--text-dark);
  }
}

/* Logo */
.logo-tarjeta img {
  max-width: 100px;
  margin-bottom: 1rem;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Título */
.titulo-tarjeta {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

/* Descripción */
.descripcion-tarjeta {
  font-size: 1rem;
  margin-bottom: 1.5rem;
  line-height: 1.5;
}

/* Círculos de puntos */
.circulos {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
}

.circulo-wrapper {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: var(--circle-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: inset 0 0 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s;
}

.circulo-wrapper:hover {
  transform: scale(1.1);
}

.circulo {
  width: 32px;
  height: 32px;
  object-fit: cover;
  border-radius: 50%;
}

/* Círculo activo */
.circulo-activo {
  background-color: var(--circle-active);
  box-shadow: 0 0 10px var(--circle-active);
}

/* Animación entrada */
@keyframes fadeIn {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsivo */
@media (max-width: 480px) {
  .tarjeta-fidelidad {
    padding: 1.5rem 1rem;
  }

  .titulo-tarjeta {
    font-size: 24px;
    margin-top: 20px;
  }

  .circulo-wrapper {
    width: 40px;
    height: 40px;
  }

  .circulo {
    width: 28px;
    height: 28px;
  }
}
.form-busqueda {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

#telefono {
  padding: 0.5rem;
  border-radius: 8px;
  border: 1px solid #ccc;
  flex: 1;
}

button[type="submit"] {
  background-color: #2e7d32;
  color: white;
  border: none;
  padding: 0.6rem 1rem;
  border-radius: 8px;
  cursor: pointer;
}

.circulos {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  margin-top: 1rem;
}

.circulo-wrapper {
  width: 40px;
  height: 40px;
}

.circulo {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.circulo.vacio {
  background-color: #e0e0e0;
  border-radius: 50%;
  border: 2px dashed #aaa;
  width: 100%;
  height: 100%;
}

.mensaje-bienvenida {
  text-align: center;
  font-weight: bold;
  font-size: 1.1rem;
  margin-top: 1rem;
}

.no-encontrado {
  color: red;
  text-align: center;
  font-weight: bold;
  margin-top: 1rem;
}
.mensaje-ganador {
  font-weight: bold;
  animation: boom 0.8s ease-in-out infinite alternate;
}

@keyframes boom {
  from { transform: scale(1); }
  to { transform: scale(1.1); }
}
.tarjeta-fidelidad .contenedor{
  margin-bottom: 10px;
}
.tarjeta-fidelidad #form-busqueda-cliente{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
}



@media (max-width: 768px) {

    .container-header-nav{
        padding: 0px 20px;
        z-index: 1000;
    }
    .container-header-nav div ul {
        display: none;
        flex-direction: column;
        background: rgba(0, 0, 0, 0.8);
        position: absolute;
        top: 90px;
        right: 0;
        width: 40%;
        border-radius: 25px 0px 20px 0px;
        padding: 10px 15px;
    }

    .container-header-nav div ul.active {
        display: flex;
    }

    .hamburger {
        display: flex;
        padding-right: 15px;
    }
    .container{
        padding: 0px 20px;
    }
    .hero{
        width: 100%;
        align-items: center;
    }

    /*===========Estilos para el hero 1===================*/
    .hero h1{
        font-size: 16px;
    }
    .hero picture img{
       height: 160px;
    }
    #servicios h2{
        display: inline;
        padding: 0px 20px;
    }
    section h2, #servicios h2{
        font-size: 26px;
        text-align: center;
    }
    /*===========Estilos para el about 1===================*/
   
    .gallery {
        display: flex;
        overflow-x: scroll;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch; /* Desplazamiento suave en iOS */
        flex: content;
    }

    .gallery-item {
        flex: 0 0 auto;
        width: 100%;
        scroll-snap-align: start;
    }
    .container-info-about{
        flex-wrap: wrap;
    }

    /* ==============estilos del cátalogo =============== */
    .carrito-text-detalles{
        font-size: 14px;
    }
    .image-carrito-descripcion {
        width: 60px;
    }
    .carrito-item{
        gap: 15px;
    }
    .detalles h4{
        font-size: 18px;
    }
    .container-send{
        margin-top: -6px;
        flex-direction: column;
        gap: 10px;
    }
    #nota{
        width: 100%;
        height: 70px;
    }
    #carrito-items{
        justify-content: start;
        min-height: 232px;
        
    }
    .toast-containerr {
        top: 13%;
        opacity: 0.8;
        text-align: center;
      
    }
    .carrito-content{
        min-height: 620px;
    }
    .imagen-carrito-vacio {
        height: 163px;
        text-align: center;
      }
        /* ==============fin estilos del cátalogo =============== */

     /*=========== video y galeria de promo==========*/
     .container-header-nav ul {
        flex-direction: column;
        align-items: center;
      }
      
      .footer {
        flex-direction: column;
        align-items: center;
      }
      .social-media a{
        margin-bottom: 10px;
      }
      .video-container{
        width:100%;
   
      }
      
       
      /*=========== fin video y galeria de promo==========*/
      .producto {
        background-color: #fff;
        border: 1px solid #ddd;
        border-radius: 5px;
        padding: 10px;
        margin: 10px;
        width: 250px;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
        text-align: center;
        flex-direction: row;
        display: flex;
        width: 100%;
    }
  
        .producto img {
            max-width: 120px;
            border-radius: 5px;
            object-fit: cover;
      }
        .texto-sobre-imagen {
            position: absolute;
            top: -14px;
            right: 12px;
    }
        .container-info-product{
            display: flex;
            flex-direction: column;
            align-content: center;
            align-items: center;
            padding: 0px 2px;
    }
        .container-info-product h3{
            font-size: 18px;
            font-weight: bold;
        }
        .producto p{
            margin-bottom: 10px;
            font-size: 13px;
        }
        .container-price{
            justify-content: space-around;
            position: relative;
            width: 100%;
        }
        .precio-descuento{
            position: absolute;
            left: 28px;
            top: -14px;
        }
        .precio-descuento p{
            font-size: 14px !important;
            right: -61px;
             top: 28px;
        }
        .precio-simbolo {
            right: 300px;
        }
        .add-container button{
            width: 50%;
            padding: 7px;
            font-size: 14px;
        }
        .add-container{
            justify-content: space-between;
            flex-direction: row;
        }
          .seccion-resenas {
    padding: 1rem;
  }

  .glsr-form,
  .glsr-review {
    padding: 0.8rem;
  }
}

@media (max-width: 410px) {
    .container-price,
    .add-container{
        align-items: center;
    }
    .precio-input{
        text-align: center;
    }
    .add-container button,
    .select-opciones{
       font-size: 13px;
    }
    .producto .input-as-p{
        margin-left: -15px;
    }
    .cantidad-container{
        gap: 0px;
    }
    .precio-descuento p {
        font-size: 13px !important;
        right: -60px;
        width: 120px;
    }
}
@media (max-width: 370px) {
    .container-price,
    .add-container{
        flex-direction: column;
        gap: 5px;
    }
    .container-info-product h3{
        font-size: 16px;
    }
    .producto p{
        font-size: 14px;
    }
    .add-container button{
        width: 90%;
    }
    .precio-descuento p {
        font-size: 13px !important;
        top: 27px;
      right: -78px;
    }

}