.image-gallery {
  /* Opcional: Para centrar las imágenes y permitir scroll */
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 100px; /* Espacio entre las imágenes */
  padding: 10vh 0; /* Padding para asegurar que haya suficiente espacio para scroll */
}

.image-gallery-product{
  display: flex;
  flex-direction: column;
  align-items: center;
}

.container-payments .title{
  font-size: smaller;
  font-weight: 100;
  display: flex;
  justify-content: center;
  align-items: center;
}

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

.container-payments .payments img{
  margin: 0 5px;
}

.gallery-image {
  width: 300px; /* Tamaño base de tus imágenes */
  height: auto;
  transition: transform 0.3s ease-in-out; /* Transición suave para el zoom */
}

.gallery-image.zoomed {
  transform: scale(1.2); /* Efecto de zoom */
}

audio{
    width: 100%;
    height: 25px;
    margin: 10px 0;
}

.navbar-brand img{
  width: 60px;
}

/*CARRITO*/
.products-cart .item-cart img{
  width: 100%;
}

.controls-cart{
    position: sticky;
    bottom: -15px;
    background-color: #fff;
    height: 120px;
    padding: 20px;
}

.peqi-shipping {
  background-color: #f3f5f4;
  border-radius: 12px;
  max-width: 420px;
}

.peqi-shipping.icon-box {
  width: 48px;
  height: 48px;
  background-color: #dfe8e4;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.peqi-shipping.icon-box i {
  font-size: 20px;
  color: #1f2d2a;
}

.peqi-shipping .title {
  font-weight: 600;
  font-size: 16px;
  color: #1a1a1a;
}

.peqi-shipping .subtitle {
  font-size: 14px;
  color: #6c757d;
}

.peqi-shipping:hover {
  transform: translateY(-2px);
  transition: all 0.2s ease;
  box-shadow: 0 8px 20px rgba(0,0,0,0.05);
}

.peqi-cards{
  margin: 10px 0 30px 0px !important;
}

.peqi-cards .peqi-card {
  background: #f1f4f8;
  border-radius: 16px;
  transition: all 0.25s ease;
  cursor: pointer;
}

.peqi-cards .peqi-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.peqi-cards .peqi-card .icon-container {
  width: 44px;
  height: 44px;
  background: #e7f0ff;
  color: #2d6cdf;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

/* Variante verde (seguridad) */
.peqi-cards .peqi-card .icon-container .success {
  background: #e6f7ec;
  color: #28a745;
}

.peqi-cards .peqi-card .title {
  font-weight: 600;
  font-size: 1rem;
  color: #1f2d3d;
}

.peqi-cards .peqi-card .subtitle {
  font-size: 14px;
  color: #7a8a9a;
}

.fade-in {
  opacity: 0;
  transform: scale(0.9) translateY(20px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in.visible {
  opacity: 1;
  transform: scale(1) translateY(0);
}

.fade-in-delay{
  transition-delay: 0.1s;
}

.fade-in-delay:nth-child(2){
  transition-delay: 0.2s;
}

.fade-in-delay:nth-child(3){
  transition-delay: 0.3s;
}

/*.producto{
  transition: transform 0.4s ease-in-out, opacity 0.4s ease-in-out;
  transform: scale(0.95);
  opacity: 0;
}

.producto.visible{
  opacity: 1;
  transform: scale(1) translateY(0);
}*/

.peqi-popover-btn {
  position: absolute;
  top: 8px;
  right: 8px; /* 👈 cambio importante */
  z-index: 10;
  border: none;
  background: rgba(0,0,0,0.6);
  color: #fff;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(4px);
  transition: all 0.2s ease;
}

.peqi-popover-btn:hover {
  background: #000;
  transform: scale(1.1);
}

/* Popover más elegante */
.popover {
  border-radius: 10px;
  border: none;
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.popover-header {
  display: none;
}

.popover-body {
  font-size: 13px;
}


.fa-credit-card{
  color: white;
}

/*MEDIA QUERY*/
@media only screen and (min-width: 990px) {
  .mobile{
    display: none !important;
  }
}

@media only screen and (max-width: 990px) {
  .desktop{
    display: none !important;
  }
}

@media (max-width: 768px) {
  .peqi-popover-btn {
    width: 32px;
    height: 32px;
    font-size: 16px;
  }
}