#cart-notif {
    position: fixed;
    top: 200px;
    right: 35px;
    max-width: 300px;
    padding: 14px 15px;
    background-color: #85d39d;
    border-radius: 25px;
    text-align: center;
    z-index: 10000;
    display: none;
}

#cart-notif p {
    line-height: 24px;
    margin-bottom: 0;
}

@media (max-width: 768px) {
    #cart-notif {
        top: auto;
        right: 0;
        bottom: 0;
        width: 100%;
        max-width: 100%;
        border-radius: 0;
    }

    #cart-notif p {
        font-size: 14px;
        line-height: 20px;
    }
}
