.ac-cart-wrapper{
    max-width:1200px;
    margin:0 auto;
    padding:40px 20px;
}


/* CARD */

.ac-cart-card{
    display:grid;
    grid-template-columns:
    140px
    1fr
    240px;

    gap:30px;

    border:1px solid #ddd;
    border-radius:20px;

    padding:30px;
    margin-bottom:25px;

    align-items:center;

    transition:.2s ease;
}

.ac-cart-card:hover{
    transform:translateY(-2px);
}


/* IMAGEM */

.ac-cart-image img{
    width:140px;
    height:140px;

    object-fit:cover;

    border-radius:12px;

    display:block;
}


/* INFORMAÇÕES */

.ac-cart-info 4{
    margin-bottom:12px;

    font-size:clamp(28px,2vw,52px);
    line-height:1.1;
}

.ac-cart-description{
    font-size:15px;
    line-height:1.6;

    opacity:.8;
}


/* LATERAL DIREITA */

.ac-cart-price{
    display:flex;
    flex-direction:column;
    align-items:flex-end;

    gap:15px;
}

.ac-cart-price span{
    font-size:14px;
    text-transform:uppercase;
    letter-spacing:1px;

    opacity:.7;
}

.ac-cart-price strong{
    font-size:56px;
    line-height:1;
}


/* BOTÃO REMOVER */

.ac-remove-btn{
    display:flex;
    align-items:center;
    justify-content:center;

    width:100px;
    height:48px;

    border:1px solid #111;
    border-radius:12px;

    text-decoration:none;

    font-weight:600;

    transition:.2s ease;
}

.ac-remove-btn:hover{
    transform:translateY(-2px);
}


/* ADICIONAR MAIS */

.ac-add-more{
    display:inline-block;

    margin:10px 0 40px;

    color:#ff0000;

    text-decoration:none;

    font-size:18px;
    font-weight:500;
}


/* RESUMO */

.ac-summary-box{
    margin-top:20px;
}

.ac-summary-box 4{
    font-size:56px;
    margin-bottom:40px;
}


/* LINHAS */

.ac-summary-line{
    display:flex;
    justify-content:space-between;
    align-items:center;

    padding:24px 0;

    border-bottom:1px solid #ddd;
}

.ac-summary-line span:last-child{
    font-weight:700;
}


/* TOTAL */

.ac-total-line{
    font-size:32px;
    font-weight:700;
}


/* BOTÃO WHATSAPP */

.ac-whatsapp-btn{
    display:flex;
    justify-content:center;
    align-items:center;

    width:100%;
    min-height:75px;

    margin-top:35px;

    background:#28a745;
    color:#fff;

    text-decoration:none;

    border-radius:16px;

    font-size:24px;
    font-weight:700;

    transition:.2s ease;
}

.ac-whatsapp-btn:hover{
    transform:translateY(-2px);
}


/* TEXTO FINAL */

.ac-cart-note{
    text-align:center;

    margin-top:15px;

    font-size:15px;

    opacity:.75;
}


/* ESCONDER UPDATE */

button[name="update_cart"]{
    display:none !important;
}

.ac-whatsapp-btn{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:14px;

    width:100%;
    min-height:75px;

    margin-top:35px;

    background:#28a745;
    color:#fff;

    text-decoration:none;

    border-radius:16px;

    font-size:24px;
    font-weight:700;

    transition:.2s ease;
}

.ac-whatsapp-btn:hover{
    transform:translateY(-2px);
}

.ac-whatsapp-icon{
    width:34px;
    height:34px;

    flex-shrink:0;
}

@media(max-width:768px){

    .ac-cart-wrapper{
        padding:25px 16px;
    }

    .ac-cart-card{
        grid-template-columns:1fr;

        gap:20px;

        padding:22px;
    }


    /* IMAGEM */

    .ac-cart-image img{
        width:100%;
        height:auto;

        max-height:220px;

        object-fit:cover;
    }


    /* TÍTULO */

    .ac-cart-info 4{
        font-size:42px;
    }


    /* DESCRIÇÃO */

    .ac-cart-description{
        font-size:14px;
    }


    /* ÁREA DIREITA */

    .ac-cart-price{
        align-items:flex-start;

        width:100%;
    }

    .ac-cart-price strong{
        font-size:42px;
    }


    /* BOTÃO */

    .ac-remove-btn{
        width:100%;
    }


    /* TOTAL */

    .ac-summary-box 4{
        font-size:42px;
        margin-bottom:25px;
    }

    .ac-total-line{
        font-size:24px;
    }


    /* WHATSAPP */

    .ac-whatsapp-btn{
        min-height:65px;

        font-size:18px;

        padding:15px 20px;
        text-align:center;
    }

    .ac-whatsapp-icon{
        width:28px;
        height:28px;
    }

}
.ac-cart-info 4{
    word-break:break-word;
}