/*
 * FavoriteProducts Module for PrestaShop
 *
 * @author      Adilis
 * @copyright   2025 Adilis
 * @license     MIT
 */
.favorites-toast {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 9999;
  max-width: 350px;
  background-color: #fff;
  border: 1px solid #dcdcdc;
  transform: translateY(-50px);
  transition: all 0.3s ease-out;
  opacity: 0;
  overflow: hidden;
  padding: 20px;
}
.favorites-toast .favorites-toast-content {
  display: flex;
  flex-direction: column;
  text-align: center;
  font-size: 14px;
}
.favorites-toast .favorites-toast-content a {
  text-decoration: none;
  font-weight: bold;
}
.favorites-toast-visible {
  transform: translateY(0);
  opacity: 1;
}
.favorites-toast-error {
  background-color: #f8d7da;
  border-color: #f5c6cb;
  color: #721c24;
}
.favorites-toast-error .favorites-toast-close {
  color: white;
}

/*# sourceMappingURL=favorites.toast.css.map */
