/* Contenedor del toast (verde tipo Woo notice) */
.dg-cart-toast {
  border-radius: 10px !important;
  padding: 12px 12px !important;
  background: #2f7d32 !important;
  color: #fff !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2) !important;

  width: min(460px, calc(100vw - 24px)) !important;

  /* ✅ interior inferior-izq */
  margin-left: 12px !important;
  margin-bottom: 12px !important;
}

/* Wrap interno */
.dg-cart-toast-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* Miniatura (izquierda) */
.dg-cart-toast-thumb {
  width: 54px;
  height: 54px;
  border-radius: 8px;
  overflow: hidden;
  flex: 0 0 54px;
  background: rgba(255, 255, 255, 0.15);
}
.dg-cart-toast-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Texto + link */
.dg-cart-toast-content {
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 0; /* para truncar bien */
}
.dg-cart-toast-text {
  color: #fff;
  font-size: 1rem;
  font-weight: normal;
  line-height: 1.25;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2; /* 2 líneas */
  -webkit-box-orient: vertical;
}

/* Link "Ver carrito" */
.dg-cart-toast-link {
  color: #fff !important;
  text-decoration: none !important;
  font-weight: 700;
  font-size: 0.8rem;
  width: fit-content;
}

/* Botón cerrar */
.dg-cart-toast .swal2-close {
  color: #fff !important;
  opacity: 0.9 !important;
  padding: 5px !important;
}

.dg-cart-toast .swal2-close:hover {
	background: #53c800 !important;
}

/* Mobile fine-tune */
@media (max-width: 480px) {
  .dg-cart-toast-thumb {
    width: 48px;
    height: 48px;
    flex-basis: 48px;
  }
}
