.wishlist-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #fff;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: all 0.3s ease;
}

/* On hover, add a small effect */
.wishlist-btn:hover {
    transform: scale(1.1);
}

/* Button styles when added to wishlist */
.wishlist-btn.btn-danger {
    background-color: #dc2626;
    color: white;
}

.wishlist-btn.btn-outline-danger {
    background-color: transparent;
    border: 2px solid #dc2626;
    color: #dc2626;
}
