/* HEADER */
.wishlist-header {
    font-size: 26px;
    font-weight: 700;
    padding: 20px;
    border-bottom: 1px solid #eee;
    margin-bottom: 20px;
  }
  
  /* ACTION BAR */
  .wishlist-actions {
    padding: 0 20px 20px;
  }
  
  .wishlist-actions button {
    background: #e74c3c;
    color: white;
    border: none;
    padding: 10px 18px;
    border-radius: 6px;
    cursor: pointer;
    opacity: .5;
  }
  
  .wishlist-actions button:enabled {
    opacity: 1;
  }
  
  /* TOP TOOLS INSIDE CARD */
  .wishlist-tools {
    position: absolute;
    top: 10px;
    left: 10px;
    display: flex;
    gap: 10px;
    z-index: 5;
  }
  
  .wishlist-tools input {
    width: 18px;
    height: 18px;
  }
  
  .remove-single {
    cursor: pointer;
    font-size: 18px;
    color: #333;
  }
  