/* Global cart badge + toast (loaded site-wide) */

.artec-cart-link {
    position: relative;
}

.artec-cart-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 18px;
    height: 18px;
    padding: 0 5px;
    margin-left: -4px;
    border-radius: 999px;
    background: #f97316;
    color: #fff;
    font-size: 11px;
    font-style: normal;
    font-weight: 700;
    line-height: 1;
    vertical-align: super;
}

.artec-cart-toast {
    position: fixed;
    right: 20px;
    bottom: 24px;
    z-index: 99999;
    display: flex;
    align-items: center;
    gap: 12px;
    max-width: min(360px, calc(100vw - 32px));
    padding: 14px 16px;
    background: #0f2744;
    color: #fff;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(15, 39, 68, 0.25);
    opacity: 0;
    transform: translateY(12px);
    transition: opacity 0.25s ease, transform 0.25s ease;
    font-size: 14px;
}

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

.artec-cart-toast a {
    color: #fbbf24;
    font-weight: 700;
    white-space: nowrap;
}

.artec-cart-toast--error {
    background: #7f1d1d;
}
