/**
 * Wishlist Styles (UI ONLY)
 * 
 * @package ChildTheme_Clean
 */

.wishlist-page {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 1rem;
}

.wishlist-page .page-title {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 2rem;
    color: #111827;
}

.wishlist-container {
    background: #fff;
    padding: 2rem;
    border-radius: 0.5rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.site-core-wishlist-btn {
    background-color: #3B82F6;
    color: #fff;
    padding: 0.5rem 1rem;
    border-radius: 0.25rem;
    font-size: 0.875rem;
    transition: background-color 0.3s ease;
}

.site-core-wishlist-btn:hover {
    background-color: #2563EB;
}

.site-core-wishlist-btn[data-in-wishlist="1"] {
    background-color: #10B981;
}

.site-core-wishlist-btn[data-in-wishlist="1"]:hover {
    background-color: #059669;
}