/* File: cart.css */
.cart-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 30px;
    margin-top: 2rem;
}

.cart-items table {
    width: 100%;
    border-collapse: collapse;
}

.cart-items th, .cart-items td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid #eee;
}

.cart-items th {
    background-color: #f8f9fa;
    font-weight: 600;
}

.product-cell {
    display: flex;
    align-items: center;
}

.product-cell img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 8px;
    margin-right: 15px;
}

.remove-btn {
    background: none;
    border: none;
    color: #d70018;
    font-size: 1.2rem;
    cursor: pointer;
}

.cart-summary {
    background-color: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    height: fit-content;
}

.cart-summary h3 {
    margin-top: 0;
    margin-bottom: 20px;
    border-bottom: 1px solid #ddd;
    padding-bottom: 10px;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
}

.total-row {
    font-size: 1.2rem;
    font-weight: bold;
}

.btn-checkout {
    width: 100%;
    padding: 14px;
    font-size: 16px;
    font-weight: bold;
    background-color: #d70018;
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    margin-top: 10px;
}

.empty-cart {
    text-align: center;
    padding: 50px 0;
}

.btn-continue-shopping {
    display: inline-block;
    padding: 12px 24px;
    background-color: #0056b3;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    margin-top: 20px;
}