:root {
    --primary-color: #520e3c; 
    --bg-soft: #fdfbff;
}

.wishlist-section {
    background-color: #fff;
    min-height: 60vh;
}


.product-card {
    border: 1px solid #f1f1f1;
    border-radius: 15px;
    overflow: hidden;
    transition: 0.3s;
}

.btn-remove-wishlist {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 10;
    background: white;
    border: none;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    color: #999;
    transition: 0.3s;
}

.btn-remove-wishlist:hover {
    background: #ff4d4d;
    color: white;
}

.product-img-container {
    background-color: var(--bg-soft);
    padding: 20px;
    text-align: center;
}

.product-info {
    padding: 20px;
    text-align: center;
}

.product-title {
    font-size: 1rem;
    font-weight: 600;
    color: #1a202c;
}

.product-price {
    font-weight: 700;
    color: var(--primary-color);
    font-size: 1.1rem;
}

.btn-add-cart {
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 10px;
    border-radius: 10px;
    font-size: 0.9rem;
    font-weight: 600;
    transition: 0.3s;
}

.btn-add-cart:hover {
    background-color: #3d0a2d;
    transform: translateY(-2px);
}