/*=====================================================
CART
=====================================================*/
.cart-page{
    max-width:1200px;
    margin:0 auto;
    padding:70px 40px 100px;
}
.cart-header{
    margin-bottom:80px;
}
.cart-header .section-label{
    display:block;
    margin-bottom:18px;
    letter-spacing:.35em;
    font-size:.82rem;
    color:#A06D3B;
}
.cart-header .section-title{
    margin:0;
    font-family:"Cormorant Garamond",serif;
    font-size:4rem;
    font-weight:400;
    color:#4A3427;
}
.cart-header .section-description{
    margin-top:18px;
    max-width:620px;
    color:#6B5A4D;
    line-height:1.8;
}
/*=====================================================
ITEM
=====================================================*/
.cart-item{
    display:grid;
    grid-template-columns:140px 1fr auto;
    gap:42px;
    align-items:center;
    padding:34px;
    margin-bottom:32px;
    background:#FFFDFB;
    border:1px solid #E9DFD2;
    border-radius:24px;
    box-shadow:
        0 18px 45px rgba(64,44,30,.06);
}
.cart-item-image{
    width:150px;
    border-radius:16px;
    display:block;
}
.cart-item-content{
    display:flex;
    flex-direction:column;
    justify-content:center;
}
.cart-item-content h3{
    margin:0 0 20px;
    font-family:"Cormorant Garamond",serif;
    font-size:3rem;
    font-weight:400;
    line-height:1.05;
    color:#4A3427;
}
.cart-item-content p{
    margin:0;
    font-size:1.6rem;
    font-weight:500;
    color:#A06D3B;
}
.cart-remove{
    align-self:end;
    background:none;
    border:none;
    cursor:pointer;
    color:#8A8177;
    font-size:.95rem;
    transition:.25s;
    padding:0;
}
.cart-remove:hover{
    color:#A06D3B;
}
.cart-empty{
    text-align:center;
    padding:120px 0;
    color:#8A8177;
    font-size:1.15rem;
}
/*=====================================================
  CART SUMMARY
=====================================================*/

.cart-summary{

    margin-top:48px;

    display:flex;

    justify-content:flex-end;

}

.cart-summary-card{

    width:360px;

    padding:36px;

    background:#FFFDFB;

    border:1px solid #E9DFD2;

    border-radius:24px;

    box-shadow:
        0 18px 45px rgba(64,44,30,.06);

}

.cart-summary-label{

    display:block;

    margin-bottom:12px;

    font-size:.82rem;

    letter-spacing:.18em;

    text-transform:uppercase;

    color:#A06D3B;

}

.cart-summary-total{

    margin:0;

    font-family:"Cormorant Garamond",serif;

    font-size:3.8rem;

    font-weight:400;

    color:#4A3427;

    line-height:1;

}

.cart-summary-divider{

    margin:28px 0;

    height:1px;

    background:#E9DFD2;

}

.cart-summary-benefits{

    margin:0;

    padding:0;

    list-style:none;

}

.cart-summary-benefits li{

    margin-bottom:14px;

    color:#6C6258;

    font-size:.95rem;

}

.cart-checkout{

    width:100%;

    margin-top:30px;

}