.wishlist-section {
    padding: 2rem 0;
}
.wishlist-item {
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.2s;
    display: flex;
    align-items: center;
}
.wishlist-item:hover {
    transform: scale(1.02);
}
.wishlist-image {
    width: 200px;
    height: 200px;
    object-fit: cover;
}
.wishlist-item-body {
    padding: 1rem;
    flex: 1;
}
.price {
    font-weight: 500;
    color: #333;
}
.discount-price {
    font-weight: 600;
    color: #28a745;
}
.sidebar {
    border: 1px solid #ddd;
    padding: 1rem;
    border-radius: 8px;
    position: sticky;
    top: 100px;
}
.btn-remove {
    color: #dc3545;
}