 /* =========================================================
   AARCSH & CO.
   LUXURY CART PAGE
========================================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: #ffffff;
    color: #111111;
    font-family: "Montserrat", Arial, sans-serif;
}


/* =========================================================
   HEADER
========================================================= */

.cart-header {
    width: 100%;
    min-height: 90px;

    padding: 0 7%;

    display: flex;
    align-items: center;
    justify-content: space-between;

    border-bottom: 1px solid #eeeeee;
}

.logo {
    text-decoration: none;

    color: #b68d40;

    font-family: Georgia, serif;

    font-size: 24px;
    font-weight: 600;

    letter-spacing: 3px;
}

.continue-shopping {
    text-decoration: none;

    color: #111111;

    font-size: 13px;

    letter-spacing: 1px;

    transition: 0.3s ease;
}

.continue-shopping:hover {
    color: #b68d40;
}


/* =========================================================
   CART PAGE
========================================================= */

.cart-page {
    width: 90%;
    max-width: 1200px;

    margin: 65px auto;
}

.cart-page h1 {
    font-family: Georgia, serif;

    font-size: 42px;

    font-weight: 400;

    text-align: center;
}

.cart-subtitle {
    text-align: center;

    color: #777777;

    font-size: 14px;

    margin-top: 12px;
}


/* =========================================================
   CART ITEMS
========================================================= */

.cart-items {
    margin-top: 55px;
}

.cart-item {
    display: flex;

    gap: 30px;

    padding: 25px 0;

    border-bottom: 1px solid #eeeeee;
}

.cart-item-image {
    width: 150px;
    height: 180px;

    object-fit: cover;

    background: #f8f6f2;
}

.cart-item-details {
    flex: 1;

    padding-top: 5px;
}

.cart-item-details h3 {
    font-family: Georgia, serif;

    font-size: 23px;

    font-weight: 400;

    margin-bottom: 10px;
}

.cart-item-details > p {
    font-size: 15px;

    margin-bottom: 18px;
}


/* =========================================================
   QUANTITY
========================================================= */

.quantity-controls {
    display: flex;

    align-items: center;

    width: fit-content;

    border: 1px solid #dddddd;

    margin-bottom: 18px;
}

.quantity-controls button {
    width: 35px;
    height: 35px;

    border: none;

    background: #ffffff;

    font-size: 18px;

    cursor: pointer;
}

.quantity-controls button:hover {
    color: #b68d40;
}

.quantity-controls span {
    width: 40px;

    text-align: center;

    font-size: 14px;
}

.item-total {
    color: #b68d40;

    font-weight: 600;
}


/* =========================================================
   REMOVE
========================================================= */

.remove-btn {
    border: none;

    background: none;

    color: #888888;

    text-decoration: underline;

    cursor: pointer;

    font-size: 12px;

    letter-spacing: 1px;
}

.remove-btn:hover {
    color: #111111;
}


/* =========================================================
   EMPTY CART
========================================================= */

.empty-cart {
    text-align: center;

    padding: 80px 20px;
}

.empty-cart h2 {
    font-family: Georgia, serif;

    font-size: 28px;

    font-weight: 400;

    margin-bottom: 12px;
}

.empty-cart p {
    color: #777777;

    margin-bottom: 30px;
}

.shop-btn {
    display: inline-block;

    text-decoration: none;

    background: #111111;

    color: #ffffff;

    padding: 15px 30px;

    font-size: 12px;

    letter-spacing: 2px;

    transition: 0.3s ease;
}

.shop-btn:hover {
    background: #b68d40;
}


/* =========================================================
   CART SUMMARY
========================================================= */

.cart-summary {
    width: 430px;

    max-width: 100%;

    margin: 50px 0 0 auto;

    border-top: 1px solid #111111;

    padding-top: 25px;
}

.summary-row {
    display: flex;

    justify-content: space-between;

    align-items: center;

    font-size: 17px;
}

.summary-row strong {
    color: #b68d40;

    font-family: Georgia, serif;

    font-size: 21px;
}

.shipping-note {
    color: #888888;

    font-size: 12px;

    margin-top: 12px;

    margin-bottom: 25px;
}

.checkout-btn {
    width: 100%;

    padding: 18px;

    border: none;

    background: #111111;

    color: #ffffff;

    font-size: 12px;

    letter-spacing: 2px;

    cursor: pointer;

    transition: 0.3s ease;
}

.checkout-btn:hover {
    background: #b68d40;
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 700px) {

    .cart-header {
        min-height: 75px;

        padding: 0 5%;
    }

    .logo {
        font-size: 18px;

        letter-spacing: 2px;
    }

    .continue-shopping {
        font-size: 10px;
    }

    .cart-page {
        width: 90%;

        margin: 45px auto;
    }

    .cart-page h1 {
        font-size: 32px;
    }

    .cart-subtitle {
        font-size: 13px;
    }

    .cart-items {
        margin-top: 35px;
    }

    .cart-item {
        gap: 18px;

        padding: 20px 0;
    }

    .cart-item-image {
        width: 105px;
        height: 130px;
    }

    .cart-item-details h3 {
        font-size: 18px;
    }

    .cart-item-details > p {
        font-size: 14px;
    }

    .quantity-controls button {
        width: 30px;
        height: 30px;
    }

    .quantity-controls span {
        width: 32px;
    }

    .cart-summary {
        width: 100%;

        margin-top: 40px;
    }

}