/* Wishlist Styles */

/* Wishlist section */
.wishlist {
    padding: 40px 0 60px;
}

/* Wishlist button styles */
.wishlist-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.wishlist-btn:hover {
    background-color: #e0e0e0;
}

.wishlist-btn.in-wishlist {
    background-color: #ffebee;
}

.wishlist-btn.in-wishlist i {
    color: #e91e63;
}

.wishlist-btn i {
    font-size: 18px;
    color: #666;
    transition: color 0.3s ease;
}

/* Remove from wishlist button on wishlist page */
.remove-wishlist-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #ffebee;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.remove-wishlist-btn i {
    color: #e91e63;
}

.remove-wishlist-btn:hover {
    background-color: #ffcdd2;
}

/* Wishlist count */
.wishlist-count {
    margin-bottom: 20px;
    font-size: 16px;
    color: #666;
}

/* Notification style */
.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    padding: 15px 25px;
    background-color: #333;
    color: white;
    border-radius: 4px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    opacity: 0;
    transform: translateY(-20px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.notification.show {
    opacity: 1;
    transform: translateY(0);
}

/* Empty wishlist message */
.no-products {
    text-align: center;
    padding: 40px 0;
}

.no-products p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #666;
}

.no-products .btn-primary {
    display: inline-block;
    padding: 12px 24px;
    background-color: #4CAF50;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    transition: background-color 0.3s;
}

.no-products .btn-primary:hover {
    background-color: #3e8e41;
}

/* Wishlist page title */
.page-title {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #333;
}

/* Responsive styles */
@media (max-width: 768px) {
    .wishlist-count {
        font-size: 14px;
    }
    
    .notification {
        width: 80%;
        right: 10%;
        text-align: center;
    }
}
