/*.popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(30, 30, 30, 0.8);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
  z-index: 9999;
}
*/
.popup-content {
  background: #fff;
  border-radius: 14px;
  display: flex;
  flex-direction: row;
  overflow: hidden;
  max-width: 1200px;
  width: 100%;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.25);
  position: relative;
}

.popup-left {
  flex: 1 1 50%;
}

.popup-left img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.popup-right {
  flex: 1 1 50%;
  padding: 30px 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}

.popup-right h2 {
  font-size: 26px;
  font-weight: bold;
  margin-bottom: 16px;
}

.popup-right .descuentos {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
  font-size: 15px;
}

.popup-right .descuentos li {
  margin-bottom: 8px;
}

.btn_seguir_comprando span.closeModal.boton_cerrar.btn.btn-primary  {
  background: #FFA300 !important;
  color: #fff;
  font-weight: bold;
  padding: 12px 20px;
  border-radius: 10px;
  text-decoration: none;
  transition: background 0.3s ease;
  display:block;
}

.popup-descuentos li {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
}

.popup-descuentos .icon {
  width: 24px;
  height: auto;
  flex-shrink: 0;
}

ul.popup-descuentos strong {
    font-weight: bold;
}

/* ? MOBILE (hasta 768px): layout vertical */
@media (max-width: 768px) {
  .popup-content {
    flex-direction: column;
    max-width: 90%;
  }

  .popup-left,
  .popup-right {
    flex: 1 1 100%;
  }

  .popup-right {
    padding: 20px;
  }
  .btn-descubrir {
    font-size: 10px !important;
   }
}

.rgModal .closeBtn.circle {
    top: 10px;
    right: 12px;
    display: block;
    width: 24px;
    height: 24px;
    overflow: hidden;
    background: #F1BDFB;
    border-radius: 50%;
}

.flecha-icono {
  width: 12px; /* ajusta según el tamaño deseado */
  height: auto;
  margin-left: 8px;
  vertical-align: middle;
}