.wishlist-items-wrapper {
  max-height: calc(100vh - 541px);
  overflow-y: auto;
  padding: 0;
  margin: 0;
  list-style: none;
  color: #EDB86E;
}
#header-wishlist { position: relative; display: inline-block; }
#wishlist-indicator{
    display:none;
    position: absolute;
    top: 9px;
    right: 89px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: red;
    transform: translate(50%, -50%);
    z-index: 2;
}

#wishlist-items {
  border-top: 1px solid transparent;
  border-bottom: 1px solid transparent;
  border-image: linear-gradient(270deg, #050607, #BA9056 50%, #151517);
  border-image-slice: 1;
}

#wishlist-items .wishlist-item>.wishlist-link {
  display: flex;
  align-items: center;
  padding: 10px 60px;
  border-bottom: 1px solid transparent;
  border-image: linear-gradient(270deg, #050607, #BA9056 50%, #151517);
  border-image-slice: 1;
  transform: translateY(20px);
  transition: all 0.4s ease-out;
}

.wishlist-item.appear {
  opacity: 1;
  transform: translateY(0);
}

.wishlist-img img {
  margin-right: 12px;
  width: 60px;
  height: auto;
}

.wishlist-content {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.wishlist-name {
  flex: 1;
  color: #EDB86E;
  text-align: left;
  font-size: 13px;
}

.wishlist-name a {
  color: #f0c578;
}

.wishlist-name a:hover {
  color: #f0c578;
}

.wishlist-actions {
  display: flex;
  gap: 10px;
  margin-top: 5px;
}

.wishlist-actions button {
  background: transparent;
  border: 1px solid transparent;
  color: #BA9056;
  font-weight: bold;
  padding: 6px 12px;
  font-size: 13px;
  cursor: pointer;
  border-radius: 5px;
  background: linear-gradient(181deg, rgba(4, 4, 5, 0.1), rgba(191, 193, 197, 0.1) 44.63%, rgba(18, 19, 20, 0.1));
  border-image: linear-gradient(270deg, #050607, #BA9056 50%, #151517);
  border-image-slice: 1;
  transition: background 0.3s ease, color 0.3s ease;
}

.wishlist-actions button:hover {
  background: linear-gradient(337deg, rgba(4, 4, 5, 0.1), rgba(191, 193, 197, 0.1), rgba(18, 19, 20, 0.1));
  color: #f0c578;
}

/* Scrollbar personalizat (opțional) */
.wishlist-items-wrapper::-webkit-scrollbar {
  width: 6px;
}

.wishlist-items-wrapper::-webkit-scrollbar-thumb {
  background-color: #BA9056;
  border-radius: 4px;
}

@media screen and (max-width: 768px) {

  .wishlist-items-wrapper {
    max-height: calc(100vh - 180px);

  }

  #wishlist-items .wishlist-item>.wishlist-link {
    padding: 5px;
  }

  .wishlist-name {
    font-size: 8px;
  }

  .wishlist-actions button {
    padding: 5px 5px;
    font-size: 9px;
  }
  .wishlist-actions {
    margin-top: 0px;
}
#wishlist-indicator {
    top: 3px;
    right: 126px;
}
}