body{
    font-family: 'Quicksand', sans-serif;
}

.cart-container {
    display: flex;
    width: 80%;
    background: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    margin: 10rem auto 5rem auto;
}

.cart-items {
    flex: 3;
    padding: 20px;
}

.cart-summary {
    flex: 1;
    background-color: #0275d8;
    padding: 20px;
}

.cart-items h1, .cart-summary h1 {
    font-size: 24px;
    margin-bottom: 20px;
}

.cart-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #ddd;
    padding: 15px 0;
}

.cart-item img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border: 1px solid #ddd;
}

.cart-item-details {
    flex: 2;
    margin-left: 15px;
}

.cart-item-details h4 {
    margin: 0 0 5px;
    font-size: 18px;
}

.cart-item-details p {
    margin: 0;
    color: #555;
}

.quantity-controls {
    display: flex;
    align-items: center;
}

.quantity-controls button {
    background: #ddd;
    border: none;
    padding: 5px 10px;
    cursor: pointer;
    font-size: 18px;
}

.quantity-controls input {
    width: 40px;
    background: #ddd;
    text-align: center;
    margin: 0 5px;
    border: none;
    padding: 5px 10px;

}

.cart-item-price {
    flex: 1;
    text-align: right;
    font-size: 18px;
}

.cart-item-remove {
    cursor: pointer;
    color: red;
    font-size: 1.5rem;
    margin-left: 1rem;
}

.back-to-shop-btn {
    display: inline-block;
    margin-top: 20px;
    padding: 10px 20px;
    font-size: 16px;
    color: #333;
    background: none;
    border: none;
    text-decoration: none;
    cursor: pointer;
    transition: background-color 0.3s, color 0.3s;
}

.back-to-shop-btn:hover {
    background-color: #ddd;
    color: #000;
}

.cart-summary{
    color: #fff;
}

.summary {
    margin: 3rem 0;
}

.summary p {
    display: flex;
    justify-content: space-between;
    margin: 1rem 0;
}

.summary .total {
    font-weight: bold;
    font-size: 18px;
}

.checkout-btn {
    display: block;
    width: 100%;
    background: #F26B9C;
    padding: 10px;
    text-align: center;
    border: none;
    cursor: pointer;
    font-size: 16px;
    margin-top: 20px;
    color: #fff;
}

.checkout-btn:hover {
    background-color: #EBFBFA;
}

.back-btn {
    display: inline-block;
    margin-top: 10px;
    text-decoration: none;
    color: #555;
    font-size: 14px;
}