.wishlist-trash {
  position: absolute;
  top: 14px;
  right: 18px;
  background: none;
  border: none;
  font-size: 1.4em;
  color: #bbb;
  cursor: pointer;
  z-index: 2;
  transition: color 0.2s, transform 0.15s;
  padding: 0;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.wishlist-trash:hover,
.wishlist-trash.active {
  color: #e53935;
  transform: scale(1.15);
}
.wishlist-trash:active {
  color: #b71c1c;
  transform: scale(0.95);
}

#wishlist-items {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: flex-start;
  align-items: stretch;
  padding: 32px 0 32px 0;
  position: relative;
}
#wishlist-items::-webkit-scrollbar {
  display: none;
}
.bestseller-product {
  flex: 1 1 320px;
  max-width: 320px;
  min-width: 260px;
  box-sizing: border-box;
}
@media (max-width: 1200px) {
  #wishlist-items {
    gap: 24px;
  }
  .bestseller-product {
    flex: 1 1 45%;
    max-width: 48%;
  }
}
@media (max-width: 700px) {
  #wishlist-items {
    gap: 16px;
    padding: 16px 0 16px 0;
  }
  .bestseller-product {
    flex: 1 1 100%;
    max-width: 100%;
  }
}
.wishlist-arrow, .wishlist-dots { display: none !important; }

.wishlist-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.95);
  border: 1.5px solid #000;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2em;
  cursor: pointer;
  z-index: 2;
  transition: background 0.2s, color 0.2s, border 0.2s, transform 0.12s;
  opacity: 0.92;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}
.wishlist-arrow.left { left: 0; }
.wishlist-arrow.right { right: 0; }
.wishlist-arrow:hover { background: #000; color: #FED61D; border: 1.5px solid #FED61D; }
.wishlist-arrow:active { transform: translateY(-50%) scale(0.92); }

.wishlist-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-top: 12px;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.wishlist-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #ddd;
  border: none;
  outline: none;
  transition: background 0.2s, transform 0.2s;
  cursor: pointer;
  box-shadow: 0 1px 3px rgba(0,0,0,0.04);
}
.wishlist-dot.active {
  background: #FED61D;
  transform: scale(1.25);
  border: 1.5px solid #000;
}
.wishlist-dot:active {
  transform: scale(0.8);
}

@media (max-width: 700px) {
  .wishlist-arrow {
    width: 36px;
    height: 36px;
    font-size: 1.5em;
  }
  .wishlist-dots {
    margin-top: 8px;
  }
}
