
/* REMOVE LINKS DOS PRODUTOS */
.woocommerce ul.products li.product a.woocommerce-LoopProduct-link{
    pointer-events:none;
}

.woocommerce ul.products li.product .ff-cart-wrap,
.woocommerce ul.products li.product .ff-cart-wrap *{
    pointer-events:auto;
}


/* CARD */
.ff-cart-wrap{
    display:flex;
    flex-direction:column;
    gap:12px;
    margin-top:16px;
    width:100%;
}


/* QUANTIDADE */
.ff-qty{
    display:flex;
    align-items:center;
    justify-content:space-between;
    border:1px solid #e5e5e5;
    border-radius:14px;
    overflow:hidden;
    background:#fff;
    height:48px;
}

.ff-qty button{
    width:52px;
    height:48px;
    border:none;
    background:#fff;
    cursor:pointer;
    font-size:22px;
    color:#ff2d55;
    transition:0.2s;
}

.ff-qty button:hover{
    background:#f8f8f8;
}

.ff-qty input{
    flex:1;
    border:none;
    text-align:center;
    font-size:18px;
    outline:none;
    background:transparent;
}


/* BOTAO */
.ff-add-cart{
    width:100%;
    border:none;
    background:#111;
    color:#fff;
    border-radius:14px;
    height:52px;
    font-size:18px;
    font-weight:700;
    cursor:pointer;
    transition:0.2s;
}

.ff-add-cart:hover{
    transform:translateY(-2px);
    opacity:0.95;
}


/* MOBILE */
@media(max-width:768px){

    .ff-add-cart{
        height:50px;
        font-size:17px;
    }

    .ff-qty{
        height:46px;
    }

}
