/* SIMPLE WISHLIST BUTTON STYLES */

.wishlist-btn, .wishlist-heart {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 100 !important;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.wishlist-btn:hover, .wishlist-heart:hover {
    background: white;
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.wishlist-btn i, .wishlist-heart i {
    font-size: 18px;
    color: #666;
    transition: all 0.3s ease;
}

.wishlist-btn:hover i, .wishlist-heart:hover i {
    color: #e74c3c;
}

.wishlist-btn.active, .wishlist-heart.active {
    background: rgba(231, 76, 60, 0.1);
    border: 2px solid #e74c3c;
}

.wishlist-btn.active i, .wishlist-heart.active i {
    color: #e74c3c !important;
}

/* Ensure product cards don't interfere */
.flipkart-card {
    position: relative;
}

.flipkart-card.wishlist-processed {
    cursor: pointer;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .wishlist-btn, .wishlist-heart {
        width: 36px;
        height: 36px;
    }
    
    .wishlist-btn i, .wishlist-heart i {
        font-size: 16px;
    }
}