/* === Toast UX: Producto añadido al carrito === */
#vedu-add-toast {
  position: fixed;
  right: 20px;
  bottom: 20px;
  max-width: 360px;
  width: calc(100% - 40px);
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  border-radius: 14px;
  padding: 14px;
  z-index: 999999 !important; /* 🔝 Siempre arriba */
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
  font-family: inherit;
}
#vedu-add-toast.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.vedu-toast__content {
  display: flex;
  align-items: center;
  gap: 10px;
}
.vedu-toast__icon {
  display: inline-flex;
  width: 28px;
  height: 28px;
  line-height: 28px;
  border-radius: 50%;
  background: #0b5; /* tu color de marca */
  color: #fff;
  font-weight: 700;
  justify-content: center;
  align-items: center;
  flex: 0 0 28px;
}
.vedu-toast__text {
  font-weight: 600;
  flex: 1;
}

.vedu-toast__actions {
  margin-top: 10px;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.vedu-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 8px 14px;
  font-weight: 600;
  border: 1px solid transparent;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}
.vedu-btn--cart {
  background: #0b5;
  color: #fff;
}
.vedu-btn--cart:hover {
  background: #094;
}
.vedu-btn--checkout {
  background: #0a7;
  color: #fff;
}
.vedu-btn--checkout:hover {
  background: #096;
}
.vedu-btn--ghost {
  background: #f7f7f7;
  color: #222;
  border: 1px solid #eaeaea;
}
.vedu-btn--ghost:hover {
  background: #eaeaea;
}
