.btn-wishlist-heart {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 5;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid #f0f0f0;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #D0121C;
    padding: 0;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.08);
    transition: all 0.2s ease;
    outline: none;
}

.btn-wishlist-heart:hover {
    background: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    transform: scale(1.08);
}

.btn-wishlist-heart i {
    font-size: 16px;
    line-height: 1;
    pointer-events: none;
}

.btn-wishlist-heart .fa-solid.fa-heart {
    display: none;
    color: #D0121C;
}

.btn-wishlist-heart .fa-regular.fa-heart {
    display: inline;
    color: #D0121C;
}

.btn-wishlist-heart.active .fa-solid.fa-heart {
    display: inline;
}

.btn-wishlist-heart.active .fa-regular.fa-heart {
    display: none;
}

.btn-wishlist-heart.active:hover .fa-solid.fa-heart {
    color: #a00e16;
}

.product-card {
    position: relative;
}

.wishlist-button {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid #f0f0f0;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    color: #D0121C;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.08);
    outline: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    padding: 0;
    transition: all 0.2s ease;
    z-index: 5;
}

.wishlist-button:hover {
    background: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    transform: scale(1.08);
}

.wishlist-button i {
    font-size: 16px;
    line-height: 1;
    pointer-events: none;
}

.wishlist-button .fa-solid.fa-heart {
    display: none;
    color: #D0121C;
}

.wishlist-button .fa-regular.fa-heart {
    display: inline;
    color: #D0121C;
}

.wishlist-button.active .fa-solid.fa-heart {
    display: inline;
}

.wishlist-button.active .fa-regular.fa-heart {
    display: none;
}

.wish-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 5;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid #f0f0f0;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #D0121C;
    padding: 0;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.08);
    transition: all 0.2s ease;
    outline: none;
}

.wish-btn:hover {
    background: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    transform: scale(1.08);
}

.wish-btn i {
    font-size: 16px;
    line-height: 1;
    pointer-events: none;
    color: #D0121C;
}

.wish-btn.active .fa-regular.fa-heart,
.wish-btn.active .fa-heart.fa-regular {
    display: none;
}

.wish-btn.active::after {
    content: "\f004";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 16px;
    color: #D0121C;
}

.out-of-stock-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 6;
    background: #dc3545;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    padding: 3px 9px;
    border-radius: 4px;
    letter-spacing: .3px;
    pointer-events: none;
    text-transform: uppercase;
}

.btn-out-of-stock {
    opacity: 0.55;
    cursor: not-allowed !important;
    pointer-events: none;
    background: #e9ecef !important;
    border-color: #ced4da !important;
    color: #6c757d !important;
    font-size: 11px;
    font-weight: 600;
    white-space: nowrap;
}

.carousel-urun-card,
.new-product-card {
    position: relative;
}

.empty-wishlist-message {
    text-align: center;
    padding: 3rem 1rem;
}

.empty-wishlist-message-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

#wishlist-container img.product-image {
    height: 200px !important;
    object-fit: contain;
    background: unset !important;
}

#wishlist-container .product-card .card-body {
    background: var(--color-background) !important;
}

#wishlist-container .product-card .card-footer {
    background: var(--color-background) !important;
}

    #wishlist-container .product-card .card-footer .add-to-cart-btn {
        padding: 0 !important;
    }
