.wishlist-btn {
    z-index: 10;
    opacity: 1 !important;
    display: flex !important;
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

.wishlist-btn svg {
    width: 22px;
    height: 22px;
    fill: transparent;
    stroke: #fff;
    stroke-width: 2;
    transition: all 0.3s ease;
}

.wishlist-btn.active svg {
    fill: #ff3b3b;
    stroke: #ff3b3b;
}

.wishlist-btn:hover {
    background: rgba(0, 0, 0, 0.8);
    transform: scale(1.1);
    border-color: #ff3b3b;
}
