.espacio {
  margin-left: 25px; /* Ajusta la cantidad de espacio según tus necesidades */
}


.descuento2 {
  text-decoration: underline;
  border-bottom: 1px solid black;
}

.descuento {
  text-decoration: line-through;
}


 /* display: none; /* añadido para ocultar las etiquetas */


/* Regla para ocultar etiquetas cuando la imagen tenga la clase "ampliado" */
.ampliado + .etiqueta-foto {
  display: none;
}

.producto:hover .etiqueta-foto {
  display: block; /* añadido para mostrar las etiquetas en el hover */
}

#enlace-actualizar {

  position: absolute;
  top: 19%;
  right: 15%;
  background-color: #c1862d;
  color: #fff;
  padding: 10px;
  border-radius: 5px;
  text-decoration: none;
  cursor: pointer;
  font-size: 0.95rem;
  margin-top: 1rem;
  padding: 0.5rem 1rem;
  transition: background-color 0.3s ease;
}

#enlace-actualizar:hover {
  background-color: #1b893c;
}
  
#enlace-bajar {
  z-index: 1;
  position: fixed;
  top: 20px;
  left: 90%;
  transform: translateX(-50%);
  background-color: #617f87;
  color: #fff;
  padding: 1px;
  border-radius: 5px;
  text-decoration: none;
}

.iconocarrito {
  width: 25px;
  height: 25px;
  margin-right: 1px;
  vertical-align: middle;
}

.etiqueta-foto {
  position: absolute;
  top: 10;
  left: 0;
}

.etiqueta-agotado {
  background-color: #7f2d1f; /* fondo rojo */
  color: #ffffff; /* texto blanco */
  font-size: 15px; /* tamaño de letra */
  padding: 5px; /* espacio interno */
  border-radius: 5px; /* borde redondeado */
  margin-left: 7px; /* margen a la izquierda */
}

.etiqueta-disponible {
  background-color: #a23290; /* fondo rojo */
  color: #ffffff; /* texto blanco */
  font-size: 13.5px; /* tamaño de letra */
  padding: 5px; /* espacio interno */
  border-radius: 5px; /* borde redondeado */
  margin-left: 7px; /* margen a la izquierda */
}

.etiqueta-nuevo {
  background-color: #ab8e0f; /* fondo rojo */
  color: #ffffff; /* texto blanco */
  font-size: 15px; /* tamaño de letra */
  padding: 5px; /* espacio interno */
  border-radius: 5px; /* borde redondeado */
  margin-left: 7px; /* margen a la izquierda */
}

.etiqueta-oferta {
  background-color: #ab5a0f; /* fondo rojo */
  color: #ffffff; /* texto blanco */
  font-size: 15px; /* tamaño de letra */
  padding: 5px; /* espacio interno */
  border-radius: 5px; /* borde redondeado */
  margin-left: 7px; /* margen a la izquierda */
}



#enlace-subir {
  position: fixed;
  bottom: 10px;
  right: 10px;
  background-color: #333;
  color: #fff;
  padding: 10px;
  border-radius: 5px;
  text-decoration: none;
}

/* Estilo de la página */


/* Estilo de los encabezados */



h1 {
  font-size: 3rem;
  margin-top: 2rem;
}

h2 {
  font-size: 2.5rem;
  margin-top: 2rem;
  color: #000000;
}

h3 {
  font-size: 1.5rem;
  margin-top: 2rem;
}

h4 {
  font-size: 2rem;
  margin-top: 2rem;
}

/* Estilo de los productos */

ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  }
  
  li {
  background-color: #282828;
  border-radius: 2px;
  box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
  margin: 1rem;
  padding: 1rem;
  width: 550px; /* Ancho de 300 píxeles */
  
  /* Estilos para flexbox */
  display: flex;
  flex-direction: row;
  align-items: center;
  }
  
  /* Estilo del carrito de compras */
  
  #carrito {
  margin-top: 1px;
  }
  
  /* Carrito de Compras */
  #carrito li {
  background-color: #bee9ff;
  border-radius: 1px;
  box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
  margin: 0.5rem;
  padding: 0rem;
  text-align: center;
  }
  
  /* Color de la cantidad y los meses en el carrito */
  #carrito li span {
  color: #2d2d2d;
  font-weight: bold;
  }
  
  /* Estilo para la imagen */
  li img {
  margin-right: 1rem;
  }
  
  /* Estilo para el texto */
  li p {
  margin-left: auto;
  }

