.pixel-wishlist-button.wishlist-button-add {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.75rem;
  min-height: 2.75rem;
  border: 1px solid var(--pixel-green);
  border-radius: 999px;
  background: #fff;
  color: var(--pixel-green);
  cursor: pointer;
  transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.pixel-wishlist-button:disabled {
  cursor: wait;
  opacity: 0.65;
}

.pixel-wishlist-button .material-icons {
  color: inherit;
  font-size: 1.25rem;
  line-height: 1;
}

.pixel-wishlist-button.wishlist-button-add--active {
  border-color: var(--pixel-green);
  background: var(--pixel-green);
  color: #fff;
}

.pixel-wishlist-button .visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.product-miniature .pixel-wishlist-button.wishlist-button-add {
  opacity: 0;
  transform: translateY(-0.25rem);
  transition: opacity 0.2s ease, transform 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}

.product-miniature:hover .pixel-wishlist-button.wishlist-button-add,
.product-miniature:focus-within .pixel-wishlist-button.wishlist-button-add,
.product-miniature .pixel-wishlist-button.wishlist-button-add--active {
  opacity: 1;
  transform: translateY(0);
}

.pixel-wishlist-nav {
  position: relative;
}

.pixel-wishlist-nav__link {
  position: relative;
}

.pixel-wishlist-nav__badge {
  position: absolute;
  top: -0.35rem;
  right: -0.35rem;
  min-width: 1.1rem;
  height: 1.1rem;
  border-radius: 999px;
  /* background: #d72f55; */
  color: #fff;
  font-size: 0.7rem;
  line-height: 1.1rem;
  text-align: center;
  padding: 0 0.25rem;
}

.pixel-wishlist-page__loader,
.pixel-wishlist-page__empty {
  padding: 2rem 0;
  text-align: center;
}

.pixel-wishlist-page__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1.25rem;
}

.pixel-wishlist-page .product-miniature,
.pixel-wishlist-page .product-miniature__inner,
.pixel-wishlist-page .product-miniature__top,
.pixel-wishlist-page .product-miniature__image-link {
  height: unset;
  max-height: unset;
}

.pixel-wishlist-page .product-miniature {
  min-height: 0;
}

.pixel-wishlist-page .product-miniature__inner {
  transform: none;
  box-shadow: none;
}

.pixel-wishlist-page .product-miniature__inner:hover,
.pixel-wishlist-page .product-miniature__inner:has(*:focus-visible) {
  transform: none;
}

.pixel-wishlist-page .product-miniature__inner:hover .product-miniature__image,
.pixel-wishlist-page .product-miniature__image {
  transform: none;
}

.pixel-wishlist-page .product-miniature__inner:hover .product-miniature__image-container,
.pixel-wishlist-page .product-miniature__image-container {
  border-bottom: 0;
}

.pixel-wishlist-page .product-miniature__data-hover {
  max-height: 200px;
  opacity: 1;
  transform: translateY(0);
}

.pixel-wishlist-page .product-miniature__actions {
  margin-top: auto;
  grid-template-rows: 1fr;
}

.pixel-wishlist-page .product-miniature__prices {
  margin-bottom: 10px;
}

.pixel-wishlist-page .product-miniature__title {
  display: block;
  -webkit-line-clamp: unset;
  line-clamp: unset;
  text-overflow: clip;
  max-height: 84px;
  opacity: 0;
  visibility: hidden;
}

.pixel-wishlist-page .product-miniature__title--secondary {
  -webkit-line-clamp: unset;
  line-clamp: unset;
  text-overflow: clip;
  max-height: 100%;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  z-index: 1;
}

.pixel-wishlist-page .product-miniature__bottom {
  z-index: 3;
  border-end-start-radius: var(--bs-border-radius);
  border-end-end-radius: var(--bs-border-radius);
  box-shadow: none;
}

.pixel-wishlist-page .product-miniature__inner:hover .product-miniature__top,
.pixel-wishlist-page .product-miniature__inner:hover .product-miniature__bottom,
.pixel-wishlist-page .product-miniature__inner:has(*:focus-visible) {
  box-shadow: none;
}

.pixel-wishlist-product {
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 0.5rem;
  overflow: hidden;
  background: #fff;
}

.pixel-wishlist-product__image {
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1 / 1;
  background: #f7f7f7;
}

.pixel-wishlist-product__image img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.pixel-wishlist-product__content {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 0.75rem;
  padding: 1rem;
}

.pixel-wishlist-product__title {
  font-size: 1rem;
  margin: 0;
}

.pixel-wishlist-product__price {
  font-weight: 700;
  margin: auto 0 0;
}

.pixel-wishlist-product__remove {
  align-self: flex-start;
  border: 0;
  background: transparent;
  color: #d72f55;
  cursor: pointer;
  padding: 0;
  text-decoration: underline;
}

.pixel-wishlist-footer-links {
  margin-top: 1.5rem;
}
