/* Wishlist specific styles */
.wishlist-item {
    background: white;
    border-radius: 1rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    margin-bottom: 1rem;
    padding: 1.5rem;
}

.wishlist-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 15px -3px rgba(0, 0, 0, 0.1);
}

.wishlist-item .product-image {
    width: 120px;
    height: 120px;
    border-radius: 0.5rem;
    object-fit: cover;
}

.wishlist-item .product-title {
    color: #2d3748;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.wishlist-item .product-title:hover {
    color: #007bff;
}

.wishlist-item .product-price {
    font-size: 1.25rem;
    font-weight: 600;
    color: #38a169;
    margin-bottom: 1rem;
}

.wishlist-empty {
    text-align: center;
    padding: 3rem 1rem;
    background: rgba(0, 123, 255, 0.03);
    border-radius: 1rem;
    margin: 2rem 0;
}

.wishlist-empty i {
    font-size: 3rem;
    color: #007bff;
    margin-bottom: 1rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .wishlist-item {
        padding: 1rem;
    }
    
    .wishlist-item .product-image {
        width: 80px;
        height: 80px;
    }
    
    .wishlist-item .product-title {
        font-size: 1.1rem;
    }
    
    .wishlist-item .product-price {
        font-size: 1.1rem;
    }
}
