.cart-table-wrapper {
    overflow-x: auto;
    background: #fff;
    padding: 20px;
    border: 1px solid #eee;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.cart-table {
    width: 100%;
    border-collapse: collapse;
}

.cart-table th, .cart-table td {
    padding: 12px 16px;
    border-bottom: 1px solid #eee;
    text-align: center;
}

.cart-product {
    display: flex;
    align-items: center;
    gap: 10px;
    text-align: left;
}

.cart-product img.thumb {
    width: 50px;
    height: 50px;
    object-fit: cover;
    border-radius: 4px;
    border: 1px solid #ccc;
}

.qty-input {
    width: 60px;
    padding: 4px;
    text-align: center;
}

.cart-summary {
    margin-top: 20px;
    text-align: right;
}
