.listCartEmpty{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;

}

/* ============================================
   Toast notifications
   ============================================ */
.app-toast-container {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 12px;
    pointer-events: none;
    max-width: 380px;
}

.app-toast {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 14px 18px;
    background: #ffffff;
    border-radius: 14px;
    box-shadow: 0 10px 30px rgba(20, 20, 40, 0.12), 0 2px 6px rgba(20, 20, 40, 0.06);
    border-left: 4px solid #c89a6a;
    color: #2b2b2b;
    font-size: 14px;
    line-height: 1.4;
    min-width: 240px;
    transform: translateX(120%);
    opacity: 0;
    transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.25s ease;
    pointer-events: auto;
}

.app-toast.is-visible {
    transform: translateX(0);
    opacity: 1;
}

.app-toast.is-leaving {
    transform: translateX(120%);
    opacity: 0;
}

.app-toast--success { border-left-color: #4caf7d; }
.app-toast--error   { border-left-color: #d9534f; }
.app-toast--info    { border-left-color: #4a90e2; }
.app-toast--favorite{ border-left-color: #e85a8c; }
.app-toast--cart    { border-left-color: #c89a6a; }

.app-toast__icon {
    flex: 0 0 22px;
    width: 22px;
    height: 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 1px;
    color: #c89a6a;
}
.app-toast--success .app-toast__icon { color: #4caf7d; }
.app-toast--error   .app-toast__icon { color: #d9534f; }
.app-toast--info    .app-toast__icon { color: #4a90e2; }
.app-toast--favorite .app-toast__icon { color: #e85a8c; }
.app-toast--cart    .app-toast__icon { color: #c89a6a; }

.app-toast__icon svg {
    width: 100%;
    height: 100%;
    fill: currentColor;
}

.app-toast__body {
    flex: 1 1 auto;
}

.app-toast__title {
    font-weight: 600;
    margin: 0 0 2px;
    color: #1a1a1a;
}

.app-toast__message {
    margin: 0;
    color: #555;
    font-size: 13px;
}

@media (max-width: 480px) {
    .app-toast-container {
        right: 12px;
        left: 12px;
        bottom: 12px;
        max-width: none;
    }
    .app-toast {
        min-width: 0;
    }
}

/* ============================================
   Favorite button — pulse animation only.
   Fill / stroke colors are handled by the existing
   .boxCard__favorites / .sliderCosmetic__favorites
   rules in style.min.css; we only add the bounce.
   ============================================ */
.js-favorite svg {
    transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
    transform-origin: center;
}

.js-favorite.is-pulsing svg {
    animation: favoritePulse 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

@keyframes favoritePulse {
    0%   { transform: scale(1); }
    25%  { transform: scale(0.85); }
    50%  { transform: scale(1.25); }
    75%  { transform: scale(0.95); }
    100% { transform: scale(1); }
}

.js-favorite[disabled] {
    opacity: 0.7;
    cursor: progress;
}

