.wishlist-container {
  position: relative;
  display: inline-block;

  .wishlist-btn {
    background: #ff4081;
    color: #fff;
    border: none;
    padding: 8px 14px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;

    &:hover {
      background: #e73370;
    }
  }

  .wishlist-overlay {
    position: absolute;
    min-width: 220px;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 12px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
    z-index: 1000;

    h4 {
      margin: 0 0 10px;
      font-size: 16px;
      border-bottom: 1px solid #eee;
      padding-bottom: 5px;
    }

    ul {
      margin: 0;
      padding: 0;
      list-style: none;

      li {
        padding: 6px 0;
        font-size: 14px;
        color: #333;
      }
    }
  }
}
