/* Стили для уведомлений корзины */
.sc-notify {
    position: fixed;
    top: 80px;
    right: 20px;
    z-index: 9999;
    display: none;
    min-width: 280px;
    max-width: 400px;
    background: #10b981;
    color: #fff;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    animation: slideInRight 0.3s ease;
}

.sc-notify-content {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    font-size: 14px;
    font-weight: 500;
}

.sc-notify-content i {
    font-size: 18px;
    flex-shrink: 0;
}

.sc-notify-error {
    background: #dc2626;
}

@keyframes slideInRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@media (max-width: 768px) {
    .sc-notify {
        top: 70px;
        right: 10px;
        left: 10px;
        min-width: auto;
    }
}