/* Color del total de la compra */
#total {
  color: #373737;
  font-size: 1.5rem;
  font-weight: bold;
}

/* Estilo del botón de comprar y color inicial */

.btn-comprar {
  display: block;
  margin: 0 auto;
  background-color: #2596be;
  border: none;
  border-radius: 5px;
  color: #ffffff;
  cursor: pointer;
  font-size: 1rem;
  margin-top: 1rem;
  padding: 0.75rem 1.25rem;
  text-shadow: 1px 1px 2.5px rgba(0, 0, 0, 0.5);
  transition: background-color 0.3s ease;
}

/* Estilo del botón de comprar al pasar cursor */
.btn-comprar:hover {
  background-color: #0A779E;  
}

.cantidad {
  display: inline-block;
  margin: 0 0.5rem;
  font-weight: bold;
  color: #888;
}


/* Mensaje pendiente */
#mensaje {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 9999;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

#mensaje-texto {
  background-color: #fff;
  padding: 1rem;
  border-radius: 0.5rem;
  font-size: 1.5rem;
}

#mensaje.mostrar {
  opacity: 1;
}


/* Estilos para la imagen ampliada 
img.ampliada {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 80%;
  max-height: 80%;
} */

/* Estilos para el fondo oscuro */
div.fondo {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
}

/*   {}   */

picture {
  display: flex;
  justify-content: center;
  align-items: center;
}


.productos {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 0.5px;
  align-items: center;
  text-align: center;
  margin: 10px;
  flex-direction: row;
  justify-content: space-between;
}

.producto img {
  width: 70%;
  height: auto;
  object-fit: cover;
  align-items: center;
}

.imagen {
  width: 175;
  height: 175;
  object-fit: cover;
  border-radius: 5%;
}




/*
@media screen and (min-width: 768px) {
  .productos {
  grid-template-columns: repeat(3, 1fr);
  }
  .productos .producto {
  width: calc(85% - 5px); / Ajustar el ancho de los productos para reducir el tamaño del marco /
  margin: 10px; / Agregar margen alrededor de los productos para mantener la separación */
 /* }
  }
  
  @media screen and (min-width: 992px) {
    .productos {
      grid-template-columns: repeat(3, 1fr);
      }
      .productos .producto {
      width: calc(85% - 5px); / Ajustar el ancho de los productos para reducir el tamaño del marco /
      margin: 10px; / Agregar margen alrededor de los productos para mantener la separación */
    /*  }
    /*  } */





@media screen and (min-width: 768px) {
  .productos {
  grid-template-columns: repeat(4, 1fr); /* Mostrar 3 productos en computadoras */
  }
  .producto img {
    width: 45%;
    }
      .productos-precios {
    font-size: 0.75rem;
  }  
    .agregar-al-carrito {
      text-align: center;
    }
    .agregar-al-carrito1 {
      text-align: center;
    }
    #enlace-subir {
      font-size: 14px;
      padding: 10px 20px;
    }
    #enlace-actualizar {
      font-size: 15px;
      padding: 10px 20px;
    }

  }
  
  @media screen and (min-width: 992px) {
  .productos {
  grid-template-columns: repeat(5, 1fr); /* Mostrar 4 productos en pantallas más grandes */
  }
  .producto img {
    width: 55%;
    width: 125px;
    height: 125px;
    }
      .productos-texto-t {
    font-size: 1rem;
  }  
    .agregar-al-carrito {
      text-align: center;
    }
    .agregar-al-carrito1 {
      text-align: center;
    }
    #enlace-subir {
      font-size: 14px;
      padding: 10px 20px;
    }
    #enlace-actualizar {
      font-size: 14px;
      padding: 10px 20px;
    }
    #enlace-bajar {
      font-size: 15px;
      padding: 10px 20px;
    }
  }
  
  @media screen and (max-width: 767px) {
  .productos {
        grid-template-columns: repeat(2, 1fr);  /* Mostrar 2 productos en dispositivos móviles*/
  }
  .producto img {
    width: 125px;
    height: 125px;
    }
  .productostextos {
    font-size: 0.80rem;
  }  
  .productos-texto-t {
    font-size: 0.65rem;
  }  
  .productos-precios {
    font-size: 0.70rem;
  }
  .agregar-al-carrito {
    text-align: center;
  }
  .agregar-al-carrito1 {
    text-align: center;
  }
  #enlace-subir {
    font-size: 10px;
    padding: 10px 20px;
  }
  #enlace-actualizar {
    font-size: 10px;
    padding: 8px 16px;
    top: 19%;
    right: 7%;
  }
  #enlace-bajar {
    font-size: 10px;
    padding: 10px 20px;
  }
  
  .textocategoria {
  font-size: 12px;
}
}




