.cart-container {
    width: 1200px;
    margin: 30px auto;
}

.cart-title {
    font-size: 24px;
    color: #333;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
}

.cart-table {
    width: 100%;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    margin-bottom: 20px;
}

.cart-header {
    display: grid;
    grid-template-columns: 50px 100px 2fr 1fr 1fr 1fr 100px;
    padding: 15px;
    background-color: #f8f8f8;
    border-radius: 8px 8px 0 0;
}

.cart-header span {
    color: #666;
    text-align: center;
}

.cart-item {
    display: grid;
    grid-template-columns: 50px 100px 2fr 1fr 1fr 1fr 100px;
    padding: 15px;
    align-items: center;
    border-bottom: 1px solid #eee;
}

.cart-item:last-child {
    border-bottom: none;
}

.cart-checkbox {
    text-align: center;
}

.cart-image {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 4px;
}

.cart-product-info {
    padding: 0 15px;
}

.cart-product-title {
    font-size: 16px;
    color: #333;
    margin-bottom: 5px;
}

.cart-product-price {
    color: #e60012;
    font-weight: bold;
    text-align: center;
}

.quantity-control {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.quantity-btn {
    width: 30px;
    height: 30px;
    border: 1px solid #ddd;
    background-color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: all 0.3s;
}

.quantity-btn:hover {
    border-color: #e60012;
    color: #e60012;
}

.quantity-input {
    width: 50px;
    height: 30px;
    border: 1px solid #ddd;
    text-align: center;
    font-size: 14px;
}

.cart-item-total {
    color: #e60012;
    font-weight: bold;
    text-align: center;
}

.cart-item-action {
    text-align: center;
}

.delete-btn {
    color: #999;
    cursor: pointer;
    transition: color 0.3s;
}

.delete-btn:hover {
    color: #e60012;
}

.cart-summary {
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.selected-items {
    color: #666;
}

.selected-items span {
    color: #e60012;
    margin: 0 5px;
}

.total-price {
    font-size: 18px;
    color: #333;
}

.total-price span {
    color: #e60012;
    font-size: 24px;
    font-weight: bold;
    margin-left: 10px;
}

.checkout-btn {
    background-color: #e60012;
    color: #fff;
    padding: 10px 40px;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.checkout-btn:hover {
    background-color: #cc0010;
}

.empty-cart {
    text-align: center;
    padding: 50px 0;
    color: #999;
}

.empty-cart p {
    margin: 20px 0;
}

.continue-shopping {
    color: #e60012;
    text-decoration: none;
}

.continue-shopping:hover {
    text-decoration: underline;
} 