.cart-container {
    max-width: 1200px;
    margin: 20px auto;
    padding: 20px;
    background-color: #f3f3f3;
    border-radius: 8px;
}

.cart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    background-color: #fff;
    padding: 10px;
    border-radius: 8px;
}
.cart-header h1{
    font-weight: 300;
}

.cart-header-right {
    display: flex;
    align-items: center;
}

.cart-quantity-select {
    margin-left: 10px;
    padding: 5px;
    border-radius: 4px;
}

.delete-selected {
    background-color: #e7e9ec;
    border: 1px solid #adb1b8;
    color: #111;
    padding: 5px 10px;
    margin-left: 10px;
    cursor: pointer;
    border-radius: 4px;
}


.cart-sections {
    display: grid;
    grid-template-columns: 3fr 1fr;
    gap: 20px;
}

.cart-items,
.cart-summary {
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 20px;
    background-color: #fff;
}


.cart-item-header {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid #ddd;
    border-radius: 4px;
}

.cart-item-header input[type="checkbox"] {
    margin-right: 10px;
}

.cart-item-header p {
    margin-left: auto;
}

.cart-item {
    display: grid;
    grid-template-columns: auto 1fr auto auto;
    align-items: center;
    border-top: 1px solid #ddd;
    padding: 10px 0;
    border-radius: 4px;
}

.cart-item:first-child {
    border-top: none;
}

.cart-item input[type="checkbox"] {
    margin-right: 10px;
}

.cart-item-image {
    max-width: 100px;
    margin-right: 10px;
    border-radius: 4px;
}

.cart-item-details {
    padding-right: 10px;
}

.cart-item-details h3 {
    margin-top: 0;
}

.cart-item-price {
    font-weight: bold;
    margin-left: auto;
}

.remove-item {
    background-color: transparent;
    border: none;
    color: #007185;
    cursor: pointer;
    margin-left: 10px;
    border-radius: 4px;
}


.cart-summary-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
    background-color: #f3f3f3;
    padding: 10px;
    border-radius: 8px;
}
.cart-summary-header h2{
    font-weight: 300;
}

.cart-summary-details {
    margin-top: 20px;
}

.cart-summary-details p {
    display: flex;
    justify-content: space-between;
    margin-bottom: 5px;
    font-weight: 300;
}

.summary-label {
    font-weight: bold;
}

.order-total {
    border-top: 1px solid #ddd;
    padding-top: 10px;
    font-weight: bold;
}

.checkout-btn {
    background-color: #ffd814;
    color: #111;
    border: none;
    padding: 10px 20px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    width: 100%;
    margin-bottom: 10px;
    border-radius: 8px;
}