.producto {
    position: relative;
    /* border: 0.5px solid #b77a19; */
    box-sizing: border-box;
    flex: 1 1 300px;
    margin: 5px;
    padding: 10px;
    gap: 0px;
    justify-content: center;
    background-color: white;
}


.productos-precios { 
  color: #000000;
}

.productostextos { 
  color: #000000;
}

.productos-texto-t { 
  color: #000000;  
}

/* Boton solo para    .boton-producto */
.boton-producto {
    background-color: #f0853b;
    border: none;
    border-radius: 55px;
    color: #ffffff;
    cursor: pointer;
    font-size: 0.65rem;
    margin-top: 0.10rem;
    padding: 0.5rem 0.5rem;
    transition: background-color 0.3s ease;
}

.boton-producto:hover {
  background-color: #0A779E;
}

/* Boton solo para    .boton-producto */
.boton-producto-ver {
    background-color: #25be8b;
    border: none;
    border-radius: 55px;
    color: #ffffff;
    cursor: pointer;
    font-size: 0.65rem;
    margin-top: 0.10rem;
    padding: 0.5rem 0.5rem;
    transition: background-color 0.3s ease;
}

.boton-producto-ver:hover {
  background-color: #0A779E;
}

.boton-producto-anuncio {
  background-color: #87c438;
  border: none;
  border-radius: 5px;
  color: #ffffff;
  cursor: pointer;
  font-size: 0.95rem;
  margin-top: 1rem;
  padding: 0.5rem 1rem;
  transition: background-color 0.3s ease;
}

.boton-producto-anuncio:hover {
  background-color: #965839;
}



.producto:hover {
  box-shadow: 0 0 10px 5px rgba(0, 0, 0, 0.3);   /* Cambia el color del borde al pasar el cursor sobre el producto */
  transition: box-shadow 0.3s ease;
}

.texto-derechos {
 text-align: center;
}



/* .producto {
  border: 1px solid transparent; Establece un borde transparente por defecto 
  transition: border-color 0.2s ease-in-out;  Agrega una transición suave al cambiar el color del borde 
/*}*/

/* .producto:hover {
  border-color: rgb(255, 0, 0); /* Cambia el color del borde al pasar el cursor sobre el producto */
/*}*/

