.lora-cart-box{
    width:100%;
}

.lora-add{

    width:100%;
    height:46px;

    border:none;
    border-radius:12px;

    background:#A8B89A;
    color:#fff;

    font-size:16px;
    font-weight:700;

    cursor:pointer;

    transition:.25s;
}

.lora-add:hover{

    transform:translateY(-2px);

}

.lora-qty{

    display:flex;

    justify-content:space-between;

    align-items:center;

    height:46px;

    background:#A8B89A;

    border-radius:12px;

    overflow:hidden;

}

.lora-qty button{

    width:46px;

    height:46px;

    border:none;

    background:transparent;

    color:#fff;

    font-size:24px;

    cursor:pointer;

}

.lora-qty span{

    color:#fff;

    font-size:18px;

    font-weight:bold;

}

.lora-qty button:hover,
.lora-side-qty button:hover{

background:var(--lora-primary-dark);

}

.lora-add:hover{

background:var(--lora-primary-dark);

}