.wishlist-show-more-wrapper {
  text-align: center;
  margin: 24px 0;
}

.wishlist-show-more-button {
	display: block;
	background-color: #FFFFFF;
	border-radius: 0;
	border: 1px solid #0B0A0A;
	padding: 14px 30px;
	font-weight: 600;
	cursor: pointer;
	transition: background-color 0.3s ease;
}

.wishlist-show-more-button:hover {
	background-color: #0B0A0A;
	color: #BAD9B5 !important;
}

.wishlist-show-more-button.loading {
  opacity: 0.7;
  cursor: not-allowed;
}

/* Add loading spinner */
.wishlist-show-more-button.loading:after {
  content: "";
  display: inline-block;
  width: 12px;
  height: 12px;
  margin-left: 10px;
  border: 2px solid #666;
  border-radius: 50%;
  border-top-color: transparent;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