.u-backlink span, .u-backlink .u-link:hover {
    text-decoration: none;
}
.u-backlink span {
    font-size: 0.8rem;
}
*, *:before, *:after {
    box-sizing: border-box;
}
.u-custom-color-1 a:hover, .u-body-color a:hover, .u-palette-1-base a:hover, .u-palette-1-dark-3 a:hover, .u-palette-1-dark-2 a:hover, .u-palette-1-dark-1 a:hover, .u-palette-1 a:hover, .u-palette-1-light-1 a:hover, .u-palette-2-base a:hover, .u-palette-2-dark-3 a:hover, .u-palette-2-dark-2 a:hover, .u-palette-2-dark-1 a:hover, .u-palette-2 a:hover, .u-palette-2-light-1 a:hover, .u-palette-3-dark-3 a:hover, .u-palette-3-dark-2 a:hover, .u-palette-3-dark-1 a:hover, .u-palette-4-base a:hover, .u-palette-4-dark-3 a:hover, .u-palette-4-dark-2 a:hover, .u-palette-4-dark-1 a:hover, .u-palette-5-dark-3 a:hover, .u-palette-5-dark-2 a:hover, .u-palette-5-dark-1 a:hover, .u-grey-40 a:hover, .u-grey-30 a:hover, .u-grey-90 a:hover, .u-grey-80 a:hover, .u-grey-75 a:hover, .u-black a:hover, .u-grey-70 a:hover, .u-grey-60 a:hover, .u-grey-50 a:hover, .u-grey-dark-3 a:hover, .u-grey-dark-2 a:hover, .u-grey-dark-1 a:hover, .u-grey a:hover {
    color: #a1a1a1;
}
.u-backlink .u-link {
    text-decoration: underline;
}
.u-link, .u-link:hover, .u-link:focus {
    text-decoration: none;
}
.u-custom-color-1 a, .u-body-color a, .u-palette-1-base a, .u-palette-1-dark-3 a, .u-palette-1-dark-2 a, .u-palette-1-dark-1 a, .u-palette-1 a, .u-palette-1-light-1 a, .u-palette-2-base a, .u-palette-2-dark-3 a, .u-palette-2-dark-2 a, .u-palette-2-dark-1 a, .u-palette-2 a, .u-palette-2-light-1 a, .u-palette-3-dark-3 a, .u-palette-3-dark-2 a, .u-palette-3-dark-1 a, .u-palette-4-base a, .u-palette-4-dark-3 a, .u-palette-4-dark-2 a, .u-palette-4-dark-1 a, .u-palette-5-dark-3 a, .u-palette-5-dark-2 a, .u-palette-5-dark-1 a, .u-grey-40 a, .u-grey-30 a, .u-grey-90 a, .u-grey-80 a, .u-grey-75 a, .u-black a, .u-grey-70 a, .u-grey-60 a, .u-grey-50 a, .u-grey-dark-3 a, .u-grey-dark-2 a, .u-grey-dark-1 a, .u-grey a, .u-shading a, .u-overlap-contrast .u-header a:not(.u-nav-link):not(.u-btn) {
    color: #adcce9;
}
.u-overlap.u-overlap-transparent:not(.u-overlap-contrast) .u-header :not(.u-nav-item) > a:hover, .u-gradient > .u-container-layout > a:hover, .u-image:not(.u-shading) > .u-container-layout > a:hover, a:hover {
    color: #387cbd;
}
a:hover {
    color: #0676a4;
}
.u-link {
    display: table;
    border-style: solid;
    border-bottom-width: 0;
    white-space: nowrap;
    align-self: flex-start;
}
.u-overlap.u-overlap-transparent:not(.u-overlap-contrast) .u-header :not(.u-nav-item) > a, .u-gradient > .u-container-layout > a, .u-image:not(.u-shading) > .u-container-layout > a, a {
    color: #478ac9;
}
a {
    color: #2596be;
    text-decoration: none;
}
user agent stylesheet
a:-webkit-any-link {
    color: -webkit-link;
    cursor: pointer;
}
.u-grey-80, .u-body.u-grey-80, section.u-grey-80:before, .u-grey-80 > .u-container-layout:before, .u-grey-80 > .u-inner-container-layout:before, .u-grey-80.u-sidenav:before, .u-container-layout.u-container-layout.u-grey-80:before, .u-table-alt-grey-80 tr:nth-child(even) {
    color: #ffffff;
    background-color: #3d3c3c;
}
.u-backlink {
  position: relative;
  text-align: center;
  padding: 1em;
}
.u-custom-color-1 a, .u-body-color a, .u-palette-1-base a, .u-palette-1-dark-3 a, .u-palette-1-dark-2 a, .u-palette-1-dark-1 a, .u-palette-1 a, .u-palette-1-light-1 a, .u-palette-2-base a, .u-palette-2-dark-3 a, .u-palette-2-dark-2 a, .u-palette-2-dark-1 a, .u-palette-2 a, .u-palette-2-light-1 a, .u-palette-3-dark-3 a, .u-palette-3-dark-2 a, .u-palette-3-dark-1 a, .u-palette-4-base a, .u-palette-4-dark-3 a, .u-palette-4-dark-2 a, .u-palette-4-dark-1 a, .u-palette-5-dark-3 a, .u-palette-5-dark-2 a, .u-palette-5-dark-1 a, .u-grey-40 a, .u-grey-30 a, .u-grey-90 a, .u-grey-80 a, .u-grey-75 a, .u-black a, .u-grey-70 a, .u-grey-60 a, .u-grey-50 a, .u-grey-dark-3 a, .u-grey-dark-2 a, .u-grey-dark-1 a, .u-grey a, .u-shading a, .u-overlap-contrast .u-header a:not(.u-nav-link):not(.u-btn) {
  color: #0084ff;
}
custom-color-1 a, .u-body-color a, .u-palette-1-base a, .u-palette-1-dark-3 a, .u-palette-1-dark-2 a, .u-palette-1-dark-1 a, .u-palette-1 a, .u-palette-1-light-1 a, .u-palette-2-base a, .u-palette-2-dark-3 a, .u-palette-2-dark-2 a, .u-palette-2-dark-1 a, .u-palette-2 a, .u-palette-2-light-1 a, .u-palette-3-dark-3 a, .u-palette-3-dark-2 a, .u-palette-3-dark-1 a, .u-palette-4-base a, .u-palette-4-dark-3 a, .u-palette-4-dark-2 a, .u-palette-4-dark-1 a, .u-palette-5-dark-3 a, .u-palette-5-dark-2 a, .u-palette-5-dark-1 a, .u-grey-40 a, .u-grey-30 a, .u-grey-90 a, .u-grey-80 a, .u-grey-75 a, .u-black a, .u-grey-70 a, .u-grey-60 a, .u-grey-50 a, .u-grey-dark-3 a, .u-grey-dark-2 a, .u-grey-dark-1 a, .u-grey a, .u-shading a, .u-overlap-contrast .u-header a:not(.u-nav-link):not(.u-btn) {
    color: #4b88c0;
}
.u-backlink a, .u-backlink p {
    display: inline-block;
}

