/* ================================================
FRIALTO CHECKOUT PREMIUM
================================================ */

.fr-checkout-page{
max-width:1300px;
margin:auto;
padding:30px 20px 50px;
}

.fr-checkout-header{
margin-bottom:25px;
}

.fr-checkout-title{
font-size:32px;
font-weight:900;
margin:0;
letter-spacing:-0.02em;
}

.fr-checkout-subtitle{
margin-top:6px;
font-size:14px;
color:#6B7280;
}

.fr-checkout-grid{
display:grid;
grid-template-columns:1.5fr 1fr;
gap:24px;
}

/* CARDS */

.fr-checkout-card{
background:#fff;
border-radius:22px;
padding:22px;
box-shadow:0 20px 50px rgba(0,0,0,.08);
border:1px solid rgba(0,0,0,.04);
}

/* TITULO */

.fr-card-title{
font-size:18px;
font-weight:800;
margin-bottom:16px;
}

/* CAMPOS */

.fr-checkout-card input,
.fr-checkout-card select,
.fr-checkout-card textarea{

border-radius:14px !important;
padding:12px !important;
border:1px solid #ddd !important;

}

/* RESUMO */

.fr-summary-card{
position:sticky;
top:20px;
}

/* PRODUTOS */

.woocommerce-checkout-review-order-table .cart_item{

background:#F9FAFB;
border-radius:16px;
padding:12px;
margin-bottom:10px;

}

/* PREÇO */

.product-total{
font-weight:800;
color:#E4100E;
}

/* TOTAL */

.order-total td{
font-size:20px;
font-weight:900;
}

/* BOTÃO FINAL */

#place_order{

width:100%;
border-radius:999px;
padding:16px;

font-weight:800;
font-size:15px;

background:linear-gradient(90deg,#FF6B00,#E4100E);
color:#fff;

border:none;

box-shadow:0 18px 40px rgba(255,80,80,.45);

}

/* MOBILE */

@media(max-width:900px){

.fr-checkout-grid{
grid-template-columns:1fr;
}

}