/**
 * Single Category Cart - Stiluri notificare
 */

.scc-alert {
    position: fixed;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%) translateY(120px);
    z-index: 99999;
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 320px;
    max-width: 90vw;
    padding: 16px 20px;
    background: #fff;
    border-left: 4px solid #e74c3c;
    border-radius: 6px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.18);
    font-family: inherit;
    font-size: 14px;
    color: #333;
    opacity: 0;
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.3s ease;
    pointer-events: none;
}

.scc-alert--visible {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
    pointer-events: auto;
}

.scc-alert__icon {
    font-size: 20px;
    color: #e74c3c;
    flex-shrink: 0;
    line-height: 1;
}

.scc-alert__text {
    flex: 1;
    line-height: 1.5;
}

.scc-alert__close {
    background: none;
    border: none;
    font-size: 20px;
    line-height: 1;
    cursor: pointer;
    color: #999;
    padding: 0;
    flex-shrink: 0;
    transition: color 0.2s;
}

.scc-alert__close:hover {
    color: #333;
}

@media (max-width: 480px) {
    .scc-alert {
        min-width: 0;
        width: calc(100vw - 32px);
        bottom: 16px;
    }
}
