@charset "UTF-8";
.wps-wishlist-btn {
  border: none;
  background: none;
  padding: 0;
  cursor: pointer;
  border-radius: 0;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-transform: uppercase;
  font-weight: 300;
}
.wps-wishlist-btn.loading {
  opacity: 0.7;
  pointer-events: none;
}

/* Grid Lista Megjelenés */
.wps-wishlist-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 20px;
}
.wps-wishlist-grid .remove-btn {
  position: absolute;
  right: 0;
  top: 0;
  z-index: 1;
  width: 45px;
  height: 45px;
  line-height: 45px;
  text-align: center;
  color: #555;
  background: rgba(255, 255, 255, 0.7);
  cursor: pointer;
}
.wps-wishlist-grid .remove-btn {
  transition: all 500ms;
}
.wps-wishlist-grid .remove-btn:hover {
  background: rgb(255, 255, 255);
}
.wps-wishlist-grid .remove-btn:hover i {
  transform: scale(1);
}
.wps-wishlist-grid .remove-btn.wps-removing {
  opacity: 0.5;
  pointer-events: none;
}

.wps-item-card {
  border: 1px solid #eee;
  padding: 15px;
  border-radius: 8px;
  background: #fff;
}

.wps-item-thumb img {
  max-width: 100%;
  height: auto;
  border-radius: 4px;
}

/*# sourceMappingURL=wps-style.css.map */