.u-link, a {
    border-top-width: 0;
    border-left-width: 0;
    border-right-width: 0;
}




.hastaabajo {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.imagen  {
  border: 1px solid #b77a19;
}

.descargar {
  margin: 0.05rem;
 
  text-align: center;
}

.boton-descarga {
  background-color: #40d745;
  border: none;
  border-radius: 25px;
  color: white;
  padding: 12px 24px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 25px;
  margin: 20px;
  cursor: pointer;
  transition: background-color 0.25s ease-out; /* Transición suave */
}

.boton-descarga:hover {
  background-color: #19851d; /* Nuevo color de fondo */
}

.anuncioicon{
  height: 17px; /* Establece la altura del icono en 16 píxeles */
  width: 17px; /* Establece el ancho del icono en 16 píxeles */
  justify-content: center;

}

#bod_categoria_id {
  padding: 10px;
  border-radius: 5px;
  border: none;
  background-color: #f2f2f2;
  font-size: 13px;
  color: #333;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url('https://cdn4.iconfinder.com/data/icons/ionicons/512/icon-ios7-arrow-down-512.png');
  background-repeat: no-repeat;
  background-position: right center;
  background-size: 20px;
  padding-right: 30px;
}



#bod_categoria_id option {
  padding: 7px 7px 7px 15px;
  font-size: 15px;
  color: #333;
  background-color: #fff;
  background-repeat: no-repeat;

}



.linea-blanca {
background-color: #a23290;
  padding: 2px;
  text-align: center;
  margin: 0px;
  margin-top: 20px;
}

.categoriaspag {
  display: flex;
  justify-content: center;
  align-items: center;
}

.textocategoria {
  color: white;
}

.bannerarriba {
  margin: 20px;
}