body {
  padding-top: 90px;
  /* Ajusta esto según la altura de tu encabezado */
}

.popup {
  position: absolute;
  right: 0;
  width: 400px;
  background: white;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  padding: 20px;
  z-index: 1050;
  /* Para asegurarnos de que esté sobre otros elementos */
}

.profile-image {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  margin-bottom: 1rem;
}

.txt-lista-deseos {
  font-family: Inter;
  font-weight: 700 !important;
  font-size: 15px !important;
  color: #fff !important;
}

.tu-lista-deseos-vacia {
  color: #7D8697 !important;
  font-family: Inter;
  font-weight: 400 !important;
  font-size: 15px !important;
}


.txt-precio-unidad-car {
  font-family: Inter;
  font-weight: 700;
  font-size: 15px;
  line-height: 100%;
  letter-spacing: 0%;
  text-align: center;
  vertical-align: middle;
}

.txt-pre-uni-car {
  font-family: Inter;
  font-weight: 400;
  font-size: 12px;
  text-align: center;
  vertical-align: middle;

}

.txt-precio-mayor-car {
  font-family: Inter;
  font-weight: 700;
  font-size: 15px;
  line-height: 100%;
  letter-spacing: 0%;
  text-align: center;
  vertical-align: middle;
  color: #FA932C !important;
}

.txt-pre-may-car {
  font-family: Inter;
  font-weight: 400;
  font-size: 12px;
  text-align: center;
  vertical-align: middle;
  color: #FA932C !important;
}


.talla-carrito-box {
  padding: 5px;
  text-align: center;
  border: 1px solid #D9D9D9;
  margin-right: 5px;
  font-weight: 500;
  cursor: pointer;
  border-radius: 5px;
  color: #000000 !important;
}

#listaCarritoPopup {
  position: fixed;
  top: 90px;
  /* Ajusta esto según la altura de tu navbar fijo */
  right: 0;
  margin: 0 auto;
  /*  width: 100%;*/
  max-width: 400px;
  /* O el ancho que prefieras */
  z-index: 1050;
  /* Asegúrate de que el popup esté por encima de otros elementos */
  /*box-shadow: 0px -4px 6px rgba(204, 204, 204, 0.9);*/
  max-height: calc(100vh - 90px);
  /* Ajusta la altura máxima para que no exceda la altura de la pantalla */
  overflow: hidden;
  /* Para que no haya desbordamiento fuera del popup */
}

#div-busqueda {
  max-height: calc(50vh);
  overflow-y: auto;
}

#listaBusquedaPopup {
  position: fixed;
  top: 69px !important;
  /* O el ancho que prefieras */
  z-index: 1050;
  /* Asegúrate de que el popup esté por encima de otros elementos */
  max-height: calc(100vh - 69px);
  /* Ajusta la altura máxima para que no exceda la altura de la pantalla */
  overflow: hidden;
  /* Para que no haya desbordamiento fuera del popup */
}

#div-deseos {
  max-height: calc(100vh - 200px);
  /* Deja espacio para el encabezado y el pie del popup */
  overflow-y: auto;
  /* Habilita el scroll interno si el contenido es demasiado largo */
  padding-right: 10px;
  /* Si tienes barra de desplazamiento, asegúrate de no cortar el contenido */
}

#div-carrito {
  max-height: calc(100vh - 200px);
  /* Deja espacio para el encabezado y el pie del popup */
  overflow-y: auto;
  /* Habilita el scroll interno si el contenido es demasiado largo */
  padding-right: 10px;
  /* Si tienes barra de desplazamiento, asegúrate de no cortar el contenido */
}

#listaDeseosPopup {
  position: fixed;
  top: 90px;
  right: 0;
  margin: 0 auto;
  max-width: 400px;
  z-index: 1050;
  max-height: calc(100vh - 90px);
  /* Ajusta la altura máxima para que no exceda la altura de la pantalla */
  overflow: hidden;
  /* Para que no haya desbordamiento fuera del popup */
}

.color-box-popup-deseo {
  width: 20px;
  height: 20px;
  margin: 5px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-block;
}

#wishlistMessage,
#wishlistMessage2 {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #FF6584;
  color: #fff;
  font-family: Inter;
  font-weight: 700;
  font-size: 25px;
  line-height: 100%;
  letter-spacing: 0%;
  padding: 20px 25px;
  border-radius: 12px;
  z-index: 9999;
  text-align: center;
}

.titulo-productos {
  font-family: Odor Mean Chey;
  font-weight: 400;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: 0%;
  vertical-align: middle;
  color: #000;
}

.btn-hover-grow-libro {
  transition: transform 0.2s ease !important;
}

.btn-hover-grow-libro:hover {
  transform: scale(1.10) !important;
}

.btn-hover-grow {
  transition: transform 0.2s ease !important;
}

.btn-hover-grow:hover {
  transform: scale(1.20) !important;
  /* Expande en un 5% */
}

.div-item-busq-prod:hover {
  background-color: #f5e6ff;
  /* Un morado claro, puedes cambiarlo */
  transition: background-color 0.3s ease;
}

#txtBuscarProductos {
  box-shadow: none !important;
}

.offcanvas-width-70 {
  width: 70% !important;
}

.txt-iniciar-popup {
  font-family: Inter;
  font-weight: 400;
  font-style: Regular;
  font-size: 20px;
  line-height: 100%;
  letter-spacing: 0%;
  text-align: center;
  vertical-align: middle;
  color: #F237AC !important;
  background-color: #F5F5F5 !important;
  border-radius: 10px;
  border-color: #F5F5F5 !important;
}