.zenis-shop-toast {
    position: fixed;
    top: 24px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10060;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    width: min(92vw, 420px);
    pointer-events: none;
}

.zenis-shop-toast__item {
    width: 100%;
    text-align: center;
    background: #fff;
    color: #353535;
    padding: 14px 22px;
    border-radius: 50px;
    border: 1px solid #ecebeb;
    box-shadow: rgba(149, 157, 165, 0.25) 0 8px 24px;
    font-size: 15px;
    line-height: 1.4;
    opacity: 0;
    transform: translateY(-10px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.zenis-shop-toast__item.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.zenis-shop-toast__item--success {
    border-color: rgba(5, 168, 69, 0.25);
}

.zenis-shop-toast__item--error {
    border-color: rgba(220, 53, 69, 0.25);
    color: #dc3545;
}
