/* =========================================================
   WISHLIST – PRZYCISK + TOAST (wspólne w całym motywie)
   Siatka i stan pusty strony "Ulubione" mają własny, dedykowany
   plik: assets/css/pages/wishlist-page.css
========================================================= */

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

.aurora-wishlist-toggle.is-active { color: var(--aurora-error); }
.aurora-wishlist-toggle:hover { transform: scale(1.1); }
.aurora-wishlist-toggle.loading { opacity: .6; pointer-events: none; }

/* --- TOAST NOTIFICATION --- */
.aurora-toast {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
    padding: 15px 25px;
    background: rgba(255, 255, 255, .95);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .15);
    border: 1px solid rgba(255, 255, 255, .5);
    transform: translateY(100px);
    opacity: 0;
    transition: all .4s cubic-bezier(.175, .885, .32, 1.275);
}

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

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

.aurora-toast.added i { color: var(--aurora-error); }
.aurora-toast.removed i { color: var(--aurora-slate); }

@media (max-width: 768px) {
    .aurora-toast {
        right: 20px;
        left: 20px;
        bottom: 85px;
        text-align: center;
        justify-content: center;
    }
}
