.agrosell-cart-toast {
    position: fixed;
    right: 22px;
    bottom: 22px;
    background: #2f8f12;
    color: #ffffff;
    padding: 14px 22px;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.3;
    z-index: 999999;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.22);
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.25s ease, transform 0.25s ease;
    pointer-events: none;
    font-family: Arial, Helvetica, sans-serif;
}

.agrosell-cart-toast.agrosell-cart-toast--show {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 600px) {
    .agrosell-cart-toast {
        left: 14px;
        right: 14px;
        bottom: 14px;
        text-align: center;
        padding: 13px 16px;
        font-size: 15px;
    }
}
