/* Przycisk na karcie produktu */
.ks-wishlist-toggle {
    background: #fff;
    border: none;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    cursor: pointer;
    color: var(--ks-slate);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ks-wishlist-toggle.is-active {
    color: #e74c3c;
}

.ks-wishlist-toggle:hover {
    transform: scale(1.1);
}

/* --- TOAST NOTIFICATION --- */
.ks-toast {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
    padding: 15px 25px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.5);
    transform: translateY(100px);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.ks-toast.is-visible {
    transform: translateY(0);
    opacity: 1;
}

.ks-toast-content {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    font-size: 14px;
}

.ks-toast.added i { color: #e74c3c; }
.ks-toast.removed i { color: #64748b; }
/* --- WISHLIST PAGE --- */
.wishlist-page-wrapper {
    padding: 80px 0;
    min-height: 60vh;
}

.wishlist-header {
    text-align: center;
    margin-bottom: 60px;
}

.wishlist-header .subtitle {
    display: block;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--ks-indigo);
    margin-bottom: 10px;
}

.wishlist-header h1 {
    font-size: 3rem;
    font-family: 'Archivo', sans-serif;
    font-weight: 800;
}

/* Empty State */
.wishlist-empty-state {
    text-align: center;
    max-width: 500px;
    margin: 0 auto;
    padding: 40px 20px;
}

.empty-icon {
    font-size: 4rem;
    color: #f1f5f9;
    margin-bottom: 20px;
}

.wishlist-empty-state h2 {
    font-family: 'DM Sans', sans-serif;
    margin-bottom: 15px;
}

.wishlist-empty-state p {
    color: var(--ks-slate);
    margin-bottom: 30px;
}

/* Responsywność */
@media (max-width: 768px) {
    .wishlist-header h1 { font-size: 2.2rem; }
    .ks-wishlist-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}