.cart-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 30px;
}
.cart-table-wrap {
    flex: 2;
    min-width: 600px;
}
.cart-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
}
.cart-table th {
    background-color: pink;
    color: #000;
    padding: 12px;
    font-weight: bold;
}
.cart-table td {
    padding: 15px;
    border-bottom: 1px solid #ddd;
    vertical-align: middle;
}
.cart-product {
    display: flex;
    align-items: center;
    gap: 15px;
}
.cart-product img {
    width: 70px;
    height: 70px;
    object-fit: cover;
    border-radius: 10px;
}
.cart-product-name {
    font-size: 14px;
    font-weight: bold;
    color: #333;
}
.quantity-control {
    display: flex;
    align-items: center;
    border: 1px solid #ccc;
    border-radius: 5px;
    width: fit-content;
    overflow: hidden;
}
.quantity-control button {
    background-color: #eee;
    border: none;
    width: 30px;
    height: 30px;
    cursor: pointer;
    font-weight: bold;
}
.quantity-control button:hover {
    background-color: #ddd;
}
.quantity-control input {
    width: 40px;
    text-align: center;
    border: none;
    border-left: 1px solid #ccc;
    border-right: 1px solid #ccc;
    height: 30px;
}
.delete-btn {
    background: none;
    border: none;
    color: tomato;
    cursor: pointer;
    font-size: 18px;
}
.delete-btn:hover {
    color: red;
}
.cart-summary {
    flex: 1;
    min-width: 300px;
    background-color: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 15px;
    padding: 20px;
    height: fit-content;
}
.summary-title {
    font-size: 18px;
    font-weight: bold;
    border-bottom: 2px solid pink;
    padding-bottom: 10px;
    margin-bottom: 15px;
}
.summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
    font-size: 14px;
}
.summary-total {
    font-size: 18px;
    font-weight: bold;
    color: tomato;
    border-top: 1px dashed #ccc;
    padding-top: 15px;
    margin-top: 15px;
}
.checkout-btn {
    width: 100%;
    background-color: hotpink;
    color: white;
    border: none;
    border-radius: 25px;
    padding: 12px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    margin-top: 20px;
    transition: background-color 0.2s;
}
.checkout-btn:hover {
    background-color: deeppink;
}
.back-to-shop {
    display: inline-block;
    margin-top: 20px;
    color: #333;
    text-decoration: none;
    font-size: 14px;
}
.back-to-shop:hover {
    text-decoration: underline;
    color: hotpink;
}